R Dashboard

Convert the Excel file into a dataset table in R and clean data ##Column definitions

## General cleaning

cupid <- read.csv("okcupid_profiles.csv", na.strings = c("", "NA", "NULL")) %>% 
  select( `age`: `speaks`) %>% 
   mutate(user_id= 28000 + row_number(),
         user_id= as.integer(user_id),
         last_online= as.character (last_online))%>% 
  mutate(speaks = str_replace_all(speaks, "\\(.*?\\)", ""),
         income = ifelse(income == -1, NA, income),
         last_online = parse_date_time(last_online, "Y-m-d-H-M", tz="US/Pacific")) %>% 
  select(user_id, everything()) %>% 
  rename(`height_in(inch)`= height) %>% 
   mutate(sex = ifelse(sex == "m", "male", 
                      ifelse(sex == "f", "female", NA))) %>% 
    separate(education, into = c('education', 'c2'), sep=" ") %>% 
  separate(sign, into = c('sign', 'c2'), sep=" ") %>%
  separate(religion, into= c ('religion', 'c2'), sep=" ") %>%
  select(-c2) %>% 
  separate(job, into = c('job', 'industry'), sep= "/") %>% 
  separate(location, into = c('city', 'state'), sep=",") 
## Warning: Expected 2 pieces. Additional pieces discarded in 51949 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, ...].
## Warning: Expected 2 pieces. Missing pieces filled with `NA` in 801 rows [46, 87,
## 138, 144, 148, 150, 200, 302, 490, 541, 585, 593, 609, 656, 662, 724, 728, 752,
## 849, 850, ...].
## Warning: Expected 2 pieces. Additional pieces discarded in 36766 rows [3, 9, 10,
## 12, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 35, 37, 38, ...].
## Warning: Expected 2 pieces. Missing pieces filled with `NA` in 12124 rows [1, 2,
## 4, 5, 6, 7, 8, 11, 13, 15, 21, 31, 33, 34, 39, 42, 46, 48, 51, 52, ...].
## Warning: Expected 2 pieces. Additional pieces discarded in 27939 rows [1, 2, 9,
## 10, 12, 14, 16, 20, 22, 23, 24, 27, 28, 29, 30, 35, 37, 43, 44, 46, ...].
## Warning: Expected 2 pieces. Missing pieces filled with `NA` in 11781 rows [6, 8,
## 13, 15, 19, 21, 25, 31, 32, 33, 41, 42, 45, 53, 55, 58, 59, 61, 77, 81, ...].
## Warning: Expected 2 pieces. Additional pieces discarded in 20653 rows [5, 6, 8,
## 12, 14, 18, 20, 21, 25, 32, 33, 36, 37, 40, 41, 43, 48, 49, 50, 51, ...].
## Warning: Expected 2 pieces. Missing pieces filled with `NA` in 14000 rows [1, 4,
## 10, 15, 22, 28, 30, 31, 38, 45, 57, 59, 62, 63, 68, 70, 76, 78, 98, 105, ...].
## Warning: Expected 2 pieces. Additional pieces discarded in 1 rows [42439].
cupid 
##      user_id age         status    sex orientation      body_type
## 1      28001  22         single   male    straight a little extra
## 2      28002  35         single   male    straight        average
## 3      28003  38      available   male    straight           thin
## 4      28004  23         single   male    straight           thin
## 5      28005  29         single   male    straight       athletic
## 6      28006  29         single   male    straight        average
## 7      28007  32         single female    straight            fit
## 8      28008  31         single female    straight        average
## 9      28009  24         single female    straight           <NA>
## 10     28010  37         single   male    straight       athletic
## 11     28011  35      available   male    straight        average
## 12     28012  28 seeing someone   male    straight        average
## 13     28013  24         single   male    straight           <NA>
## 14     28014  30         single female    straight         skinny
## 15     28015  29         single female    straight           thin
## 16     28016  39         single female    straight            fit
## 17     28017  33         single   male    straight            fit
## 18     28018  26         single female    straight        average
## 19     28019  31         single   male    straight        average
## 20     28020  33         single   male    straight       athletic
## 21     28021  27         single female    straight        average
## 22     28022  22         single female    straight       athletic
## 23     28023  30         single   male    straight            fit
## 24     28024  30         single   male    straight           thin
## 25     28025  33         single   male    straight           thin
## 26     28026  28         single   male    straight            fit
## 27     28027  22         single   male    straight            fit
## 28     28028  22         single   male    straight        average
## 29     28029  30         single   male    straight            fit
## 30     28030  32         single   male    straight            fit
## 31     28031  27         single female    straight        average
## 32     28032  27         single   male    straight       athletic
## 33     28033  38         single female    straight        average
## 34     28034  20         single female    straight        average
## 35     28035  27         single   male    straight           thin
## 36     28036  26         single   male    straight       athletic
## 37     28037  32         single   male    straight       athletic
## 38     28038  25         single   male    bisexual            fit
## 39     28039  27         single female    straight          curvy
## 40     28040  35         single   male    straight            fit
## 41     28041  30         single   male    straight        average
## 42     28042  35         single   male    straight       athletic
## 43     28043  30         single   male    straight        average
## 44     28044  40         single   male    straight            fit
## 45     28045  29         single female    bisexual          curvy
## 46     28046  27         single   male    straight        average
## 47     28047  27         single   male    straight       athletic
## 48     28048  28         single   male    straight        average
## 49     28049  31         single female    bisexual           thin
## 50     28050  26         single female    straight       athletic
## 51     28051  33         single female         gay            fit
## 52     28052  38         single female         gay       athletic
## 53     28053  31         single   male    straight        average
## 54     28054  36         single   male    straight       athletic
## 55     28055  33         single   male    straight            fit
## 56     28056  33         single   male         gay       athletic
## 57     28057  26         single   male    straight            fit
## 58     28058  21         single   male    straight           thin
## 59     28059  22         single   male    straight            fit
## 60     28060  31         single   male    straight        average
## 61     28061  31 seeing someone   male    straight            fit
## 62     28062  35         single   male    straight           thin
## 63     28063  31         single   male    straight           thin
## 64     28064  28         single female    straight          curvy
## 65     28065  28         single   male    straight       athletic
## 66     28066  29         single   male    straight            fit
## 67     28067  22         single   male    straight       athletic
## 68     28068  30         single female    straight           thin
## 69     28069  31         single female    bisexual        average
## 70     28070  29         single   male         gay           thin
## 71     28071  25         single female    straight           <NA>
## 72     28072  33         single female    straight       athletic
## 73     28073  35         single   male    straight       athletic
## 74     28074  31         single female    straight          curvy
## 75     28075  28         single   male    straight            fit
## 76     28076  29      available female    bisexual          curvy
## 77     28077  26         single   male    straight            fit
## 78     28078  25 seeing someone female    bisexual          curvy
## 79     28079  34         single female    straight          curvy
## 80     28080  21         single   male    straight            fit
## 81     28081  28         single female    straight           thin
## 82     28082  31         single   male         gay        average
## 83     28083  34         single   male    straight            fit
## 84     28084  32         single female         gay        average
## 85     28085  30         single   male    straight       athletic
## 86     28086  28         single   male    straight        average
## 87     28087  40         single female    straight            fit
## 88     28088  27         single female    straight a little extra
## 89     28089  43         single   male    straight a little extra
## 90     28090  37         single female    straight        average
## 91     28091  24         single   male    straight        average
## 92     28092  29         single   male    straight           <NA>
## 93     28093  29      available female    straight a little extra
## 94     28094  28         single   male    straight            fit
## 95     28095  29         single   male    straight            fit
## 96     28096  25         single   male    straight       athletic
## 97     28097  34         single   male    straight         skinny
## 98     28098  39         single   male    straight            fit
## 99     28099  31         single female    straight          curvy
## 100    28100  46         single   male    straight        average
## 101    28101  38         single   male    straight           thin
## 102    28102  30         single   male    straight            fit
## 103    28103  41         single   male    straight       athletic
## 104    28104  39         single   male    straight       athletic
## 105    28105  31         single female    straight           thin
## 106    28106  42         single female    straight            fit
## 107    28107  45         single female    straight            fit
## 108    28108  21         single   male    straight       athletic
## 109    28109  28         single female    straight           <NA>
## 110    28110  29         single   male    straight            fit
## 111    28111  36         single   male    straight        average
## 112    28112  28         single   male    straight       athletic
## 113    28113  24         single   male    straight       athletic
## 114    28114  23         single female    straight          curvy
## 115    28115  36 seeing someone   male    straight            fit
## 116    28116  35         single   male    straight           thin
## 117    28117  18         single   male    straight           <NA>
## 118    28118  55         single   male    straight       athletic
## 119    28119  21         single female    straight        average
## 120    28120  28 seeing someone female    straight           thin
## 121    28121  24         single   male    straight        average
## 122    28122  50         single   male    straight            fit
## 123    28123  23         single   male    straight       athletic
## 124    28124  21         single   male    straight           thin
## 125    28125  27         single female    bisexual          curvy
## 126    28126  27         single   male    straight            fit
## 127    28127  43         single   male    straight        average
## 128    28128  27      available   male    straight            fit
## 129    28129  26         single   male    straight        average
## 130    28130  26      available   male    straight        average
## 131    28131  30      available   male    straight           <NA>
## 132    28132  32 seeing someone female    straight          curvy
## 133    28133  43         single female    bisexual          curvy
## 134    28134  39         single female    straight        average
## 135    28135  22         single   male    straight       athletic
## 136    28136  33         single female    straight       athletic
## 137    28137  24         single   male    straight           thin
## 138    28138  50         single   male    straight        average
## 139    28139  32 seeing someone   male    straight        average
## 140    28140  23         single   male    straight       athletic
## 141    28141  32         single female    straight            fit
## 142    28142  59         single   male    straight            fit
## 143    28143  36         single   male    straight            fit
## 144    28144  29         single   male    straight       athletic
## 145    28145  39         single female    straight            fit
## 146    28146  24         single   male    straight         skinny
## 147    28147  28         single   male    straight        average
## 148    28148  50         single   male    straight       athletic
## 149    28149  32         single female    straight            fit
## 150    28150  41         single female    straight            fit
## 151    28151  50         single female    straight         skinny
## 152    28152  44         single   male    straight           <NA>
## 153    28153  48         single   male    straight        average
## 154    28154  24      available   male    bisexual         skinny
## 155    28155  26         single   male    straight            fit
## 156    28156  29         single female         gay           thin
## 157    28157  40         single female    straight   full figured
## 158    28158  29         single female    straight        average
## 159    28159  54         single female    straight   full figured
## 160    28160  20         single female    straight            fit
## 161    28161  51         single female    straight        average
## 162    28162  33         single female    straight        average
## 163    28163  28         single   male    straight           <NA>
## 164    28164  37         single female    straight       athletic
## 165    28165  20         single   male    straight           thin
## 166    28166  30         single   male    straight           <NA>
## 167    28167  36         single   male    straight            fit
## 168    28168  26         single female         gay          curvy
## 169    28169  26         single female    straight            fit
## 170    28170  33         single female    straight           thin
## 171    28171  20 seeing someone female    straight        average
## 172    28172  31         single   male    straight            fit
## 173    28173  62         single   male    straight            fit
## 174    28174  33         single female    straight            fit
## 175    28175  22         single   male    straight a little extra
## 176    28176  46         single   male         gay            fit
## 177    28177  27         single   male    straight       athletic
## 178    28178  29         single   male    straight a little extra
## 179    28179  36         single female    straight        average
## 180    28180  25         single   male    straight a little extra
## 181    28181  32         single   male         gay            fit
## 182    28182  21         single female    straight            fit
## 183    28183  27         single female    straight          curvy
## 184    28184  38      available   male    straight         jacked
## 185    28185  27         single   male    straight        average
## 186    28186  44         single female    straight            fit
## 187    28187  52         single female    straight            fit
## 188    28188  33         single female    straight       athletic
## 189    28189  28         single female    straight       athletic
## 190    28190  37         single   male    straight            fit
## 191    28191  28         single female    straight           thin
## 192    28192  32         single   male    straight        average
## 193    28193  29         single female         gay   full figured
## 194    28194  31         single   male    straight           <NA>
## 195    28195  42         single   male    straight            fit
## 196    28196  32         single female    straight a little extra
## 197    28197  28         single   male    straight       athletic
## 198    28198  38         single female    straight       athletic
## 199    28199  27         single female    straight           <NA>
## 200    28200  19         single female    straight          curvy
## 201    28201  27         single female    bisexual            fit
## 202    28202  28         single   male    straight            fit
## 203    28203  29 seeing someone female    straight            fit
## 204    28204  31         single female    straight            fit
## 205    28205  27         single female    straight           thin
## 206    28206  43         single female    straight          curvy
## 207    28207  43         single   male    straight         skinny
## 208    28208  24         single female         gay            fit
## 209    28209  34         single female    straight            fit
## 210    28210  30 seeing someone female    straight           thin
## 211    28211  59         single female    straight a little extra
## 212    28212  33         single   male    straight        average
## 213    28213  41         single   male    straight        average
## 214    28214  58         single   male    straight           thin
## 215    28215  24         single female    straight           thin
## 216    28216  39         single   male    straight        average
## 217    28217  33         single   male    straight       athletic
## 218    28218  43         single female    straight           thin
## 219    28219  29         single   male    straight        average
## 220    28220  28         single female    straight        average
## 221    28221  21         single   male    straight a little extra
## 222    28222  35         single female    straight            fit
## 223    28223  32         single   male    straight       athletic
## 224    28224  42         single female    straight       athletic
## 225    28225  23         single female    straight a little extra
## 226    28226  30         single female    straight        average
## 227    28227  27         single   male         gay            fit
## 228    28228  41         single female    straight       athletic
## 229    28229  33         single   male    straight a little extra
## 230    28230  58         single female    straight       athletic
## 231    28231  26         single   male    bisexual           <NA>
## 232    28232  50         single female    straight           thin
## 233    28233  45         single female         gay       athletic
## 234    28234  66         single female    straight            fit
## 235    28235  33 seeing someone   male    straight        average
## 236    28236  32         single   male    straight a little extra
## 237    28237  53         single female    bisexual            fit
## 238    28238  28         single   male    straight        average
## 239    28239  22         single female    straight        average
## 240    28240  19         single   male    straight        average
## 241    28241  35         single   male    straight        average
## 242    28242  51         single female    straight rather not say
## 243    28243  30         single   male    straight        average
## 244    28244  29         single   male    straight            fit
## 245    28245  32 seeing someone female    straight            fit
## 246    28246  45         single female    straight   full figured
## 247    28247  28         single   male    straight       athletic
## 248    28248  36         single female    straight        average
## 249    28249  40      available   male    straight a little extra
## 250    28250  34         single female    straight        average
## 251    28251  24         single female    straight   full figured
## 252    28252  39         single   male    straight           thin
## 253    28253  33         single female    straight       athletic
## 254    28254  26         single female    straight          curvy
## 255    28255  36         single   male    straight            fit
## 256    28256  46         single   male    straight            fit
## 257    28257  21         single   male    straight        average
## 258    28258  63         single female    straight           thin
## 259    28259  30         single female    straight        average
## 260    28260  50         single female    straight        average
## 261    28261  50         single female    straight        average
## 262    28262  34      available   male    straight        average
## 263    28263  40         single female    straight        average
## 264    28264  46         single female    straight           thin
## 265    28265  41         single   male    straight       athletic
## 266    28266  29         single female    straight       athletic
## 267    28267  53         single female    straight        average
## 268    28268  39         single   male    straight            fit
## 269    28269  39         single female    straight          curvy
## 270    28270  24         single female    straight           <NA>
## 271    28271  26         single   male    straight       athletic
## 272    28272  25         single female    bisexual           <NA>
## 273    28273  59         single female    straight           thin
## 274    28274  28         single female    straight          curvy
## 275    28275  29         single   male    straight            fit
## 276    28276  35         single   male    straight        average
## 277    28277  25         single female    straight           <NA>
## 278    28278  36         single female    straight       athletic
## 279    28279  42         single female    straight            fit
## 280    28280  25         single female    straight       athletic
## 281    28281  27         single   male    straight       athletic
## 282    28282  45         single female    straight        average
## 283    28283  37         single   male    straight            fit
## 284    28284  47         single   male    straight        average
## 285    28285  24         single female    straight          curvy
## 286    28286  53         single female    straight a little extra
## 287    28287  26         single female         gay           <NA>
## 288    28288  49         single female    straight        average
## 289    28289  24         single female    straight        average
## 290    28290  19         single   male    straight       athletic
## 291    28291  26         single   male    straight          curvy
## 292    28292  30         single   male    straight       athletic
## 293    28293  26         single   male    straight       athletic
## 294    28294  36         single female    straight            fit
## 295    28295  24         single   male    bisexual       athletic
## 296    28296  47         single   male    straight        average
## 297    28297  51         single   male    straight            fit
## 298    28298  28         single   male    straight       athletic
## 299    28299  48      available female    straight        average
## 300    28300  37         single female    straight a little extra
## 301    28301  47         single   male    straight            fit
## 302    28302  34         single female    bisexual          curvy
## 303    28303  37         single female    straight            fit
## 304    28304  25         single   male    straight            fit
## 305    28305  32         single   male    straight       athletic
## 306    28306  42         single female    straight            fit
## 307    28307  33         single female    straight        average
## 308    28308  34         single female    straight            fit
## 309    28309  42         single   male    straight        average
## 310    28310  29         single   male    straight            fit
## 311    28311  55         single   male    straight        average
## 312    28312  32         single   male    straight           <NA>
## 313    28313  25         single   male    straight            fit
## 314    28314  31         single female    straight        average
## 315    28315  45         single   male         gay       athletic
## 316    28316  39         single female    straight           thin
## 317    28317  50      available   male    straight       athletic
## 318    28318  29         single female    straight          curvy
## 319    28319  50         single female    straight        average
## 320    28320  43         single female    straight           thin
## 321    28321  63         single female         gay a little extra
## 322    28322  35         single   male    straight            fit
## 323    28323  19         single female    straight        average
## 324    28324  62         single female    straight           thin
## 325    28325  44         single female    straight            fit
## 326    28326  30         single female    straight            fit
## 327    28327  24         single   male    straight       athletic
## 328    28328  40         single female    straight          curvy
## 329    28329  63         single female    straight        average
## 330    28330  45         single   male    straight       athletic
## 331    28331  53         single female    straight        average
## 332    28332  36         single   male    straight           <NA>
## 333    28333  22         single   male    straight       athletic
## 334    28334  19         single   male    straight       athletic
## 335    28335  32         single female    straight           <NA>
## 336    28336  61         single female    straight        average
## 337    28337  20         single female    straight           <NA>
## 338    28338  34         single female    straight       athletic
## 339    28339  34         single female    straight       athletic
## 340    28340  36         single   male    straight           thin
## 341    28341  29         single   male    straight            fit
## 342    28342  30         single   male    straight       athletic
## 343    28343  40         single   male    straight           <NA>
## 344    28344  28         single female    straight       athletic
## 345    28345  20         single   male    straight        average
## 346    28346  40         single   male    straight         jacked
## 347    28347  43         single female    straight            fit
## 348    28348  19         single   male    bisexual a little extra
## 349    28349  60         single   male    straight       athletic
## 350    28350  66         single   male    straight        average
## 351    28351  39         single   male    straight       athletic
## 352    28352  28         single   male    straight         skinny
## 353    28353  34      available   male    straight            fit
## 354    28354  32         single   male    straight        average
## 355    28355  34         single female    straight          curvy
## 356    28356  29         single female    straight            fit
## 357    28357  26         single   male    straight            fit
## 358    28358  43         single female    straight          curvy
## 359    28359  44         single female    straight        average
## 360    28360  32         single   male    straight       athletic
## 361    28361  37         single female         gay          curvy
## 362    28362  30         single female    straight         skinny
## 363    28363  26         single   male    straight        average
## 364    28364  23         single   male    straight       athletic
## 365    28365  31         single   male    straight       athletic
## 366    28366  34         single   male    straight        average
## 367    28367  48         single   male    straight            fit
## 368    28368  35         single   male    straight         skinny
## 369    28369  25         single   male    straight           <NA>
## 370    28370  27         single female    straight        average
## 371    28371  27         single   male    straight       athletic
## 372    28372  22         single female    straight        average
## 373    28373  35         single   male    straight        average
## 374    28374  26         single   male    straight           <NA>
## 375    28375  32         single   male         gay a little extra
## 376    28376  32         single   male    straight        average
## 377    28377  23         single   male    straight           thin
## 378    28378  40         single female         gay        average
## 379    28379  47         single female    straight       athletic
## 380    28380  31         single   male    straight       athletic
## 381    28381  30         single   male    straight       athletic
## 382    28382  25         single female    straight            fit
## 383    28383  33         single   male    straight           thin
## 384    28384  54         single   male    straight       athletic
## 385    28385  30         single   male    straight       athletic
## 386    28386  45         single   male    straight       athletic
## 387    28387  30      available   male    straight       athletic
## 388    28388  49         single   male         gay       athletic
## 389    28389  32         single   male    straight        average
## 390    28390  24         single female    straight            fit
## 391    28391  57         single   male    straight       athletic
## 392    28392  41         single   male    straight         skinny
## 393    28393  37         single female    straight a little extra
## 394    28394  35         single   male    straight            fit
## 395    28395  40         single female    straight            fit
## 396    28396  50         single female    straight            fit
## 397    28397  40         single   male    straight            fit
## 398    28398  37         single   male    straight            fit
## 399    28399  60         single   male    straight            fit
## 400    28400  47         single   male    straight            fit
## 401    28401  29         single   male    straight       athletic
## 402    28402  29         single   male    straight       athletic
## 403    28403  22         single female    straight         jacked
## 404    28404  44 seeing someone   male         gay           <NA>
## 405    28405  57         single female    straight        average
## 406    28406  43         single female    straight          curvy
## 407    28407  20         single female    straight        average
## 408    28408  29         single   male         gay         skinny
## 409    28409  30         single   male    straight           <NA>
## 410    28410  25         single   male    straight       athletic
## 411    28411  39         single   male    straight            fit
## 412    28412  41         single female    straight           thin
## 413    28413  30         single   male    straight            fit
## 414    28414  23         single   male    straight            fit
## 415    28415  49         single female    straight          curvy
## 416    28416  59         single   male    straight        average
## 417    28417  39         single   male    straight       athletic
## 418    28418  38         single   male    straight            fit
## 419    28419  59         single female    straight            fit
## 420    28420  26         single female    straight           <NA>
## 421    28421  33         single female    straight   full figured
## 422    28422  46         single   male    straight           <NA>
## 423    28423  36         single   male    straight        average
## 424    28424  40      available female    bisexual   full figured
## 425    28425  29         single   male    straight         skinny
## 426    28426  30         single female         gay           thin
## 427    28427  30         single female    straight           <NA>
## 428    28428  33 seeing someone   male    straight a little extra
## 429    28429  29         single   male    straight       athletic
## 430    28430  23         single female    straight           thin
## 431    28431  33         single   male    straight       athletic
## 432    28432  28         single   male    straight            fit
## 433    28433  31         single   male    bisexual        used up
## 434    28434  29         single   male    bisexual a little extra
## 435    28435  44         single female    straight a little extra
## 436    28436  28         single female    straight        average
## 437    28437  47         single   male    straight            fit
## 438    28438  24         single   male    straight            fit
## 439    28439  28         single   male    straight       athletic
## 440    28440  40         single female    straight        average
## 441    28441  24         single   male    straight            fit
## 442    28442  20 seeing someone   male    straight           <NA>
## 443    28443  39         single   male    straight        average
## 444    28444  52         single female    straight            fit
## 445    28445  39         single   male    straight           thin
## 446    28446  33         single   male    straight           thin
## 447    28447  26         single female    straight        average
## 448    28448  31         single   male    straight           <NA>
## 449    28449  27         single   male    straight            fit
## 450    28450  60         single   male    straight            fit
## 451    28451  52         single female    straight           thin
## 452    28452  42         single female    straight a little extra
## 453    28453  31         single female    straight     overweight
## 454    28454  38         single   male    straight       athletic
## 455    28455  26         single   male    straight            fit
## 456    28456  32         single female    straight            fit
## 457    28457  40      available   male    straight            fit
## 458    28458  32         single female    straight            fit
## 459    28459  31         single female    straight            fit
## 460    28460  32         single   male    straight       athletic
## 461    28461  22         single female    straight        average
## 462    28462  37         single   male    straight            fit
## 463    28463  33         single female    straight       athletic
## 464    28464  44         single   male    straight        average
## 465    28465  18         single   male    straight       athletic
## 466    28466  38         single   male         gay        average
## 467    28467  23         single female    straight        average
## 468    28468  33         single female    straight        average
## 469    28469  24 seeing someone female    straight            fit
## 470    28470  32         single female    straight        average
## 471    28471  27         single female    straight           thin
## 472    28472  39         single female    straight            fit
## 473    28473  47         single female    straight            fit
## 474    28474  33         single   male    straight       athletic
## 475    28475  38         single   male         gay       athletic
## 476    28476  42         single female    straight            fit
## 477    28477  42         single   male    straight            fit
## 478    28478  21         single female    straight            fit
## 479    28479  35         single   male    straight            fit
## 480    28480  38         single female    straight            fit
## 481    28481  34         single female    straight           thin
## 482    28482  27         single   male    straight            fit
## 483    28483  29         single   male    straight           thin
## 484    28484  27         single female    bisexual          curvy
## 485    28485  23         single   male    bisexual            fit
## 486    28486  33         single   male    straight a little extra
## 487    28487  25         single   male    straight        average
## 488    28488  31         single female    straight           <NA>
## 489    28489  24         single female    straight        average
## 490    28490  49         single   male    straight        average
## 491    28491  23         single   male    straight     overweight
## 492    28492  23         single female         gay   full figured
## 493    28493  22         single female         gay           <NA>
## 494    28494  48         single   male    straight            fit
## 495    28495  27         single   male    straight            fit
## 496    28496  30 seeing someone   male         gay           <NA>
## 497    28497  59         single   male    straight            fit
## 498    28498  27         single   male    straight        average
## 499    28499  24         single   male    straight            fit
## 500    28500  32         single female    straight           <NA>
## 501    28501  24         single   male    straight            fit
## 502    28502  32         single   male    straight        used up
## 503    28503  30      available   male    straight       athletic
## 504    28504  40         single female    straight          curvy
## 505    28505  18         single   male    straight       athletic
## 506    28506  29         single   male    straight       athletic
## 507    28507  32         single female    straight       athletic
## 508    28508  27         single female    straight           thin
## 509    28509  56         single female    straight          curvy
## 510    28510  35         single   male    straight       athletic
## 511    28511  20         single   male    straight       athletic
## 512    28512  30         single   male         gay            fit
## 513    28513  43         single   male    straight        average
## 514    28514  27         single   male    straight       athletic
## 515    28515  30         single   male    straight        average
## 516    28516  58         single   male    straight           <NA>
## 517    28517  31         single   male    straight       athletic
## 518    28518  34         single   male    straight rather not say
## 519    28519  41         single   male    straight        average
## 520    28520  27         single female    straight        average
## 521    28521  37         single   male    straight        average
## 522    28522  35         single female    straight           thin
## 523    28523  26         single   male    straight            fit
## 524    28524  28         single   male    straight       athletic
## 525    28525  32         single   male    straight        average
## 526    28526  38         single female    straight       athletic
## 527    28527  42         single   male    straight       athletic
## 528    28528  25         single   male    straight            fit
## 529    28529  34         single female    straight        average
## 530    28530  46         single   male    straight            fit
## 531    28531  31         single   male    straight        average
## 532    28532  26         single female    straight          curvy
## 533    28533  37         single   male    straight            fit
## 534    28534  28         single female    straight       athletic
## 535    28535  21         single   male    straight        average
## 536    28536  50         single   male    straight        average
## 537    28537  24         single female    straight        average
## 538    28538  24         single   male         gay           <NA>
## 539    28539  32         single   male    straight        average
## 540    28540  50         single   male    straight            fit
## 541    28541  33         single female    straight         skinny
## 542    28542  38         single   male    straight        average
## 543    28543  49      available   male    straight       athletic
## 544    28544  35         single   male    straight       athletic
## 545    28545  20         single female    straight          curvy
## 546    28546  22         single   male    straight       athletic
## 547    28547  32         single   male    straight          curvy
## 548    28548  25         single   male    straight         skinny
## 549    28549  26         single female    straight a little extra
## 550    28550  23         single   male    straight        average
## 551    28551  43         single   male    straight           thin
## 552    28552  28         single   male    straight       athletic
## 553    28553  44      available   male    bisexual       athletic
## 554    28554  22         single   male         gay           thin
## 555    28555  31         single female    straight            fit
## 556    28556  65         single   male         gay           <NA>
## 557    28557  36         single female    straight          curvy
## 558    28558  35         single female    straight           thin
## 559    28559  40         single female    straight          curvy
## 560    28560  30         single female    straight          curvy
## 561    28561  26         single   male    straight           thin
## 562    28562  23         single   male         gay            fit
## 563    28563  27      available   male    straight           <NA>
## 564    28564  36         single   male    straight        average
## 565    28565  41      available female    bisexual            fit
## 566    28566  45         single   male    straight       athletic
## 567    28567  48         single   male    straight        average
## 568    28568  26         single   male    straight        average
## 569    28569  23         single   male    straight            fit
## 570    28570  28         single female         gay        average
## 571    28571  29         single   male    straight        average
## 572    28572  42         single female    straight           <NA>
## 573    28573  33         single female    straight           thin
## 574    28574  52         single   male    straight a little extra
## 575    28575  25         single   male    straight       athletic
## 576    28576  61         single   male    straight            fit
## 577    28577  28         single   male    straight        average
## 578    28578  35         single   male    straight        average
## 579    28579  34         single   male    straight            fit
## 580    28580  59         single female    straight           thin
## 581    28581  31         single   male    straight       athletic
## 582    28582  19         single   male    straight a little extra
## 583    28583  29         single female    straight       athletic
## 584    28584  55         single female    straight          curvy
## 585    28585  45         single   male    straight        average
## 586    28586  49         single female    straight        average
## 587    28587  21         single   male    straight         skinny
## 588    28588  27         single female    straight          curvy
## 589    28589  24         single female    straight           <NA>
## 590    28590  25         single female    straight         skinny
## 591    28591  44 seeing someone female    straight           thin
## 592    28592  52         single   male    straight       athletic
## 593    28593  30         single female    straight            fit
## 594    28594  58         single female    straight          curvy
## 595    28595  33         single female    straight        average
## 596    28596  44         single female    straight            fit
## 597    28597  31         single female    straight            fit
## 598    28598  38         single female    straight          curvy
## 599    28599  47         single female    straight        average
## 600    28600  29         single   male    straight           thin
## 601    28601  28      available   male    bisexual            fit
## 602    28602  40         single female         gay       athletic
## 603    28603  64         single female    straight        average
## 604    28604  52         single female    straight        average
## 605    28605  37         single   male    straight       athletic
## 606    28606  33         single female    straight          curvy
## 607    28607  58        married   male    straight           thin
## 608    28608  43         single   male    straight       athletic
## 609    28609  27         single   male    straight       athletic
## 610    28610  57         single female    straight a little extra
## 611    28611  64         single female    straight       athletic
## 612    28612  41         single   male    straight   full figured
## 613    28613  35         single   male    straight            fit
## 614    28614  26         single   male    straight        average
## 615    28615  52         single   male         gay a little extra
## 616    28616  45         single female    straight          curvy
## 617    28617  24         single female    straight        average
## 618    28618  26         single   male    straight        average
## 619    28619  25         single   male    straight           <NA>
## 620    28620  35         single   male    straight            fit
## 621    28621  25         single female    straight            fit
## 622    28622  33         single   male    straight       athletic
## 623    28623  41         single   male    straight        average
## 624    28624  26         single female    straight         skinny
## 625    28625  27         single   male    straight a little extra
## 626    28626  25         single female    straight            fit
## 627    28627  39         single female    straight       athletic
## 628    28628  35         single   male    straight       athletic
## 629    28629  30         single female    straight          curvy
## 630    28630  21         single   male    straight       athletic
## 631    28631  48         single female    straight            fit
## 632    28632  25 seeing someone   male    straight a little extra
## 633    28633  27         single   male    bisexual       athletic
## 634    28634  20         single   male    straight        average
## 635    28635  31      available   male    straight           thin
## 636    28636  37         single female    straight   full figured
## 637    28637  55         single female    straight          curvy
## 638    28638  37         single female    straight       athletic
## 639    28639  24         single   male    straight        average
## 640    28640  32         single female    straight        average
## 641    28641  18         single   male    straight        average
## 642    28642  19         single   male    straight            fit
## 643    28643  22         single female    straight            fit
## 644    28644  23         single   male    straight            fit
## 645    28645  36         single female    straight       athletic
## 646    28646  19         single female    straight     overweight
## 647    28647  30         single   male    straight       athletic
## 648    28648  43         single female    straight          curvy
## 649    28649  19         single   male    straight       athletic
## 650    28650  36         single   male    straight       athletic
## 651    28651  32         single   male    straight       athletic
## 652    28652  32         single   male    straight       athletic
## 653    28653  33         single female    straight         skinny
## 654    28654  27         single female         gay         skinny
## 655    28655  30         single female    straight            fit
## 656    28656  26         single   male    straight        average
## 657    28657  34         single   male    straight       athletic
## 658    28658  23         single   male    straight           <NA>
## 659    28659  38      available   male    straight       athletic
## 660    28660  57         single female    straight         skinny
## 661    28661  31         single   male    straight            fit
## 662    28662  41         single   male    straight           thin
## 663    28663  30         single   male         gay            fit
## 664    28664  27         single   male    straight         skinny
## 665    28665  33         single   male         gay           <NA>
## 666    28666  33         single   male    straight       athletic
## 667    28667  38         single female    straight           <NA>
## 668    28668  45         single female         gay            fit
## 669    28669  36         single   male    straight            fit
## 670    28670  32         single   male    straight            fit
## 671    28671  28         single   male    straight        average
## 672    28672  34         single female    bisexual            fit
## 673    28673  30         single female    straight            fit
## 674    28674  34         single   male    straight        average
## 675    28675  61         single   male    straight        average
## 676    28676  31 seeing someone   male    straight        average
## 677    28677  21         single   male    straight       athletic
## 678    28678  38         single female    straight            fit
## 679    28679  24         single   male    straight           <NA>
## 680    28680  31         single female    straight          curvy
## 681    28681  34         single female    straight          curvy
## 682    28682  33 seeing someone female    bisexual        average
## 683    28683  27         single   male    straight       athletic
## 684    28684  31         single   male    straight           <NA>
## 685    28685  45         single   male    straight        average
## 686    28686  33         single   male    straight         jacked
## 687    28687  27         single female    straight            fit
## 688    28688  41         single   male    straight       athletic
## 689    28689  29         single   male    straight       athletic
## 690    28690  25         single   male         gay           thin
## 691    28691  47         single   male         gay            fit
## 692    28692  30         single   male    straight       athletic
## 693    28693  21         single   male    straight a little extra
## 694    28694  29         single   male    straight            fit
## 695    28695  32         single   male    straight        average
## 696    28696  33         single   male    straight           <NA>
## 697    28697  42         single   male    straight        average
## 698    28698  23         single   male    straight           thin
## 699    28699  23         single   male    straight        average
## 700    28700  43        married female    straight   full figured
## 701    28701  23         single female    straight           <NA>
## 702    28702  28         single   male    straight        average
## 703    28703  38         single female         gay          curvy
## 704    28704  26         single female         gay a little extra
## 705    28705  39         single   male         gay           thin
## 706    28706  28         single   male    straight       athletic
## 707    28707  20         single female    straight a little extra
## 708    28708  46         single female    straight            fit
## 709    28709  28         single   male    straight        average
## 710    28710  29         single   male    straight       athletic
## 711    28711  30         single   male    straight       athletic
## 712    28712  36         single   male    straight a little extra
## 713    28713  34         single   male    straight     overweight
## 714    28714  39      available   male    straight        average
## 715    28715  33 seeing someone   male    straight       athletic
## 716    28716  22         single   male    straight            fit
## 717    28717  39 seeing someone   male    straight        average
## 718    28718  40         single   male    straight            fit
## 719    28719  34         single female    straight          curvy
## 720    28720  26         single   male    straight        average
## 721    28721  30         single   male         gay        average
## 722    28722  38         single female    straight            fit
## 723    28723  38         single   male    straight           <NA>
## 724    28724  25         single female    straight         skinny
## 725    28725  36         single   male    straight       athletic
## 726    28726  24         single female         gay            fit
## 727    28727  35         single   male    straight            fit
## 728    28728  27         single   male    straight       athletic
## 729    28729  32         single female    straight            fit
## 730    28730  40         single   male    straight        average
## 731    28731  33         single female    straight           thin
## 732    28732  33         single   male    straight            fit
## 733    28733  32         single   male         gay        average
## 734    28734  34         single   male    straight        average
## 735    28735  24      available   male    straight            fit
## 736    28736  25         single female    bisexual           thin
## 737    28737  31         single   male    straight        average
## 738    28738  35         single   male    straight            fit
## 739    28739  22         single   male    straight       athletic
## 740    28740  23         single female    straight           thin
## 741    28741  23         single female    bisexual   full figured
## 742    28742  36         single   male    bisexual        average
## 743    28743  26         single   male    straight        average
## 744    28744  47         single   male    straight            fit
## 745    28745  39         single female    straight        average
## 746    28746  26         single female    straight       athletic
## 747    28747  34         single female    straight            fit
## 748    28748  24         single female    straight           <NA>
## 749    28749  34         single   male    straight        average
## 750    28750  50         single   male         gay        average
## 751    28751  30         single   male    straight            fit
## 752    28752  28         single   male         gay            fit
## 753    28753  32         single   male    straight        average
## 754    28754  38         single female    straight          curvy
## 755    28755  25         single female    straight         skinny
## 756    28756  24         single   male    straight       athletic
## 757    28757  27 seeing someone   male    straight        average
## 758    28758  32         single   male    straight       athletic
## 759    28759  31         single   male    straight       athletic
## 760    28760  40         single female    straight        average
## 761    28761  30         single female    straight           thin
## 762    28762  29         single   male    straight            fit
## 763    28763  27         single female    straight       athletic
## 764    28764  27         single   male    bisexual        average
## 765    28765  23         single   male    straight        average
## 766    28766  26         single   male    straight a little extra
## 767    28767  40      available   male         gay           thin
## 768    28768  25         single   male         gay a little extra
## 769    28769  37         single   male    straight           <NA>
## 770    28770  35         single female         gay            fit
## 771    28771  31 seeing someone   male    straight         skinny
## 772    28772  28         single female         gay            fit
## 773    28773  23         single   male    straight       athletic
## 774    28774  38         single   male    straight            fit
## 775    28775  23         single   male    straight       athletic
## 776    28776  30         single   male    straight            fit
## 777    28777  22         single   male    straight        average
## 778    28778  27         single   male    straight        average
## 779    28779  25         single   male    straight            fit
## 780    28780  26         single   male    straight        average
## 781    28781  25         single   male    straight       athletic
## 782    28782  35         single female    straight          curvy
## 783    28783  30         single   male    straight        average
## 784    28784  24         single   male    straight       athletic
## 785    28785  43         single female    straight            fit
## 786    28786  26         single female         gay         skinny
## 787    28787  48         single   male    straight           thin
## 788    28788  29         single   male    straight a little extra
## 789    28789  28         single   male    straight       athletic
## 790    28790  36         single female         gay        average
## 791    28791  46         single female    straight           thin
## 792    28792  23         single   male    straight           thin
## 793    28793  25         single   male    straight         skinny
## 794    28794  59         single   male    straight a little extra
## 795    28795  19         single   male    straight           thin
## 796    28796  31         single   male    straight       athletic
## 797    28797  33         single female    straight           thin
## 798    28798  26         single   male    straight        average
## 799    28799  21         single   male    straight       athletic
## 800    28800  38         single   male    straight     overweight
## 801    28801  31         single   male    straight       athletic
## 802    28802  21         single female    straight            fit
## 803    28803  49         single female    straight           <NA>
## 804    28804  19         single   male    straight            fit
## 805    28805  23         single   male    straight        average
## 806    28806  42      available   male    straight            fit
## 807    28807  42         single   male         gay           thin
## 808    28808  46         single   male         gay       athletic
## 809    28809  53         single female    straight            fit
## 810    28810  51         single female    straight            fit
## 811    28811  37         single female    straight            fit
## 812    28812  32 seeing someone   male    straight            fit
## 813    28813  24         single female    straight            fit
## 814    28814  29         single   male    straight a little extra
## 815    28815  25         single   male    straight        average
## 816    28816  25      available female    bisexual        average
## 817    28817  23         single   male    straight         skinny
## 818    28818  35         single   male    straight        average
## 819    28819  45         single   male    straight       athletic
## 820    28820  33         single   male         gay            fit
## 821    28821  26         single   male    straight       athletic
## 822    28822  30         single   male    straight            fit
## 823    28823  34         single female    straight       athletic
## 824    28824  30         single   male    straight           thin
## 825    28825  25      available   male    straight        average
## 826    28826  43         single   male    straight           thin
## 827    28827  20         single   male    straight        average
## 828    28828  27         single   male    straight            fit
## 829    28829  23         single   male    straight a little extra
## 830    28830  27         single   male    straight       athletic
## 831    28831  31         single   male    straight        average
## 832    28832  23         single   male         gay           thin
## 833    28833  28         single   male    straight        average
## 834    28834  27         single   male    straight           <NA>
## 835    28835  26         single female    straight           <NA>
## 836    28836  47         single   male    straight           <NA>
## 837    28837  21         single   male    straight           <NA>
## 838    28838  25         single   male    straight a little extra
## 839    28839  28         single female    straight          curvy
## 840    28840  40         single   male    straight            fit
## 841    28841  22         single   male    straight            fit
## 842    28842  40         single female    straight            fit
## 843    28843  29         single   male    straight            fit
## 844    28844  31         single   male    straight        average
## 845    28845  36         single   male    straight        average
## 846    28846  26         single   male    straight       athletic
## 847    28847  39         single   male    straight            fit
## 848    28848  44         single   male    straight            fit
## 849    28849  48         single female    straight          curvy
## 850    28850  35      available female    straight        average
## 851    28851  28         single female    bisexual a little extra
## 852    28852  30         single female    straight           <NA>
## 853    28853  25         single   male    straight       athletic
## 854    28854  30         single   male    straight       athletic
## 855    28855  27         single female    straight        average
## 856    28856  36         single   male    straight        average
## 857    28857  29         single   male    straight           thin
## 858    28858  39         single   male    straight            fit
## 859    28859  32         single   male         gay           thin
## 860    28860  33         single female    straight            fit
## 861    28861  36 seeing someone female    straight          curvy
## 862    28862  25         single   male    straight           thin
## 863    28863  27         single   male    straight            fit
## 864    28864  29         single   male    straight        average
## 865    28865  30         single   male    straight           thin
## 866    28866  31         single female    straight           <NA>
## 867    28867  26      available   male    straight            fit
## 868    28868  24         single female    straight       athletic
## 869    28869  34         single   male    straight       athletic
## 870    28870  24         single   male    straight        average
## 871    28871  27         single   male    straight       athletic
## 872    28872  22         single   male    straight           <NA>
## 873    28873  29         single female    straight   full figured
## 874    28874  23         single female    straight            fit
## 875    28875  22         single   male    straight       athletic
## 876    28876  21         single female    bisexual         skinny
## 877    28877  25         single   male    straight       athletic
## 878    28878  32         single   male    straight       athletic
## 879    28879  32         single female    straight           thin
## 880    28880  28         single   male    straight         skinny
## 881    28881  30         single   male    straight        average
## 882    28882  26         single   male    straight        average
## 883    28883  21         single female    straight          curvy
## 884    28884  20         single female    straight           thin
## 885    28885  36         single   male    straight            fit
## 886    28886  27         single female    straight       athletic
## 887    28887  27         single   male    straight            fit
## 888    28888  25         single female    straight           <NA>
## 889    28889  44         single   male    straight           <NA>
## 890    28890  40         single female    straight            fit
## 891    28891  21         single   male         gay            fit
## 892    28892  31         single   male    straight       athletic
## 893    28893  33         single   male    straight        used up
## 894    28894  29         single female         gay a little extra
## 895    28895  27 seeing someone female    straight          curvy
## 896    28896  25         single female    straight       athletic
## 897    28897  31         single female    straight            fit
## 898    28898  23         single female    straight        average
## 899    28899  26         single female         gay a little extra
## 900    28900  25         single female    bisexual          curvy
## 901    28901  21         single female    straight          curvy
## 902    28902  22         single female    straight          curvy
## 903    28903  32         single   male    straight            fit
## 904    28904  24         single   male    straight            fit
## 905    28905  27         single   male    straight        average
## 906    28906  38         single female    straight          curvy
## 907    28907  28         single   male    straight        average
## 908    28908  32         single   male    straight        average
## 909    28909  24         single female    straight          curvy
## 910    28910  23         single female    straight            fit
## 911    28911  45         single female    straight        average
## 912    28912  47         single   male    straight       athletic
## 913    28913  35         single   male    bisexual           <NA>
## 914    28914  42         single   male    straight       athletic
## 915    28915  37         single   male    straight        average
## 916    28916  34         single female    straight        average
## 917    28917  26         single   male         gay            fit
## 918    28918  29         single   male    straight           <NA>
## 919    28919  26         single   male    straight            fit
## 920    28920  22         single female         gay        average
## 921    28921  36 seeing someone   male    straight        average
## 922    28922  28         single   male    straight           thin
## 923    28923  28         single   male    straight        average
## 924    28924  41         single   male    bisexual       athletic
## 925    28925  24         single female    straight        average
## 926    28926  24         single female    straight   full figured
## 927    28927  27         single   male    straight            fit
## 928    28928  32         single female    straight            fit
## 929    28929  27         single female    straight            fit
## 930    28930  24         single   male         gay         skinny
## 931    28931  23         single   male    straight        average
## 932    28932  27         single   male    straight        average
## 933    28933  26         single   male    straight           <NA>
## 934    28934  41      available female    straight           <NA>
## 935    28935  34         single   male    bisexual          curvy
## 936    28936  40         single   male    straight        average
## 937    28937  24         single female    straight           thin
## 938    28938  23      available   male    straight        average
## 939    28939  30         single   male    straight        average
## 940    28940  27         single   male    straight           thin
## 941    28941  29         single female    straight        average
## 942    28942  29         single female         gay           thin
## 943    28943  31         single   male         gay           thin
## 944    28944  38        married female    bisexual           <NA>
## 945    28945  28         single   male    straight       athletic
## 946    28946  33         single   male    straight a little extra
## 947    28947  28         single   male    straight       athletic
## 948    28948  35         single female    straight           thin
## 949    28949  25         single female    straight           thin
## 950    28950  31         single   male    straight       athletic
## 951    28951  28         single   male    straight           thin
## 952    28952  30      available   male    straight           <NA>
## 953    28953  26         single female    straight           thin
## 954    28954  23         single female    straight         skinny
## 955    28955  43         single   male    straight            fit
## 956    28956  24         single female    straight           thin
## 957    28957  35         single   male    straight           <NA>
## 958    28958  30         single   male    straight            fit
## 959    28959  23         single female    bisexual           <NA>
## 960    28960  21         single female    straight           <NA>
## 961    28961  40         single female    straight          curvy
## 962    28962  26         single   male    straight           thin
## 963    28963  23         single   male    straight         skinny
## 964    28964  23         single female    straight           thin
## 965    28965  34         single   male    straight       athletic
## 966    28966  33         single female    straight           <NA>
## 967    28967  25         single female    straight        average
## 968    28968  28         single   male    straight       athletic
## 969    28969  34         single female    straight       athletic
## 970    28970  21         single female    bisexual           thin
## 971    28971  23         single female         gay          curvy
## 972    28972  30         single   male         gay        average
## 973    28973  31         single   male    straight           thin
## 974    28974  37         single   male    straight        average
## 975    28975  32 seeing someone   male    straight a little extra
## 976    28976  23         single female    straight       athletic
## 977    28977  28         single   male    straight        average
## 978    28978  24         single female    bisexual        average
## 979    28979  40      available   male    straight            fit
## 980    28980  27         single female    straight           <NA>
## 981    28981  43         single   male    straight       athletic
## 982    28982  27 seeing someone female    bisexual   full figured
## 983    28983  27         single   male         gay            fit
## 984    28984  23         single   male    straight            fit
## 985    28985  30         single female    straight          curvy
## 986    28986  30         single female    straight            fit
## 987    28987  29         single female    straight           thin
## 988    28988  22         single female         gay            fit
## 989    28989  41         single   male    straight            fit
## 990    28990  23         single female    straight        average
## 991    28991  25         single female    straight       athletic
## 992    28992  31         single female    straight          curvy
## 993    28993  22         single female    straight        average
## 994    28994  30         single   male    straight       athletic
## 995    28995  30         single   male    straight       athletic
## 996    28996  26         single   male    straight            fit
## 997    28997  40 seeing someone   male    straight        average
## 998    28998  31         single female    straight           <NA>
## 999    28999  34         single female    straight            fit
## 1000   29000  36         single female    straight            fit
## 1001   29001  34      available female    straight            fit
## 1002   29002  23         single   male    straight       athletic
## 1003   29003  23         single female         gay a little extra
## 1004   29004  45         single   male    straight            fit
## 1005   29005  35         single   male    straight       athletic
## 1006   29006  20         single female    straight         skinny
## 1007   29007  39      available   male    bisexual           <NA>
## 1008   29008  39         single   male    straight            fit
## 1009   29009  35         single female    straight       athletic
## 1010   29010  33         single female    straight            fit
## 1011   29011  35         single   male    straight        average
## 1012   29012  32         single   male    straight        average
## 1013   29013  29         single female    straight          curvy
## 1014   29014  30         single   male    straight       athletic
## 1015   29015  27 seeing someone female    straight         jacked
## 1016   29016  29         single female    straight           <NA>
## 1017   29017  25         single   male    straight        average
## 1018   29018  31         single   male    straight           thin
## 1019   29019  22         single   male    straight        average
## 1020   29020  42 seeing someone   male    straight        average
## 1021   29021  30         single female    straight        average
## 1022   29022  38         single   male    straight            fit
## 1023   29023  39         single   male    straight           thin
## 1024   29024  47         single   male    straight       athletic
## 1025   29025  35         single female    straight        average
## 1026   29026  42      available   male    bisexual        average
## 1027   29027  24         single   male    straight            fit
## 1028   29028  43         single   male    straight        average
## 1029   29029  31         single female    straight            fit
## 1030   29030  26         single   male    straight            fit
## 1031   29031  27         single female         gay       athletic
## 1032   29032  38         single female    straight        average
## 1033   29033  25         single   male    straight           thin
## 1034   29034  47         single   male    straight        average
## 1035   29035  26         single female    straight        used up
## 1036   29036  25         single   male    straight        average
## 1037   29037  29         single   male    straight        average
## 1038   29038  36         single   male    straight        average
## 1039   29039  30         single female         gay          curvy
## 1040   29040  24         single female    straight           <NA>
## 1041   29041  33         single female    straight           <NA>
## 1042   29042  31         single   male    straight            fit
## 1043   29043  34         single   male    straight            fit
## 1044   29044  38         single   male    straight       athletic
## 1045   29045  30         single   male         gay        average
## 1046   29046  35         single female    straight        average
## 1047   29047  37         single female    straight         jacked
## 1048   29048  32         single   male    straight           <NA>
## 1049   29049  28         single   male    straight        average
## 1050   29050  32         single female    straight           thin
## 1051   29051  25         single female    bisexual           <NA>
## 1052   29052  40         single female    straight            fit
## 1053   29053  26         single female    straight       athletic
## 1054   29054  37         single female    straight        average
## 1055   29055  26         single   male    straight       athletic
## 1056   29056  26         single   male    straight       athletic
## 1057   29057  41         single   male    straight            fit
## 1058   29058  26         single female    straight       athletic
## 1059   29059  29         single female         gay a little extra
## 1060   29060  28 seeing someone female         gay           <NA>
## 1061   29061  37         single   male    straight           <NA>
## 1062   29062  33         single female    straight           thin
## 1063   29063  37         single   male    straight       athletic
## 1064   29064  25         single female    straight           <NA>
## 1065   29065  28         single   male    straight        average
## 1066   29066  28         single female    straight           thin
## 1067   29067  33         single   male    straight       athletic
## 1068   29068  25         single female    bisexual           thin
## 1069   29069  26         single female    straight         skinny
## 1070   29070  40         single   male    straight       athletic
## 1071   29071  34 seeing someone   male    straight        average
## 1072   29072  28         single female    straight        average
## 1073   29073  34         single   male    straight       athletic
## 1074   29074  23 seeing someone female    bisexual            fit
## 1075   29075  25         single   male    straight        average
## 1076   29076  30         single female    straight        average
## 1077   29077  35         single   male    straight            fit
## 1078   29078  31         single   male    straight            fit
## 1079   29079  26         single   male    straight        average
## 1080   29080  26         single   male    straight        average
## 1081   29081  23         single   male    straight         skinny
## 1082   29082  25         single female    straight          curvy
## 1083   29083  23         single female    straight           <NA>
## 1084   29084  45         single   male    straight           thin
## 1085   29085  31         single female    straight            fit
## 1086   29086  26         single female    straight        average
## 1087   29087  21         single female    straight            fit
## 1088   29088  37         single   male    straight            fit
## 1089   29089  26         single female         gay           thin
## 1090   29090  45         single   male    straight a little extra
## 1091   29091  27         single   male    straight       athletic
## 1092   29092  27         single female         gay a little extra
## 1093   29093  21         single   male    straight            fit
## 1094   29094  30         single   male    straight        average
## 1095   29095  25         single female    straight          curvy
## 1096   29096  23         single   male    straight            fit
## 1097   29097  22         single   male         gay            fit
## 1098   29098  36         single   male    straight       athletic
## 1099   29099  35         single   male    straight        average
## 1100   29100  26         single   male    straight       athletic
## 1101   29101  47         single   male         gay a little extra
## 1102   29102  32         single   male    straight       athletic
## 1103   29103  35         single female    straight            fit
## 1104   29104  29 seeing someone   male    straight        average
## 1105   29105  26         single   male    straight            fit
## 1106   29106  24         single   male    straight       athletic
## 1107   29107  35         single   male    straight        average
## 1108   29108  24         single   male    straight            fit
## 1109   29109  64         single   male    straight        average
## 1110   29110  23         single female    straight        average
## 1111   29111  27         single female         gay            fit
## 1112   29112  24         single   male    straight     overweight
## 1113   29113  33         single female    bisexual       athletic
## 1114   29114  56         single   male    straight       athletic
## 1115   29115  49         single   male    straight            fit
## 1116   29116  28         single   male    straight        average
## 1117   29117  32         single   male    straight        average
## 1118   29118  38         single female    straight        average
## 1119   29119  31         single female    straight        average
## 1120   29120  28         single   male         gay        average
## 1121   29121  33         single   male    straight           thin
## 1122   29122  41         single female    straight            fit
## 1123   29123  27         single   male         gay         skinny
## 1124   29124  37         single   male    straight            fit
## 1125   29125  30         single   male    straight           <NA>
## 1126   29126  28         single   male    straight            fit
## 1127   29127  35         single   male    straight        average
## 1128   29128  34         single female    straight            fit
## 1129   29129  28         single   male    straight            fit
## 1130   29130  42         single female    straight       athletic
## 1131   29131  28         single   male    straight        average
## 1132   29132  27         single female    straight          curvy
## 1133   29133  43         single   male    straight       athletic
## 1134   29134  24         single female    straight       athletic
## 1135   29135  24         single female         gay            fit
## 1136   29136  30         single female    straight           <NA>
## 1137   29137  40         single   male    straight        average
## 1138   29138  22         single female         gay           thin
## 1139   29139  37         single   male    straight            fit
## 1140   29140  44         single   male    straight        average
## 1141   29141  31         single   male    straight            fit
## 1142   29142  48         single   male    straight a little extra
## 1143   29143  28         single female    straight           thin
## 1144   29144  29         single   male    straight        average
## 1145   29145  38         single   male    straight        average
## 1146   29146  44         single   male    straight        average
## 1147   29147  31         single   male    straight            fit
## 1148   29148  49         single female    straight        average
## 1149   29149  23         single female    bisexual a little extra
## 1150   29150  33         single   male    straight        average
## 1151   29151  27         single female    straight            fit
## 1152   29152  37         single   male    straight            fit
## 1153   29153  28         single   male    straight        average
## 1154   29154  18         single   male    straight        average
## 1155   29155  30         single   male         gay         skinny
## 1156   29156  33         single   male    straight       athletic
## 1157   29157  25         single   male    straight            fit
## 1158   29158  21         single   male    straight        average
## 1159   29159  28         single   male    straight        average
## 1160   29160  31         single   male    straight            fit
## 1161   29161  23         single   male    straight           thin
## 1162   29162  43         single   male    straight            fit
## 1163   29163  37         single female    straight           thin
## 1164   29164  45         single   male    straight       athletic
## 1165   29165  34         single   male    straight       athletic
## 1166   29166  63         single   male    straight        average
## 1167   29167  25         single   male    straight       athletic
## 1168   29168  28         single female    straight            fit
## 1169   29169  29         single female    bisexual           <NA>
## 1170   29170  29         single female    straight            fit
## 1171   29171  25         single   male    straight            fit
## 1172   29172  24         single   male         gay   full figured
## 1173   29173  30         single   male    straight       athletic
## 1174   29174  40         single female    straight           thin
## 1175   29175  36         single female    bisexual          curvy
## 1176   29176  40         single   male    straight           thin
## 1177   29177  25         single female    straight            fit
## 1178   29178  25      available female    bisexual           thin
## 1179   29179  31         single female    straight           thin
## 1180   29180  26         single   male    straight            fit
## 1181   29181  27         single   male    straight       athletic
## 1182   29182  23         single female    straight           <NA>
## 1183   29183  30         single   male    straight            fit
## 1184   29184  25         single female    straight            fit
## 1185   29185  34         single female    straight a little extra
## 1186   29186  30         single female    straight            fit
## 1187   29187  27         single   male    straight       athletic
## 1188   29188  19         single female    straight         skinny
## 1189   29189  23         single female    straight        average
## 1190   29190  30         single female    straight        average
## 1191   29191  27         single   male    straight           <NA>
## 1192   29192  25         single   male    straight       athletic
## 1193   29193  24         single female    straight        average
## 1194   29194  42         single female    straight        average
## 1195   29195  27         single   male    straight           <NA>
## 1196   29196  25         single   male    straight            fit
## 1197   29197  28         single   male         gay       athletic
## 1198   29198  28         single   male         gay            fit
## 1199   29199  25         single   male    straight            fit
## 1200   29200  36         single   male         gay            fit
## 1201   29201  20         single   male    straight        average
## 1202   29202  19         single   male    straight       athletic
## 1203   29203  23         single   male    straight        average
## 1204   29204  36         single   male    straight            fit
## 1205   29205  25         single   male    straight           thin
## 1206   29206  37         single   male    straight           thin
## 1207   29207  37         single   male         gay        average
## 1208   29208  25         single   male    straight            fit
## 1209   29209  37         single   male    straight            fit
## 1210   29210  39         single   male    straight           <NA>
## 1211   29211  42         single   male    straight        average
## 1212   29212  45         single   male    straight        average
## 1213   29213  31         single   male    straight           <NA>
## 1214   29214  24         single   male    straight           thin
## 1215   29215  36         single   male    straight        average
## 1216   29216  29         single   male    straight            fit
## 1217   29217  30         single   male    straight            fit
## 1218   29218  23         single   male         gay        average
## 1219   29219  29         single   male    straight            fit
## 1220   29220  30         single   male    straight a little extra
## 1221   29221  24         single   male    straight         skinny
## 1222   29222  33         single   male    straight        average
## 1223   29223  25         single   male    bisexual        average
## 1224   29224  27         single   male    straight            fit
## 1225   29225  25         single   male    straight       athletic
## 1226   29226  24         single   male    straight       athletic
## 1227   29227  28      available   male    bisexual        average
## 1228   29228  26         single   male    straight        average
## 1229   29229  22         single   male    straight a little extra
## 1230   29230  32         single   male    straight            fit
## 1231   29231  28         single   male    straight           <NA>
## 1232   29232  18         single   male    straight        average
## 1233   29233  40         single   male         gay        average
## 1234   29234  25         single   male         gay        average
## 1235   29235  31         single   male    straight           thin
## 1236   29236  23         single   male    straight       athletic
## 1237   29237  21         single   male    straight        average
## 1238   29238  35         single   male    straight       athletic
## 1239   29239  37         single   male    straight       athletic
## 1240   29240  20         single   male    straight        average
## 1241   29241  20         single   male    straight       athletic
## 1242   29242  24         single   male         gay            fit
## 1243   29243  23         single   male    straight        average
## 1244   29244  23         single   male    straight       athletic
## 1245   29245  37         single   male    straight        average
## 1246   29246  23         single   male    straight            fit
## 1247   29247  18         single   male    straight       athletic
## 1248   29248  25         single   male    straight       athletic
## 1249   29249  25         single   male    straight            fit
## 1250   29250  28         single   male    straight a little extra
## 1251   29251  26         single   male    straight a little extra
## 1252   29252  31         single   male    straight           <NA>
## 1253   29253  33      available   male    straight        average
## 1254   29254  32         single female    straight           <NA>
## 1255   29255  31         single female    straight            fit
## 1256   29256  24         single   male    straight           thin
## 1257   29257  33         single   male    straight       athletic
## 1258   29258  35         single female    straight           thin
## 1259   29259  19         single female    straight   full figured
## 1260   29260  26         single female         gay       athletic
## 1261   29261  31         single   male         gay           <NA>
## 1262   29262  32         single   male    straight           <NA>
## 1263   29263  29         single   male    straight       athletic
## 1264   29264  48        married   male    straight        used up
## 1265   29265  25         single   male    straight           <NA>
## 1266   29266  29         single   male    straight        average
## 1267   29267  35         single female    straight        average
## 1268   29268  28         single   male    straight        average
## 1269   29269  24         single   male    straight       athletic
## 1270   29270  18         single   male    straight       athletic
## 1271   29271  64         single female    straight        average
## 1272   29272  30         single female    bisexual       athletic
## 1273   29273  23         single female    bisexual           <NA>
## 1274   29274  41         single female    straight           <NA>
## 1275   29275  21         single female         gay           thin
## 1276   29276  30         single female    straight        average
## 1277   29277  56         single female    straight        average
## 1278   29278  30         single   male    straight        average
## 1279   29279  33      available female    bisexual        average
## 1280   29280  37         single female    straight            fit
## 1281   29281  26         single female    straight           <NA>
## 1282   29282  24         single   male    straight            fit
## 1283   29283  25         single female    straight       athletic
## 1284   29284  26         single female    straight            fit
## 1285   29285  41         single female    straight           <NA>
## 1286   29286  59         single female    straight           thin
## 1287   29287  32         single female    straight           <NA>
## 1288   29288  29         single   male    straight       athletic
## 1289   29289  35         single   male    straight        average
## 1290   29290  58         single female    straight            fit
## 1291   29291  34         single female    bisexual          curvy
## 1292   29292  29         single   male    straight            fit
## 1293   29293  37         single female    bisexual            fit
## 1294   29294  22         single   male    straight       athletic
## 1295   29295  45         single female    straight       athletic
## 1296   29296  20         single   male    straight           thin
## 1297   29297  33         single   male    straight       athletic
## 1298   29298  42         single   male         gay        average
## 1299   29299  25         single   male    straight            fit
## 1300   29300  22         single   male    straight       athletic
## 1301   29301  30         single   male    straight           thin
## 1302   29302  25         single   male    straight a little extra
## 1303   29303  25         single female    straight         jacked
## 1304   29304  30 seeing someone   male    straight        average
## 1305   29305  25         single female    straight            fit
## 1306   29306  22         single   male    straight       athletic
## 1307   29307  34         single   male    straight       athletic
## 1308   29308  39         single   male    straight       athletic
## 1309   29309  31         single   male    straight            fit
## 1310   29310  46         single   male    straight            fit
## 1311   29311  29        married   male    straight       athletic
## 1312   29312  30         single   male         gay       athletic
## 1313   29313  37 seeing someone   male    straight        average
## 1314   29314  35         single   male    straight            fit
## 1315   29315  32         single   male    straight           thin
## 1316   29316  28         single   male    straight        average
## 1317   29317  31         single   male    straight        average
## 1318   29318  36         single   male    straight          curvy
## 1319   29319  22         single   male         gay        average
## 1320   29320  43         single   male    straight a little extra
## 1321   29321  37         single   male    straight a little extra
## 1322   29322  60         single   male    straight        average
## 1323   29323  25         single   male    straight       athletic
## 1324   29324  37         single female    straight        average
## 1325   29325  40         single female    straight            fit
## 1326   29326  29         single female    straight           thin
## 1327   29327  25         single   male    straight       athletic
## 1328   29328  30         single   male    straight       athletic
## 1329   29329  27         single   male    straight         skinny
## 1330   29330  25         single   male    straight a little extra
## 1331   29331  31         single   male    straight       athletic
## 1332   29332  28         single   male    straight           <NA>
## 1333   29333  26         single   male    straight       athletic
## 1334   29334  24         single female    straight          curvy
## 1335   29335  26         single female    straight           thin
## 1336   29336  30         single   male    straight       athletic
## 1337   29337  29         single   male    straight           <NA>
## 1338   29338  41         single female    straight        average
## 1339   29339  45         single female    straight           <NA>
## 1340   29340  30         single female    straight            fit
## 1341   29341  26         single   male    straight       athletic
## 1342   29342  32         single female    straight        average
## 1343   29343  26         single female    straight           <NA>
## 1344   29344  46         single   male    straight a little extra
## 1345   29345  31         single   male    straight       athletic
## 1346   29346  21         single female    straight        average
## 1347   29347  33         single   male    straight        average
## 1348   29348  51         single   male    straight           <NA>
## 1349   29349  31         single   male    straight            fit
## 1350   29350  26         single female    straight            fit
## 1351   29351  68         single   male    straight           <NA>
## 1352   29352  44         single   male         gay        average
## 1353   29353  38         single female    straight     overweight
## 1354   29354  31         single female    straight            fit
## 1355   29355  29         single female    straight            fit
## 1356   29356  23         single   male    straight           <NA>
## 1357   29357  23         single   male    straight a little extra
## 1358   29358  20         single   male    straight            fit
## 1359   29359  29      available   male         gay            fit
## 1360   29360  24         single   male    straight       athletic
## 1361   29361  27         single   male    bisexual         skinny
## 1362   29362  29         single   male    straight       athletic
## 1363   29363  32         single   male    straight       athletic
## 1364   29364  35         single female    bisexual          curvy
## 1365   29365  23         single   male    straight       athletic
## 1366   29366  26         single   male    straight a little extra
## 1367   29367  21         single   male    straight       athletic
## 1368   29368  32         single female    straight       athletic
## 1369   29369  36         single female    straight            fit
## 1370   29370  37         single   male    straight            fit
## 1371   29371  22 seeing someone female    bisexual   full figured
## 1372   29372  25         single   male    straight       athletic
## 1373   29373  38         single female    straight        average
## 1374   29374  40         single   male    straight        average
## 1375   29375  39         single female         gay        used up
## 1376   29376  23         single female    straight           <NA>
## 1377   29377  25         single   male    straight            fit
## 1378   29378  33         single   male    straight            fit
## 1379   29379  28         single female    straight           <NA>
## 1380   29380  32         single female    straight a little extra
## 1381   29381  26         single   male    straight       athletic
## 1382   29382  37         single   male         gay       athletic
## 1383   29383  28         single   male    straight           <NA>
## 1384   29384  40         single   male    straight        average
## 1385   29385  28 seeing someone female    bisexual           <NA>
## 1386   29386  29         single female    straight       athletic
## 1387   29387  23 seeing someone   male    straight          curvy
## 1388   29388  22         single female    straight          curvy
## 1389   29389  38         single female    straight a little extra
## 1390   29390  65         single female    straight           thin
## 1391   29391  31         single   male    straight            fit
## 1392   29392  30         single female    straight        average
## 1393   29393  41         single female    straight          curvy
## 1394   29394  25         single   male    straight       athletic
## 1395   29395  25         single female    straight       athletic
## 1396   29396  33         single   male    straight            fit
## 1397   29397  26         single female    straight        average
## 1398   29398  22         single   male    straight       athletic
## 1399   29399  42         single   male    straight            fit
## 1400   29400  28         single   male    straight            fit
## 1401   29401  27         single female    straight            fit
## 1402   29402  31         single female    straight            fit
## 1403   29403  45         single   male    straight        average
## 1404   29404  51         single female    straight          curvy
## 1405   29405  30         single   male    straight       athletic
## 1406   29406  28         single   male    straight        average
## 1407   29407  32         single   male    straight a little extra
## 1408   29408  47         single   male    straight a little extra
## 1409   29409  28         single   male    straight            fit
## 1410   29410  27         single female    straight          curvy
## 1411   29411  27         single female    straight       athletic
## 1412   29412  35         single female    straight       athletic
## 1413   29413  23         single female    straight            fit
## 1414   29414  25         single   male    straight       athletic
## 1415   29415  38         single female         gay       athletic
## 1416   29416  32         single   male    straight            fit
## 1417   29417  33         single   male    straight        average
## 1418   29418  57         single female    straight            fit
## 1419   29419  40         single female         gay         skinny
## 1420   29420  25         single   male    straight            fit
## 1421   29421  30         single female    straight            fit
## 1422   29422  26         single   male    bisexual       athletic
## 1423   29423  30 seeing someone female    straight            fit
## 1424   29424  26         single   male    straight            fit
## 1425   29425  27         single   male    straight            fit
## 1426   29426  18         single female    bisexual           thin
## 1427   29427  59         single female         gay        average
## 1428   29428  32         single female    straight          curvy
## 1429   29429  35         single female         gay          curvy
## 1430   29430  38         single   male    straight            fit
## 1431   29431  25         single   male         gay         skinny
## 1432   29432  24         single   male    straight            fit
## 1433   29433  20         single female    straight          curvy
## 1434   29434  26         single   male    straight            fit
## 1435   29435  25         single   male    straight           thin
## 1436   29436  29         single   male    straight           thin
## 1437   29437  47         single   male    straight           thin
## 1438   29438  33         single   male    straight        average
## 1439   29439  29         single   male         gay        average
## 1440   29440  36         single   male    straight       athletic
## 1441   29441  27         single female    straight           <NA>
## 1442   29442  26         single   male         gay            fit
## 1443   29443  26         single   male    straight       athletic
## 1444   29444  27 seeing someone female    straight           <NA>
## 1445   29445  25         single female    straight            fit
## 1446   29446  43         single female         gay           <NA>
## 1447   29447  38         single   male    straight        average
## 1448   29448  27         single female    straight        average
## 1449   29449  37         single   male    straight            fit
## 1450   29450  21         single   male    straight       athletic
## 1451   29451  23         single   male    straight        average
## 1452   29452  38         single   male    straight        used up
## 1453   29453  29         single   male    straight            fit
## 1454   29454  34         single   male    straight       athletic
## 1455   29455  41         single   male         gay   full figured
## 1456   29456  27         single   male    straight       athletic
## 1457   29457  24 seeing someone   male    straight       athletic
## 1458   29458  25         single   male    straight            fit
## 1459   29459  23         single   male    straight        average
## 1460   29460  20         single   male    straight            fit
## 1461   29461  26         single female    straight       athletic
## 1462   29462  24         single   male    straight        average
## 1463   29463  19         single female    straight          curvy
## 1464   29464  63         single female    straight            fit
## 1465   29465  21         single   male    straight       athletic
## 1466   29466  28         single   male         gay            fit
## 1467   29467  28         single female    straight           <NA>
## 1468   29468  25         single   male    straight       athletic
## 1469   29469  33         single female    straight            fit
## 1470   29470  29         single female    straight           <NA>
## 1471   29471  44         single female    straight          curvy
## 1472   29472  49         single   male    straight         skinny
## 1473   29473  27         single female    straight       athletic
## 1474   29474  26         single   male    straight           thin
## 1475   29475  36         single female    straight        average
## 1476   29476  43         single   male    straight           <NA>
## 1477   29477  21         single   male    straight         skinny
## 1478   29478  31         single   male    straight       athletic
## 1479   29479  41         single   male    straight a little extra
## 1480   29480  34         single   male    straight           thin
## 1481   29481  22         single female    straight           thin
## 1482   29482  48         single   male         gay           <NA>
## 1483   29483  29         single female    straight        average
## 1484   29484  23         single   male         gay       athletic
## 1485   29485  25         single   male    straight        average
## 1486   29486  29         single female    straight           <NA>
## 1487   29487  24         single female    straight            fit
## 1488   29488  37         single   male    straight            fit
## 1489   29489  24         single female    straight        average
## 1490   29490  44         single female    straight           thin
## 1491   29491  32      available   male    straight        average
## 1492   29492  40         single female    straight       athletic
## 1493   29493  30         single   male    straight     overweight
## 1494   29494  26 seeing someone female    straight           <NA>
## 1495   29495  32         single   male    straight            fit
## 1496   29496  24         single   male    straight       athletic
## 1497   29497  23         single   male    straight        average
## 1498   29498  27         single   male    straight        average
## 1499   29499  32         single female    straight            fit
## 1500   29500  26         single   male    straight       athletic
## 1501   29501  25         single female    straight       athletic
## 1502   29502  34         single   male    straight       athletic
## 1503   29503  24 seeing someone   male    straight           thin
## 1504   29504  42         single   male    straight       athletic
## 1505   29505  44         single   male    straight       athletic
## 1506   29506  31         single   male    straight            fit
## 1507   29507  48      available   male    straight            fit
## 1508   29508  59         single female    straight            fit
## 1509   29509  43         single female    straight       athletic
## 1510   29510  36         single   male    straight            fit
## 1511   29511  29         single   male    straight            fit
## 1512   29512  33         single   male    straight       athletic
## 1513   29513  29         single female    straight            fit
## 1514   29514  27         single   male    straight            fit
## 1515   29515  64         single   male    straight       athletic
## 1516   29516  25         single   male    straight        average
## 1517   29517  38         single female    straight        average
## 1518   29518  37 seeing someone female    bisexual            fit
## 1519   29519  61         single female    straight            fit
## 1520   29520  24         single   male    straight       athletic
## 1521   29521  26         single   male    straight        average
## 1522   29522  35         single   male    straight        average
## 1523   29523  33        married   male    straight a little extra
## 1524   29524  33         single   male    straight           <NA>
## 1525   29525  27         single female    straight          curvy
## 1526   29526  40         single female    straight        average
## 1527   29527  32         single   male    straight        average
## 1528   29528  27         single   male         gay        average
## 1529   29529  31         single   male    straight            fit
## 1530   29530  29         single   male    straight           <NA>
## 1531   29531  31         single   male    straight           thin
## 1532   29532  34 seeing someone   male    straight       athletic
## 1533   29533  60         single female    straight        average
## 1534   29534  23         single   male    straight            fit
## 1535   29535  32         single   male    straight        average
## 1536   29536  26         single   male    straight        average
## 1537   29537  21         single   male    straight        average
## 1538   29538  32         single   male    straight        average
## 1539   29539  26         single female    straight           <NA>
## 1540   29540  21      available female    straight        average
## 1541   29541  33         single   male    straight        average
## 1542   29542  24         single   male    straight        average
## 1543   29543  31         single   male    straight            fit
## 1544   29544  32         single   male    straight            fit
## 1545   29545  24         single   male    straight            fit
## 1546   29546  23         single   male    straight       athletic
## 1547   29547  28         single   male    straight       athletic
## 1548   29548  25         single   male    straight            fit
## 1549   29549  35      available   male    straight       athletic
## 1550   29550  27         single   male    straight            fit
## 1551   29551  26         single   male    straight       athletic
## 1552   29552  26         single   male    straight       athletic
## 1553   29553  27         single   male    straight       athletic
## 1554   29554  31         single   male    straight       athletic
## 1555   29555  28         single   male    straight       athletic
## 1556   29556  34         single   male    straight           <NA>
## 1557   29557  28         single   male    straight            fit
## 1558   29558  41         single   male    straight       athletic
## 1559   29559  25         single   male    straight           <NA>
## 1560   29560  25         single   male    straight        average
## 1561   29561  23         single   male    straight           thin
## 1562   29562  37         single   male    straight       athletic
## 1563   29563  38         single   male    straight        average
## 1564   29564  27         single   male    bisexual a little extra
## 1565   29565  35         single   male    straight       athletic
## 1566   29566  34         single   male    straight       athletic
## 1567   29567  28         single   male    straight       athletic
## 1568   29568  24         single   male    straight       athletic
## 1569   29569  25         single   male    straight            fit
## 1570   29570  26         single   male    straight        average
## 1571   29571  28         single   male    straight       athletic
## 1572   29572  20         single   male    straight       athletic
## 1573   29573  29         single   male    straight            fit
## 1574   29574  38         single   male    straight       athletic
## 1575   29575  30         single   male         gay            fit
## 1576   29576  24         single   male    straight       athletic
## 1577   29577  25         single   male    straight         skinny
## 1578   29578  24         single   male    straight            fit
## 1579   29579  24         single   male    straight            fit
## 1580   29580  24         single   male    straight       athletic
## 1581   29581  25         single   male         gay         skinny
## 1582   29582  35         single   male    straight        average
## 1583   29583  27         single   male    straight          curvy
## 1584   29584  22         single   male    straight         jacked
## 1585   29585  27         single   male    straight       athletic
## 1586   29586  27         single   male    straight            fit
## 1587   29587  40         single   male    straight a little extra
## 1588   29588  28         single   male    straight       athletic
## 1589   29589  30         single   male         gay            fit
## 1590   29590  33         single   male    straight            fit
## 1591   29591  27         single   male    straight       athletic
## 1592   29592  29         single   male    straight a little extra
## 1593   29593  43      available   male    straight       athletic
## 1594   29594  26         single   male    straight       athletic
## 1595   29595  33         single   male    straight           thin
## 1596   29596  29         single   male    straight           thin
## 1597   29597  26         single   male    straight       athletic
## 1598   29598  29         single   male    straight       athletic
## 1599   29599  25         single   male         gay            fit
## 1600   29600  36         single   male    straight            fit
## 1601   29601  28         single   male    straight       athletic
## 1602   29602  39         single   male    straight       athletic
## 1603   29603  30         single   male    straight        average
## 1604   29604  23         single   male    straight       athletic
## 1605   29605  27         single   male    straight            fit
## 1606   29606  23         single   male    straight        average
## 1607   29607  39         single female    straight       athletic
## 1608   29608  31         single   male    straight           <NA>
## 1609   29609  37         single female    straight          curvy
## 1610   29610  42         single   male    straight a little extra
## 1611   29611  62         single   male    straight       athletic
## 1612   29612  26         single   male    straight        average
## 1613   29613  41         single   male    straight           thin
## 1614   29614  32         single female    straight        average
## 1615   29615  41         single   male    straight       athletic
## 1616   29616  22         single female    straight        average
## 1617   29617  25         single female         gay           thin
## 1618   29618  47 seeing someone   male    straight           <NA>
## 1619   29619  35         single   male    straight            fit
## 1620   29620  36         single   male    straight         skinny
## 1621   29621  33      available   male    straight            fit
## 1622   29622  25         single   male    straight            fit
## 1623   29623  27         single   male    straight            fit
## 1624   29624  28         single   male    straight        average
## 1625   29625  26         single   male    straight            fit
## 1626   29626  24         single   male    straight        average
## 1627   29627  19         single   male    straight           thin
## 1628   29628  21         single female         gay        average
## 1629   29629  32         single   male    straight       athletic
## 1630   29630  25         single female    straight        average
## 1631   29631  27         single   male    straight       athletic
## 1632   29632  38         single   male    straight            fit
## 1633   29633  28         single female    straight   full figured
## 1634   29634  35         single female    straight        average
## 1635   29635  28         single female         gay        average
## 1636   29636  27         single   male    straight       athletic
## 1637   29637  25         single   male    straight a little extra
## 1638   29638  24         single   male    straight         skinny
## 1639   29639  28         single   male    straight       athletic
## 1640   29640  35         single   male    straight        average
## 1641   29641  29         single   male    straight       athletic
## 1642   29642  32         single   male    straight       athletic
## 1643   29643  43         single   male    straight       athletic
## 1644   29644  27         single   male    straight   full figured
## 1645   29645  28         single   male    straight            fit
## 1646   29646  44         single   male    straight       athletic
## 1647   29647  51         single   male    straight         skinny
## 1648   29648  33         single   male    straight       athletic
## 1649   29649  39         single   male    straight        average
## 1650   29650  24         single   male    straight        average
## 1651   29651  29         single   male         gay       athletic
## 1652   29652  37         single   male    straight           <NA>
## 1653   29653  27 seeing someone female    straight           thin
## 1654   29654  25         single female    straight           thin
## 1655   29655  28         single female    bisexual         skinny
## 1656   29656  37         single   male    straight     overweight
## 1657   29657  31         single female    straight          curvy
## 1658   29658  24         single   male         gay           <NA>
## 1659   29659  30         single   male    straight        average
## 1660   29660  42         single female    straight            fit
## 1661   29661  30         single   male    straight        average
## 1662   29662  24         single   male    straight           <NA>
## 1663   29663  33         single   male    straight        average
## 1664   29664  26         single   male    straight        average
## 1665   29665  32         single   male    straight           thin
## 1666   29666  44         single female    straight        average
## 1667   29667  29         single female    straight       athletic
## 1668   29668  27         single   male    straight        average
## 1669   29669  26         single   male    straight        average
## 1670   29670  37         single   male    straight       athletic
## 1671   29671  25         single   male    straight       athletic
## 1672   29672  30         single   male         gay        average
## 1673   29673  28         single   male    straight            fit
## 1674   29674  27         single female    straight           <NA>
## 1675   29675  25         single female    straight        average
## 1676   29676  22         single   male    straight        average
## 1677   29677  26         single   male    straight        average
## 1678   29678  28         single   male    straight            fit
## 1679   29679  48         single   male    straight       athletic
## 1680   29680  36         single   male    straight       athletic
## 1681   29681  26         single   male    straight       athletic
## 1682   29682  28 seeing someone female    straight        average
## 1683   29683  30 seeing someone   male    straight           thin
## 1684   29684  23         single female         gay        average
## 1685   29685  33         single female    straight        average
## 1686   29686  47         single female    straight        average
## 1687   29687  53         single female    straight            fit
## 1688   29688  38         single female    straight           <NA>
## 1689   29689  39         single female    straight        average
## 1690   29690  25         single female    straight        average
## 1691   29691  25         single   male         gay            fit
## 1692   29692  32         single female    straight            fit
## 1693   29693  25         single   male    straight           <NA>
## 1694   29694  28         single   male    straight            fit
## 1695   29695  24         single   male    straight       athletic
## 1696   29696  28         single female    straight        average
## 1697   29697  22         single   male    straight       athletic
## 1698   29698  32         single   male    straight       athletic
## 1699   29699  32         single female    straight            fit
## 1700   29700  25         single female    straight           thin
## 1701   29701  34      available   male         gay        average
## 1702   29702  22         single female    straight       athletic
## 1703   29703  27         single   male    straight            fit
## 1704   29704  22         single   male    straight       athletic
## 1705   29705  29         single   male    straight       athletic
## 1706   29706  39         single   male    straight           <NA>
## 1707   29707  39         single   male    straight   full figured
## 1708   29708  35         single   male    straight        average
## 1709   29709  19         single female    straight        average
## 1710   29710  24         single   male    straight        average
## 1711   29711  26         single   male    straight       athletic
## 1712   29712  25         single female    straight            fit
## 1713   29713  21         single female    straight           thin
## 1714   29714  41         single female    straight           <NA>
## 1715   29715  30         single female    straight          curvy
## 1716   29716  36         single female    straight        average
## 1717   29717  26         single female    straight           thin
## 1718   29718  28         single female         gay        average
## 1719   29719  25         single   male    straight            fit
## 1720   29720  22         single female    straight           <NA>
## 1721   29721  34         single   male         gay       athletic
## 1722   29722  30         single   male    straight       athletic
## 1723   29723  35         single   male    straight        average
## 1724   29724  32         single female    straight            fit
## 1725   29725  21         single female    straight            fit
## 1726   29726  32         single female    straight        average
## 1727   29727  43         single   male    straight       athletic
## 1728   29728  29         single   male    straight   full figured
## 1729   29729  27         single   male    straight       athletic
## 1730   29730  61         single female    straight            fit
## 1731   29731  24         single female    straight            fit
## 1732   29732  39         single   male    straight            fit
## 1733   29733  38         single   male         gay           thin
## 1734   29734  39         single female    straight           thin
## 1735   29735  26         single female    straight          curvy
## 1736   29736  31 seeing someone   male    straight            fit
## 1737   29737  34         single   male    straight            fit
## 1738   29738  30         single   male    straight       athletic
## 1739   29739  26         single   male    straight            fit
## 1740   29740  41         single female    straight           thin
## 1741   29741  57      available   male    straight a little extra
## 1742   29742  58         single   male    straight       athletic
## 1743   29743  34         single   male    straight        average
## 1744   29744  40         single   male    straight            fit
## 1745   29745  33         single   male    straight       athletic
## 1746   29746  25         single female    straight            fit
## 1747   29747  31         single   male    straight       athletic
## 1748   29748  40         single female    straight   full figured
## 1749   29749  31         single   male    straight            fit
## 1750   29750  47         single   male    straight       athletic
## 1751   29751  27         single female    straight       athletic
## 1752   29752  33         single   male         gay           <NA>
## 1753   29753  45         single female    straight       athletic
## 1754   29754  38         single   male    straight       athletic
## 1755   29755  35         single female    straight           <NA>
## 1756   29756  45         single   male    straight       athletic
## 1757   29757  29         single female    straight           thin
## 1758   29758  27         single   male    straight       athletic
## 1759   29759  29         single   male    bisexual        average
## 1760   29760  26         single female    straight       athletic
## 1761   29761  64         single   male    straight a little extra
## 1762   29762  38         single   male    straight        average
## 1763   29763  25         single   male    straight        average
## 1764   29764  31         single   male    straight        average
## 1765   29765  29         single female    straight           <NA>
## 1766   29766  25         single   male    straight       athletic
## 1767   29767  58         single   male    straight            fit
## 1768   29768  31         single female    straight            fit
## 1769   29769  26         single   male    straight            fit
## 1770   29770  27         single female    straight          curvy
## 1771   29771  34         single female    straight        average
## 1772   29772  27         single female    straight          curvy
## 1773   29773  26         single female    straight           <NA>
## 1774   29774  38         single female    straight       athletic
## 1775   29775  33         single   male    straight            fit
## 1776   29776  24         single female    bisexual            fit
## 1777   29777  45         single   male    straight            fit
## 1778   29778  26         single   male    straight        average
## 1779   29779  28         single   male    straight            fit
## 1780   29780  33         single female    straight          curvy
## 1781   29781  27         single female    straight       athletic
## 1782   29782  29         single   male    straight            fit
## 1783   29783  50         single female    straight           thin
## 1784   29784  38         single female    straight        average
## 1785   29785  42         single female    straight        average
## 1786   29786  26         single   male    straight         skinny
## 1787   29787  31         single   male    straight       athletic
## 1788   29788  20         single female         gay           thin
## 1789   29789  29         single   male    straight       athletic
## 1790   29790  39         single   male    straight            fit
## 1791   29791  32         single   male         gay        average
## 1792   29792  27         single female         gay          curvy
## 1793   29793  25         single   male    straight            fit
## 1794   29794  56         single   male    straight       athletic
## 1795   29795  26         single female    straight           thin
## 1796   29796  23         single   male    straight            fit
## 1797   29797  22         single   male    straight        average
## 1798   29798  26         single   male    straight         skinny
## 1799   29799  23         single   male         gay           <NA>
## 1800   29800  30         single   male    straight       athletic
## 1801   29801  26         single female    straight           <NA>
## 1802   29802  22         single   male    straight           thin
## 1803   29803  20         single   male    straight       athletic
## 1804   29804  26         single   male    straight        average
## 1805   29805  21         single   male    straight           <NA>
## 1806   29806  26         single   male    straight            fit
## 1807   29807  36         single   male    straight       athletic
## 1808   29808  39         single female    straight          curvy
## 1809   29809  28         single female    straight            fit
## 1810   29810  27         single female    straight          curvy
## 1811   29811  31         single   male    straight       athletic
## 1812   29812  57         single   male    straight       athletic
## 1813   29813  28         single   male    straight        average
## 1814   29814  41      available   male    straight            fit
## 1815   29815  38      available   male    straight       athletic
## 1816   29816  24         single female         gay           thin
## 1817   29817  44         single   male    straight        average
## 1818   29818  36         single   male    straight       athletic
## 1819   29819  25         single   male    straight            fit
## 1820   29820  29         single female    straight           <NA>
## 1821   29821  37         single female    straight            fit
## 1822   29822  26 seeing someone female    straight        average
## 1823   29823  31         single   male    straight            fit
## 1824   29824  22         single   male    straight        average
## 1825   29825  30         single female    straight           thin
## 1826   29826  39         single   male    straight       athletic
## 1827   29827  27         single   male    straight        average
## 1828   29828  40         single   male    straight        average
## 1829   29829  31         single   male    straight            fit
## 1830   29830  34         single   male    straight            fit
## 1831   29831  29         single female    straight           thin
## 1832   29832  25         single   male    straight       athletic
## 1833   29833  31         single   male    straight        average
## 1834   29834  20         single   male    straight     overweight
## 1835   29835  39         single   male         gay a little extra
## 1836   29836  22         single   male    straight           <NA>
## 1837   29837  32         single female    straight           thin
## 1838   29838  31         single   male    straight       athletic
## 1839   29839  28 seeing someone female    bisexual           <NA>
## 1840   29840  23         single   male    straight            fit
## 1841   29841  28         single   male         gay       athletic
## 1842   29842  34         single   male    straight            fit
## 1843   29843  38         single female    straight          curvy
## 1844   29844  32         single   male    straight       athletic
## 1845   29845  39         single   male         gay            fit
## 1846   29846  27         single   male    straight       athletic
## 1847   29847  43         single   male    straight        average
## 1848   29848  33         single female    bisexual            fit
## 1849   29849  26         single   male    straight            fit
## 1850   29850  28         single   male    straight            fit
## 1851   29851  29         single   male    straight            fit
## 1852   29852  20         single female    bisexual           <NA>
## 1853   29853  29         single   male    straight         jacked
## 1854   29854  31      available female    bisexual          curvy
## 1855   29855  28         single female    straight           <NA>
## 1856   29856  59         single female    straight          curvy
## 1857   29857  37         single   male    straight a little extra
## 1858   29858  26         single female    straight       athletic
## 1859   29859  26         single   male    straight       athletic
## 1860   29860  42         single female    straight            fit
## 1861   29861  23         single   male    straight       athletic
## 1862   29862  27         single female    straight        average
## 1863   29863  31         single   male    straight            fit
## 1864   29864  26         single   male         gay        average
## 1865   29865  25         single   male    straight           <NA>
## 1866   29866  42         single female    straight           <NA>
## 1867   29867  33 seeing someone female    straight            fit
## 1868   29868  21         single   male    straight        average
## 1869   29869  25         single female    straight           <NA>
## 1870   29870  27         single   male    straight       athletic
## 1871   29871  29         single   male         gay a little extra
## 1872   29872  46         single   male    straight            fit
## 1873   29873  41         single   male    straight        average
## 1874   29874  32         single female    straight         skinny
## 1875   29875  35         single   male         gay        average
## 1876   29876  45         single   male    straight           thin
## 1877   29877  30         single   male         gay            fit
## 1878   29878  25         single female    straight            fit
## 1879   29879  35 seeing someone   male    straight            fit
## 1880   29880  22         single female    straight            fit
## 1881   29881  30         single   male    straight           <NA>
## 1882   29882  24         single   male    straight        average
## 1883   29883  25         single   male    straight           <NA>
## 1884   29884  42         single female    straight            fit
## 1885   29885  20         single female    straight        average
## 1886   29886  37         single female    straight            fit
## 1887   29887  57         single female    straight       athletic
## 1888   29888  35         single female    straight           <NA>
## 1889   29889  23         single female    straight        average
## 1890   29890  36         single   male    straight            fit
## 1891   29891  28      available female         gay          curvy
## 1892   29892  32         single   male    straight        average
## 1893   29893  23         single female    straight           <NA>
## 1894   29894  22         single   male         gay         skinny
## 1895   29895  27         single   male    straight            fit
## 1896   29896  34         single female    straight           thin
## 1897   29897  43         single   male    straight            fit
## 1898   29898  30         single   male    straight           <NA>
## 1899   29899  44         single   male    straight           <NA>
## 1900   29900  32         single   male    straight        average
## 1901   29901  64         single   male    straight            fit
## 1902   29902  32         single   male    straight           <NA>
## 1903   29903  33         single   male    straight         skinny
## 1904   29904  22         single female    straight           <NA>
## 1905   29905  29         single female    straight           thin
## 1906   29906  26        married   male    straight        average
## 1907   29907  22         single female    straight           <NA>
## 1908   29908  25         single   male    straight         skinny
## 1909   29909  49         single   male    straight            fit
## 1910   29910  27         single   male    straight            fit
## 1911   29911  24         single   male    straight     overweight
## 1912   29912  37         single female    straight          curvy
## 1913   29913  38         single   male    straight            fit
## 1914   29914  21         single   male    straight            fit
## 1915   29915  36         single female    straight     overweight
## 1916   29916  27         single   male         gay        average
## 1917   29917  29         single   male    straight        average
## 1918   29918  33         single female    straight           thin
## 1919   29919  29         single female    straight          curvy
## 1920   29920  37         single female    straight       athletic
## 1921   29921  59         single female    straight       athletic
## 1922   29922  34         single   male    straight        average
## 1923   29923  26         single   male    straight            fit
## 1924   29924  39         single   male    straight       athletic
## 1925   29925  24         single female    straight           <NA>
## 1926   29926  39         single   male    bisexual           <NA>
## 1927   29927  50         single   male    straight       athletic
## 1928   29928  22         single   male         gay           thin
## 1929   29929  35         single   male    straight       athletic
## 1930   29930  34         single   male    straight        average
## 1931   29931  25         single   male    straight           thin
## 1932   29932  32 seeing someone female    straight           <NA>
## 1933   29933  29         single   male    straight            fit
## 1934   29934  30         single   male    straight        average
## 1935   29935  25         single female    straight            fit
## 1936   29936  34         single   male    straight            fit
## 1937   29937  22         single female    straight        average
## 1938   29938  25         single   male    bisexual        average
## 1939   29939  27         single   male    straight       athletic
## 1940   29940  25         single   male    straight            fit
## 1941   29941  33         single   male    straight       athletic
## 1942   29942  26         single female    straight           thin
## 1943   29943  65      available   male    bisexual        average
## 1944   29944  39         single female         gay        used up
## 1945   29945  68         single   male    straight           <NA>
## 1946   29946  24 seeing someone   male    straight            fit
## 1947   29947  23         single female    straight            fit
## 1948   29948  27         single   male    straight            fit
## 1949   29949  23         single   male    straight        average
## 1950   29950  27         single   male    straight            fit
## 1951   29951  61         single   male         gay        average
## 1952   29952  21         single female         gay        average
## 1953   29953  48         single female    straight            fit
## 1954   29954  40         single   male    straight            fit
## 1955   29955  22         single female    straight            fit
## 1956   29956  42         single female    straight       athletic
## 1957   29957  24         single female    straight          curvy
## 1958   29958  20         single female    straight         skinny
## 1959   29959  24         single female    straight         skinny
## 1960   29960  27         single   male         gay           <NA>
## 1961   29961  60         single female    straight           thin
## 1962   29962  48         single   male    straight        average
## 1963   29963  27         single   male    straight        average
## 1964   29964  31         single female    straight          curvy
## 1965   29965  23         single female    straight           thin
## 1966   29966  40         single female    straight       athletic
## 1967   29967  23         single   male    straight       athletic
## 1968   29968  37      available female    straight          curvy
## 1969   29969  22         single female    straight        average
## 1970   29970  19         single   male         gay           <NA>
## 1971   29971  25         single female    straight            fit
## 1972   29972  30         single female    straight          curvy
## 1973   29973  19         single   male    straight       athletic
## 1974   29974  18         single   male    straight           <NA>
## 1975   29975  37         single female    straight       athletic
## 1976   29976  28         single   male    straight       athletic
## 1977   29977  25         single   male    straight        used up
## 1978   29978  25         single   male         gay           <NA>
## 1979   29979  24         single female    straight           <NA>
## 1980   29980  25         single   male    straight        average
## 1981   29981  32         single female    straight        average
## 1982   29982  29         single   male    straight        average
## 1983   29983  22         single female         gay           <NA>
## 1984   29984  29         single female    straight          curvy
## 1985   29985  28         single   male    straight            fit
## 1986   29986  23         single   male    straight        average
## 1987   29987  30         single female    straight        average
## 1988   29988  24         single   male    straight       athletic
## 1989   29989  25         single female    straight           <NA>
## 1990   29990  42         single female    straight        average
## 1991   29991  19         single   male    straight            fit
## 1992   29992  18         single female    straight        average
## 1993   29993  42         single female    straight           <NA>
## 1994   29994  26         single   male    straight        average
## 1995   29995  26         single   male         gay         skinny
## 1996   29996  23         single female    straight         skinny
## 1997   29997  31         single   male    straight       athletic
## 1998   29998  30      available female         gay            fit
## 1999   29999  23         single female    straight            fit
## 2000   30000  41         single   male    straight            fit
## 2001   30001  56         single   male         gay a little extra
## 2002   30002  25 seeing someone   male    straight        average
## 2003   30003  49         single   male    straight a little extra
## 2004   30004  57         single   male    straight            fit
## 2005   30005  25      available female    bisexual          curvy
## 2006   30006  35         single female         gay           <NA>
## 2007   30007  26         single   male    straight           <NA>
## 2008   30008  23         single   male         gay        average
## 2009   30009  41         single female    straight        average
## 2010   30010  52         single female    straight           <NA>
## 2011   30011  26         single   male    straight       athletic
## 2012   30012  32         single female    straight           <NA>
## 2013   30013  26         single female    straight           <NA>
## 2014   30014  48         single   male         gay a little extra
## 2015   30015  28         single   male    straight           thin
## 2016   30016  22         single female    straight        average
## 2017   30017  24         single   male         gay       athletic
## 2018   30018  28         single female    straight       athletic
## 2019   30019  23         single female    straight            fit
## 2020   30020  28         single female    straight        average
## 2021   30021  19         single female    straight        average
## 2022   30022  29         single female    straight         skinny
## 2023   30023  25         single   male    straight        average
## 2024   30024  25         single   male    straight            fit
## 2025   30025  23         single   male    straight            fit
## 2026   30026  25         single female    straight           thin
## 2027   30027  23         single   male         gay           thin
## 2028   30028  28         single   male    straight       athletic
## 2029   30029  30         single female    straight          curvy
## 2030   30030  28         single female    straight           thin
## 2031   30031  30         single female    straight        average
## 2032   30032  25         single female    straight            fit
## 2033   30033  27         single female    straight       athletic
## 2034   30034  31         single   male    straight        average
## 2035   30035  28         single   male    straight        average
## 2036   30036  29         single   male         gay            fit
## 2037   30037  31         single female    straight   full figured
## 2038   30038  29         single   male         gay           thin
## 2039   30039  45         single female    straight       athletic
## 2040   30040  30         single   male    straight            fit
## 2041   30041  23         single   male    straight           <NA>
## 2042   30042  23         single female    straight        average
## 2043   30043  31         single female    straight           thin
## 2044   30044  37         single female    straight           thin
## 2045   30045  30         single female    straight       athletic
## 2046   30046  39         single female    straight a little extra
## 2047   30047  25         single   male    straight           thin
## 2048   30048  19         single female    straight        average
## 2049   30049  31         single female    straight           thin
## 2050   30050  27         single   male    straight         skinny
## 2051   30051  18         single female    straight           thin
## 2052   30052  45      available   male    straight a little extra
## 2053   30053  30         single female    straight         skinny
## 2054   30054  34         single female    straight            fit
## 2055   30055  29 seeing someone female         gay            fit
## 2056   30056  23         single   male    straight       athletic
## 2057   30057  29         single   male    straight        average
## 2058   30058  26         single female    straight   full figured
## 2059   30059  39         single   male    straight a little extra
## 2060   30060  24         single female    straight           thin
## 2061   30061  29         single   male    straight            fit
## 2062   30062  37         single   male    straight            fit
## 2063   30063  24         single female    straight        average
## 2064   30064  33         single   male    straight            fit
## 2065   30065  43         single female    straight        average
## 2066   30066  24         single   male    straight a little extra
## 2067   30067  26         single   male    straight        average
## 2068   30068  23         single   male         gay        average
## 2069   30069  34         single   male    straight        average
## 2070   30070  43         single female    straight            fit
## 2071   30071  42         single   male         gay a little extra
## 2072   30072  31         single   male    straight            fit
## 2073   30073  24         single   male    straight        average
## 2074   30074  24         single   male    straight            fit
## 2075   30075  35         single female    straight a little extra
## 2076   30076  27         single   male    straight       athletic
## 2077   30077  24         single   male         gay            fit
## 2078   30078  40         single   male    straight            fit
## 2079   30079  23         single   male    straight       athletic
## 2080   30080  51         single   male    straight            fit
## 2081   30081  24         single   male         gay            fit
## 2082   30082  26         single   male    straight            fit
## 2083   30083  31         single   male    straight        average
## 2084   30084  44         single   male    straight        average
## 2085   30085  27         single   male    straight        average
## 2086   30086  33         single   male         gay        average
## 2087   30087  30         single female    straight           thin
## 2088   30088  26         single   male    straight a little extra
## 2089   30089  60         single female    straight        average
## 2090   30090  22         single   male    straight        average
## 2091   30091  24 seeing someone female    bisexual   full figured
## 2092   30092  24         single   male    straight       athletic
## 2093   30093  29         single female    straight          curvy
## 2094   30094  22         single   male    straight        average
## 2095   30095  22        married   male    straight       athletic
## 2096   30096  24         single   male    straight       athletic
## 2097   30097  42         single   male    straight     overweight
## 2098   30098  36         single   male    straight       athletic
## 2099   30099  35         single   male    straight a little extra
## 2100   30100  23         single female    straight           <NA>
## 2101   30101  27         single female         gay        average
## 2102   30102  24         single   male    straight       athletic
## 2103   30103  34         single female    straight        average
## 2104   30104  32         single female    straight           <NA>
## 2105   30105  43         single   male    straight           <NA>
## 2106   30106  24         single   male    straight            fit
## 2107   30107  24         single female    straight           <NA>
## 2108   30108  26         single female    straight        average
## 2109   30109  22         single   male         gay           thin
## 2110   30110  37 seeing someone   male    straight       athletic
## 2111   30111  25         single   male    straight       athletic
## 2112   30112  36      available female    bisexual        average
## 2113   30113  37         single female    straight            fit
## 2114   30114  32         single female    straight            fit
## 2115   30115  31         single   male    straight       athletic
## 2116   30116  22         single   male    straight       athletic
## 2117   30117  35         single   male    straight            fit
## 2118   30118  42         single   male    straight            fit
## 2119   30119  40         single female    straight        average
## 2120   30120  40         single female         gay            fit
## 2121   30121  39        married female    straight          curvy
## 2122   30122  28         single   male    straight        average
## 2123   30123  51         single female    straight           <NA>
## 2124   30124  31         single   male    straight       athletic
## 2125   30125  31         single   male    straight        average
## 2126   30126  43         single female    straight a little extra
## 2127   30127  47         single female    straight            fit
## 2128   30128  30         single   male    straight        average
## 2129   30129  28         single   male    straight            fit
## 2130   30130  22         single   male         gay         skinny
## 2131   30131  37         single   male    straight        average
## 2132   30132  57         single   male    straight        average
## 2133   30133  19         single female    straight           <NA>
## 2134   30134  34         single   male    straight       athletic
## 2135   30135  21         single female    straight          curvy
## 2136   30136  42         single female    straight            fit
## 2137   30137  25         single   male    straight       athletic
## 2138   30138  24         single female    straight           <NA>
## 2139   30139  66         single   male    straight   full figured
## 2140   30140  26         single   male         gay        average
## 2141   30141  30         single female    straight           thin
## 2142   30142  28         single   male    straight           thin
## 2143   30143  45         single female    straight        average
## 2144   30144  32         single female    straight        average
## 2145   30145  30         single   male    straight        average
## 2146   30146  42         single   male    straight        average
## 2147   30147  27         single   male    straight            fit
## 2148   30148  46         single female    straight          curvy
## 2149   30149  26         single   male    straight       athletic
## 2150   30150  40 seeing someone female    straight          curvy
## 2151   30151  32         single female    straight       athletic
## 2152   30152  49      available   male    bisexual            fit
## 2153   30153  28         single   male    straight       athletic
## 2154   30154  25         single   male    straight           <NA>
## 2155   30155  28         single female    straight           <NA>
## 2156   30156  30         single   male    straight            fit
## 2157   30157  27         single   male    straight        average
## 2158   30158  32         single   male    straight        average
## 2159   30159  28         single   male    straight            fit
## 2160   30160  34         single female    straight            fit
## 2161   30161  35         single female    straight        average
## 2162   30162  26 seeing someone female    straight          curvy
## 2163   30163  25         single   male    straight       athletic
## 2164   30164  42         single   male    straight           <NA>
## 2165   30165  28         single female    straight        average
## 2166   30166  25         single   male    straight         skinny
## 2167   30167  29         single   male    straight            fit
## 2168   30168  30         single   male    straight        average
## 2169   30169  37         single   male    straight            fit
## 2170   30170  29         single female    straight           thin
## 2171   30171  28         single female    straight           <NA>
## 2172   30172  51         single female    straight          curvy
## 2173   30173  31         single female    straight           thin
## 2174   30174  43         single   male    straight            fit
## 2175   30175  26         single   male    straight       athletic
## 2176   30176  43         single   male    straight        average
## 2177   30177  33         single   male         gay       athletic
## 2178   30178  42         single female         gay        average
## 2179   30179  24         single   male    straight           thin
## 2180   30180  23         single female    straight        average
## 2181   30181  28         single   male    straight        average
## 2182   30182  38         single female    straight            fit
## 2183   30183  26         single   male    straight           <NA>
## 2184   30184  25         single   male    straight           <NA>
## 2185   30185  38         single female    straight            fit
## 2186   30186  32         single   male    straight       athletic
## 2187   30187  66         single   male    straight           thin
## 2188   30188  25         single   male    straight       athletic
## 2189   30189  38      available   male    straight       athletic
## 2190   30190  39         single   male    straight            fit
## 2191   30191  31         single   male    straight       athletic
## 2192   30192  22         single   male    straight        average
## 2193   30193  34         single   male    straight       athletic
## 2194   30194  31         single female         gay        average
## 2195   30195  35         single female    straight            fit
## 2196   30196  31         single   male    straight        average
## 2197   30197  28      available   male         gay        average
## 2198   30198  42         single   male    straight            fit
## 2199   30199  34         single   male    straight       athletic
## 2200   30200  20         single female    straight           <NA>
## 2201   30201  31         single female    straight          curvy
## 2202   30202  25         single   male    straight       athletic
## 2203   30203  37         single   male         gay        average
## 2204   30204  38         single   male    straight a little extra
## 2205   30205  38         single   male    straight        average
## 2206   30206  52      available   male    straight            fit
## 2207   30207  42         single   male         gay            fit
## 2208   30208  30         single   male    straight       athletic
## 2209   30209  30         single   male    straight        average
## 2210   30210  27         single   male    straight        average
## 2211   30211  30         single   male    straight           <NA>
## 2212   30212  26         single female    bisexual        average
## 2213   30213  30         single female    straight           <NA>
## 2214   30214  46         single   male    straight        average
## 2215   30215  38         single   male    straight           <NA>
## 2216   30216  28         single   male    straight            fit
## 2217   30217  27         single female    straight           thin
## 2218   30218  31         single   male    straight           thin
## 2219   30219  34         single female    straight a little extra
## 2220   30220  22         single   male    straight       athletic
## 2221   30221  31         single female    straight        average
## 2222   30222  27 seeing someone   male    straight            fit
## 2223   30223  32         single   male    straight            fit
## 2224   30224  25         single female    straight        average
## 2225   30225  28         single   male    straight            fit
## 2226   30226  32 seeing someone female         gay       athletic
## 2227   30227  43         single   male    straight        average
## 2228   30228  25         single   male    straight       athletic
## 2229   30229  25         single female         gay        average
## 2230   30230  30         single   male    straight         skinny
## 2231   30231  28         single   male    straight rather not say
## 2232   30232  33         single   male    straight            fit
## 2233   30233  55         single female    straight            fit
## 2234   30234  41         single   male    straight       athletic
## 2235   30235  22         single female    bisexual           thin
## 2236   30236  20         single female    straight            fit
## 2237   30237  20         single   male         gay        used up
## 2238   30238  31         single   male    straight            fit
## 2239   30239  49         single   male    straight            fit
## 2240   30240  32         single   male    straight            fit
## 2241   30241  23         single   male    straight        average
## 2242   30242  26         single   male    straight            fit
## 2243   30243  28         single   male    straight a little extra
## 2244   30244  23         single   male    straight       athletic
## 2245   30245  31         single   male         gay       athletic
## 2246   30246  31         single female    straight           <NA>
## 2247   30247  23         single   male         gay            fit
## 2248   30248  29         single   male    straight            fit
## 2249   30249  28         single female    bisexual a little extra
## 2250   30250  32         single   male    straight a little extra
## 2251   30251  42      available   male    bisexual        average
## 2252   30252  22         single female    bisexual          curvy
## 2253   30253  30         single female    straight        average
## 2254   30254  20         single   male    straight           thin
## 2255   30255  30         single   male    straight       athletic
## 2256   30256  27         single female    straight       athletic
## 2257   30257  36         single female         gay   full figured
## 2258   30258  29         single   male    straight            fit
## 2259   30259  25         single   male         gay            fit
## 2260   30260  32         single   male    straight            fit
## 2261   30261  24         single   male    straight       athletic
## 2262   30262  53 seeing someone   male    straight            fit
## 2263   30263  35         single   male    straight            fit
## 2264   30264  48         single   male    straight         jacked
## 2265   30265  45         single   male         gay a little extra
## 2266   30266  29         single   male    straight            fit
## 2267   30267  26         single   male         gay           thin
## 2268   30268  35         single   male    straight            fit
## 2269   30269  35         single   male    straight        average
## 2270   30270  24         single   male    straight       athletic
## 2271   30271  24         single   male    straight       athletic
## 2272   30272  25      available female    bisexual          curvy
## 2273   30273  31         single   male    straight            fit
## 2274   30274  30         single   male    straight       athletic
## 2275   30275  33         single   male    straight       athletic
## 2276   30276  23         single   male    straight            fit
## 2277   30277  52         single   male    straight            fit
## 2278   30278  35         single   male    straight            fit
## 2279   30279  35 seeing someone   male         gay        average
## 2280   30280  36         single female    straight   full figured
## 2281   30281  23         single female    straight           thin
## 2282   30282  25         single female    straight   full figured
## 2283   30283  34         single female    straight       athletic
## 2284   30284  30         single   male    straight           <NA>
## 2285   30285  31         single   male         gay        average
## 2286   30286  35         single   male    straight            fit
## 2287   30287  43         single female    straight        average
## 2288   30288  27         single female    straight          curvy
## 2289   30289  35         single   male    straight            fit
## 2290   30290  18         single female    straight        average
## 2291   30291  21         single   male    straight       athletic
## 2292   30292  25         single   male    straight       athletic
## 2293   30293  22         single female    straight       athletic
## 2294   30294  28      available   male    straight           <NA>
## 2295   30295  49         single   male    straight            fit
## 2296   30296  26         single female    straight       athletic
## 2297   30297  36         single   male         gay   full figured
## 2298   30298  18         single female    straight            fit
## 2299   30299  38         single   male    straight            fit
## 2300   30300  29         single   male         gay           thin
## 2301   30301  37         single   male    straight        average
## 2302   30302  31         single   male    straight            fit
## 2303   30303  22         single female    straight        average
## 2304   30304  21         single   male    straight       athletic
## 2305   30305  18         single   male    straight           <NA>
## 2306   30306  30         single   male    straight            fit
## 2307   30307  30         single   male    straight        average
## 2308   30308  27         single   male    straight           thin
## 2309   30309  19         single female    straight          curvy
## 2310   30310  34         single   male    straight            fit
## 2311   30311  30         single   male    straight       athletic
## 2312   30312  25         single   male         gay            fit
## 2313   30313  24         single   male         gay        average
## 2314   30314  26         single   male         gay        average
## 2315   30315  21         single   male    straight        average
## 2316   30316  24         single female    bisexual          curvy
## 2317   30317  45         single   male    straight            fit
## 2318   30318  36         single female         gay           thin
## 2319   30319  35         single female         gay a little extra
## 2320   30320  27         single female    straight       athletic
## 2321   30321  28         single   male    straight            fit
## 2322   30322  30         single female    straight          curvy
## 2323   30323  34         single   male    straight        average
## 2324   30324  39        married   male    bisexual            fit
## 2325   30325  59         single female         gay           thin
## 2326   30326  48         single female    straight        average
## 2327   30327  29         single female    straight           thin
## 2328   30328  39         single   male         gay           <NA>
## 2329   30329  41         single female    straight          curvy
## 2330   30330  23      available female    bisexual          curvy
## 2331   30331  30         single   male         gay           thin
## 2332   30332  22         single   male    straight       athletic
## 2333   30333  39         single   male    straight          curvy
## 2334   30334  41         single   male    straight        average
## 2335   30335  35         single   male    straight        average
## 2336   30336  25         single   male    straight       athletic
## 2337   30337  36         single   male    straight       athletic
## 2338   30338  38         single   male    straight        average
## 2339   30339  24         single   male    straight        average
## 2340   30340  21         single   male    straight        average
## 2341   30341  27         single   male    straight       athletic
## 2342   30342  25         single   male    straight        average
## 2343   30343  43         single   male    straight       athletic
## 2344   30344  22         single female         gay           thin
## 2345   30345  25         single   male    straight       athletic
## 2346   30346  26         single   male    straight       athletic
## 2347   30347  46         single   male    straight       athletic
## 2348   30348  19         single   male    straight           <NA>
## 2349   30349  24         single   male    straight            fit
## 2350   30350  37         single   male    straight     overweight
## 2351   30351  22         single female    straight            fit
## 2352   30352  36         single   male    straight            fit
## 2353   30353  49         single   male    straight        average
## 2354   30354  53         single   male         gay           <NA>
## 2355   30355  31         single   male    straight            fit
## 2356   30356  24         single   male    straight           thin
## 2357   30357  27      available   male    straight       athletic
## 2358   30358  42         single   male    straight            fit
## 2359   30359  25         single   male    straight       athletic
## 2360   30360  25         single   male    straight       athletic
## 2361   30361  21         single   male    straight       athletic
## 2362   30362  22         single   male         gay       athletic
## 2363   30363  27         single female    bisexual          curvy
## 2364   30364  22         single   male    straight       athletic
## 2365   30365  23         single female         gay        average
## 2366   30366  24         single female    straight        average
## 2367   30367  25         single female    straight        average
## 2368   30368  37         single   male    straight            fit
## 2369   30369  29         single   male    straight            fit
## 2370   30370  42         single   male         gay        average
## 2371   30371  49         single   male    straight       athletic
## 2372   30372  19         single   male    straight            fit
## 2373   30373  22         single   male    straight           <NA>
## 2374   30374  27         single   male    straight           <NA>
## 2375   30375  24         single   male         gay            fit
## 2376   30376  27         single   male         gay           thin
## 2377   30377  66         single female    straight          curvy
## 2378   30378  24         single female    straight           thin
## 2379   30379  27         single female    straight           thin
## 2380   30380  24         single female    straight           <NA>
## 2381   30381  27         single   male    straight           thin
## 2382   30382  38         single   male    straight       athletic
## 2383   30383  27         single   male    straight            fit
## 2384   30384  18         single   male    straight       athletic
## 2385   30385  25         single   male    straight        average
## 2386   30386  19         single   male    straight        average
## 2387   30387  30         single   male    straight            fit
## 2388   30388  45         single   male    straight       athletic
## 2389   30389  26         single   male    straight       athletic
## 2390   30390  31         single   male    straight        average
## 2391   30391  24         single   male    straight       athletic
## 2392   30392  29         single   male    straight       athletic
## 2393   30393  20         single   male    straight            fit
## 2394   30394  20         single   male    straight            fit
## 2395   30395  37         single female    straight            fit
## 2396   30396  33         single   male    straight a little extra
## 2397   30397  33         single   male    straight        average
## 2398   30398  19         single   male         gay            fit
## 2399   30399  36         single   male    straight       athletic
## 2400   30400  34 seeing someone   male    straight           <NA>
## 2401   30401  27         single   male    straight        average
## 2402   30402  29         single   male    straight            fit
## 2403   30403  28         single   male    straight           <NA>
## 2404   30404  26         single   male    straight            fit
## 2405   30405  26         single   male    straight            fit
## 2406   30406  26         single   male    straight            fit
## 2407   30407  34         single   male         gay       athletic
## 2408   30408  27         single   male    straight            fit
## 2409   30409  29         single   male    straight       athletic
## 2410   30410  24         single female    bisexual          curvy
## 2411   30411  34         single female    straight          curvy
## 2412   30412  21 seeing someone female    straight        average
## 2413   30413  31         single female    straight       athletic
## 2414   30414  34         single   male    straight            fit
## 2415   30415  27      available female    bisexual           thin
## 2416   30416  34         single   male    straight            fit
## 2417   30417  31         single   male         gay        average
## 2418   30418  46         single   male    straight           thin
## 2419   30419  42         single   male    straight            fit
## 2420   30420  34         single   male         gay        average
## 2421   30421  28         single   male    straight        average
## 2422   30422  29         single   male    straight            fit
## 2423   30423  30         single   male    straight a little extra
## 2424   30424  24         single   male    straight       athletic
## 2425   30425  31         single   male    straight            fit
## 2426   30426  44         single   male    straight        average
## 2427   30427  28         single   male    straight           <NA>
## 2428   30428  20         single female    straight         jacked
## 2429   30429  34         single   male    straight         jacked
## 2430   30430  25         single female    straight           thin
## 2431   30431  33         single   male    straight         skinny
## 2432   30432  33         single   male    straight       athletic
## 2433   30433  29         single   male         gay        average
## 2434   30434  22         single   male    straight        average
## 2435   30435  31         single   male    straight       athletic
## 2436   30436  41         single   male    straight            fit
## 2437   30437  30         single   male    straight       athletic
## 2438   30438  31         single   male    straight a little extra
## 2439   30439  27         single   male    straight       athletic
## 2440   30440  37 seeing someone   male    straight           <NA>
## 2441   30441  33         single   male    straight       athletic
## 2442   30442  29         single   male    straight       athletic
## 2443   30443  28         single   male    straight           thin
## 2444   30444  27         single   male    straight       athletic
## 2445   30445  20         single   male    straight           <NA>
## 2446   30446  41         single   male    straight        average
## 2447   30447  21         single female         gay            fit
## 2448   30448  33         single   male    straight       athletic
## 2449   30449  26         single   male    straight           <NA>
## 2450   30450  20         single   male    straight           <NA>
## 2451   30451  33         single   male    straight            fit
## 2452   30452  27 seeing someone   male    straight        average
## 2453   30453  25         single female    straight           <NA>
## 2454   30454  32         single   male    straight            fit
## 2455   30455  29         single   male    straight a little extra
## 2456   30456  22         single   male    straight       athletic
## 2457   30457  30         single   male    straight       athletic
## 2458   30458  35         single   male    straight            fit
## 2459   30459  33         single   male    straight        average
## 2460   30460  39         single   male    straight a little extra
## 2461   30461  30 seeing someone   male    straight        average
## 2462   30462  29         single   male    straight       athletic
## 2463   30463  34         single female    straight           thin
## 2464   30464  38      available female    straight            fit
## 2465   30465  37         single   male         gay           thin
## 2466   30466  23         single   male    straight rather not say
## 2467   30467  24         single   male         gay            fit
## 2468   30468  34      available   male    straight           <NA>
## 2469   30469  22         single   male    straight        average
## 2470   30470  22         single   male    straight        average
## 2471   30471  26         single   male    straight a little extra
## 2472   30472  26         single female    straight        average
## 2473   30473  33         single   male    straight       athletic
## 2474   30474  26         single female    straight           thin
## 2475   30475  21 seeing someone   male    bisexual           <NA>
## 2476   30476  28      available   male    straight           <NA>
## 2477   30477  64         single   male    straight        average
## 2478   30478  24         single female    straight        average
## 2479   30479  22         single   male    straight       athletic
## 2480   30480  32         single female    straight           <NA>
## 2481   30481  31      available female    bisexual          curvy
## 2482   30482  26         single female    straight        average
## 2483   30483  18         single female    straight        average
## 2484   30484  25         single female    straight          curvy
## 2485   30485  28         single   male    straight            fit
## 2486   30486  32         single female    straight       athletic
## 2487   30487  40         single female    straight        average
## 2488   30488  29         single   male    straight            fit
## 2489   30489  26         single   male    straight       athletic
## 2490   30490  25         single   male         gay           <NA>
## 2491   30491  42         single   male         gay           <NA>
## 2492   30492  40         single   male    straight        average
## 2493   30493  28         single female         gay        average
## 2494   30494  33         single female    straight            fit
## 2495   30495  28         single   male    straight        average
## 2496   30496  31         single female    straight         skinny
## 2497   30497  23         single female    straight            fit
## 2498   30498  29         single female    straight         skinny
## 2499   30499  26 seeing someone female    straight         skinny
## 2500   30500  28         single female    straight        average
## 2501   30501  30      available female    straight        average
## 2502   30502  30         single female    straight         skinny
## 2503   30503  32         single female         gay           <NA>
## 2504   30504  31         single female    straight a little extra
## 2505   30505  22         single female    bisexual        average
## 2506   30506  29         single female    bisexual       athletic
## 2507   30507  38         single female    straight            fit
## 2508   30508  27         single female    straight           <NA>
## 2509   30509  35         single female    straight            fit
## 2510   30510  37         single female    straight           thin
## 2511   30511  35         single female    straight          curvy
## 2512   30512  19         single female    straight          curvy
## 2513   30513 110         single female    straight           <NA>
## 2514   30514  32         single female    straight        average
## 2515   30515  26         single female    straight          curvy
## 2516   30516  25         single female    straight          curvy
## 2517   30517  23         single female         gay            fit
## 2518   30518  26         single female    straight            fit
## 2519   30519  22         single female    straight        average
## 2520   30520  23         single female    straight          curvy
## 2521   30521  23         single female    straight           <NA>
## 2522   30522  34         single   male         gay        average
## 2523   30523  30         single female    straight           <NA>
## 2524   30524  37         single female    straight           <NA>
## 2525   30525  49         single   male    straight       athletic
## 2526   30526  30         single female    bisexual            fit
## 2527   30527  19         single female    bisexual        average
## 2528   30528  26         single   male    straight a little extra
## 2529   30529  23         single   male    straight       athletic
## 2530   30530  22         single female    straight        average
## 2531   30531  30         single   male    straight            fit
## 2532   30532  36         single   male    straight        average
## 2533   30533  44         single   male    straight     overweight
## 2534   30534  34         single female    straight            fit
## 2535   30535  28         single female    straight           <NA>
## 2536   30536  21         single female    bisexual       athletic
## 2537   30537  39         single female    straight          curvy
## 2538   30538  39         single female    straight          curvy
## 2539   30539  30         single   male    straight         skinny
## 2540   30540  30         single female    straight            fit
## 2541   30541  69         single   male    straight a little extra
## 2542   30542  25         single female    straight a little extra
## 2543   30543  35         single female    straight           thin
## 2544   30544  29        married female    straight        average
## 2545   30545  19         single female    straight           thin
## 2546   30546  24         single female    straight           <NA>
## 2547   30547  33         single   male    straight       athletic
## 2548   30548  19         single female    bisexual          curvy
## 2549   30549  27         single female    straight           thin
## 2550   30550  40         single female    straight       athletic
## 2551   30551  36         single   male    straight        average
## 2552   30552  29         single female    straight        average
## 2553   30553  51         single female    straight           thin
## 2554   30554  21         single female    straight        average
## 2555   30555  23         single female    straight            fit
## 2556   30556  26         single   male         gay       athletic
## 2557   30557  29         single female    straight            fit
## 2558   30558  31         single female    straight            fit
## 2559   30559  22         single female    straight        average
## 2560   30560  44         single female    straight          curvy
## 2561   30561  25         single female    straight            fit
## 2562   30562  23         single female    straight        average
## 2563   30563  32         single female    straight          curvy
## 2564   30564  25         single female    straight           thin
## 2565   30565  23         single female    straight         jacked
## 2566   30566  27         single female    straight          curvy
## 2567   30567  44         single female    straight       athletic
## 2568   30568  38         single female    straight            fit
## 2569   30569  60         single female    straight            fit
## 2570   30570  26         single   male    straight           <NA>
## 2571   30571  32         single   male    straight       athletic
## 2572   30572  29         single   male    straight           <NA>
## 2573   30573  59         single female    straight            fit
## 2574   30574  25         single female    straight           <NA>
## 2575   30575  31 seeing someone female         gay       athletic
## 2576   30576  28         single female    straight       athletic
## 2577   30577  62         single female    straight        average
## 2578   30578  22         single   male    straight a little extra
## 2579   30579  27         single   male    straight            fit
## 2580   30580  48         single   male    straight       athletic
## 2581   30581  32         single female    straight       athletic
## 2582   30582  32      available   male    straight        average
## 2583   30583  33         single female    straight           <NA>
## 2584   30584  30         single   male    straight       athletic
## 2585   30585  44         single female    straight a little extra
## 2586   30586  31         single female    straight           thin
## 2587   30587  60         single female    straight        average
## 2588   30588  31         single female    straight           thin
## 2589   30589  39         single   male    straight        average
## 2590   30590  32         single   male    straight           thin
## 2591   30591  26         single female    straight        average
## 2592   30592  30         single   male    straight        average
## 2593   30593  25         single female    straight       athletic
## 2594   30594  55         single female    straight            fit
## 2595   30595  46         single   male    straight       athletic
## 2596   30596  23         single   male    straight       athletic
## 2597   30597  26         single   male    straight       athletic
## 2598   30598  40         single female    straight            fit
## 2599   30599  22         single female    straight         skinny
## 2600   30600  58         single female    straight       athletic
## 2601   30601  40      available   male    straight        average
## 2602   30602  18         single   male         gay          curvy
## 2603   30603  40         single female    straight   full figured
## 2604   30604  24         single   male    bisexual            fit
## 2605   30605  25         single   male    straight            fit
## 2606   30606  24         single   male    straight        average
## 2607   30607  20         single female    straight          curvy
## 2608   30608  32         single   male    straight           <NA>
## 2609   30609  25         single   male    straight           thin
## 2610   30610  31         single   male    straight       athletic
## 2611   30611  35         single female    straight          curvy
## 2612   30612  27         single   male    straight           thin
## 2613   30613  24         single female    straight        average
## 2614   30614  33         single   male    straight         skinny
## 2615   30615  28         single female    straight           <NA>
## 2616   30616  28         single   male    straight            fit
## 2617   30617  46         single female    straight       athletic
## 2618   30618  34         single   male    straight       athletic
## 2619   30619  40         single   male    straight       athletic
## 2620   30620  27         single   male    straight        average
## 2621   30621  32         single   male    straight           <NA>
## 2622   30622  26         single   male    straight       athletic
## 2623   30623  32         single   male    straight        average
## 2624   30624  26         single   male    straight        average
## 2625   30625  32         single   male    straight       athletic
## 2626   30626  57         single   male    straight        average
## 2627   30627  46         single   male    straight        average
## 2628   30628  30         single   male    straight       athletic
## 2629   30629  27         single female    straight           <NA>
## 2630   30630  24         single   male    straight       athletic
## 2631   30631  26         single   male    straight        average
## 2632   30632  42         single female    straight            fit
## 2633   30633  34         single female    straight       athletic
## 2634   30634  24         single   male    straight a little extra
## 2635   30635  57         single   male    straight        average
## 2636   30636  24         single female    straight        average
## 2637   30637  29         single   male    straight       athletic
## 2638   30638  29         single female         gay       athletic
## 2639   30639  49         single female         gay        average
## 2640   30640  44         single female    bisexual   full figured
## 2641   30641  25         single female    straight           <NA>
## 2642   30642  31         single female    straight          curvy
## 2643   30643  24         single female    straight        average
## 2644   30644  31         single female    straight            fit
## 2645   30645  30         single female    straight   full figured
## 2646   30646  30         single female    straight       athletic
## 2647   30647  26         single female    straight       athletic
## 2648   30648  37         single female    straight       athletic
## 2649   30649  26         single female    straight        average
## 2650   30650  27         single female    straight           thin
## 2651   30651  30         single female    straight   full figured
## 2652   30652  24         single female    straight        average
## 2653   30653  18         single female         gay a little extra
## 2654   30654  24         single female    bisexual          curvy
## 2655   30655  22         single female    straight       athletic
## 2656   30656  27         single female    straight           <NA>
## 2657   30657  23         single female    bisexual        average
## 2658   30658  27         single female    straight           <NA>
## 2659   30659  31         single female    straight a little extra
## 2660   30660  29         single female    straight       athletic
## 2661   30661  23         single female    straight           thin
## 2662   30662  38      available   male    straight            fit
## 2663   30663  43         single   male    straight        average
## 2664   30664  21         single female    straight        average
## 2665   30665  35         single female    straight           <NA>
## 2666   30666  32         single female    straight        average
## 2667   30667  31         single female    straight            fit
## 2668   30668  24         single female    bisexual            fit
## 2669   30669  20         single female    straight   full figured
## 2670   30670  19         single female    straight         skinny
## 2671   30671  32         single female    straight       athletic
## 2672   30672  24         single female    straight           <NA>
## 2673   30673  21         single female    straight            fit
## 2674   30674  25         single female         gay         jacked
## 2675   30675  25         single female    straight       athletic
## 2676   30676  42         single   male    straight           <NA>
## 2677   30677  28         single   male         gay            fit
## 2678   30678  38         single female         gay a little extra
## 2679   30679  42         single   male    straight a little extra
## 2680   30680  36         single   male    straight        average
## 2681   30681  38         single   male    straight           <NA>
## 2682   30682  34 seeing someone female    straight          curvy
## 2683   30683  23         single   male    straight         skinny
## 2684   30684  29         single female         gay           <NA>
## 2685   30685  32         single   male    straight        average
## 2686   30686  28         single female    bisexual           <NA>
## 2687   30687  41         single   male         gay        average
## 2688   30688  29         single female    bisexual            fit
## 2689   30689  28         single female    straight        average
## 2690   30690  26         single female    straight        average
## 2691   30691  27         single   male         gay        average
## 2692   30692  26         single female         gay       athletic
## 2693   30693  27         single female    straight a little extra
## 2694   30694  40         single female    straight          curvy
## 2695   30695  40         single   male    straight            fit
## 2696   30696  21 seeing someone female    bisexual          curvy
## 2697   30697  35         single   male    straight a little extra
## 2698   30698  36         single female    straight           <NA>
## 2699   30699  19         single   male    straight           thin
## 2700   30700  26         single   male         gay        average
## 2701   30701  38         single   male    straight       athletic
## 2702   30702  41         single female    straight           thin
## 2703   30703  40         single female    straight        average
## 2704   30704  27         single female    straight            fit
## 2705   30705  36         single   male         gay            fit
## 2706   30706  28         single female    straight            fit
## 2707   30707  23 seeing someone female    straight   full figured
## 2708   30708  25         single female    straight            fit
## 2709   30709  33         single female    straight        average
## 2710   30710  29         single female    straight           thin
## 2711   30711  21         single female    straight       athletic
## 2712   30712  37         single female    straight          curvy
## 2713   30713  41         single   male    straight           thin
## 2714   30714  28         single female    straight        average
## 2715   30715  47         single female    straight            fit
## 2716   30716  23         single female    straight        average
## 2717   30717  25         single female    straight           thin
## 2718   30718  41         single female    straight        average
## 2719   30719  22         single female    straight           <NA>
## 2720   30720  28         single female    straight           <NA>
## 2721   30721  45         single   male    straight       athletic
## 2722   30722  27         single   male    straight           thin
## 2723   30723  27         single   male    straight       athletic
## 2724   30724  25         single female    straight         skinny
## 2725   30725  38         single   male    straight        average
## 2726   30726  35         single   male    straight           thin
## 2727   30727  27         single   male    straight           thin
## 2728   30728  53         single   male    straight       athletic
## 2729   30729  46         single female    straight        average
## 2730   30730  44         single female    straight           <NA>
## 2731   30731  37         single   male    straight            fit
## 2732   30732  31         single female    straight            fit
## 2733   30733  24         single female    straight           <NA>
## 2734   30734  40         single   male    straight        average
## 2735   30735  29         single   male    straight        average
## 2736   30736  32         single   male    straight            fit
## 2737   30737  32         single   male    straight        average
## 2738   30738  32         single   male    straight            fit
## 2739   30739  34         single female    straight          curvy
## 2740   30740  25         single female         gay           <NA>
## 2741   30741  24         single   male    straight            fit
## 2742   30742  25         single   male    straight           <NA>
## 2743   30743  32         single female    bisexual           <NA>
## 2744   30744  29         single female    straight            fit
## 2745   30745  38         single   male    straight       athletic
## 2746   30746  28         single   male    straight       athletic
## 2747   30747  36         single female    straight          curvy
## 2748   30748  36         single female    straight   full figured
## 2749   30749  66      available female    straight            fit
## 2750   30750  33         single female    straight       athletic
## 2751   30751  47         single female    straight            fit
## 2752   30752  60         single   male    straight            fit
## 2753   30753  40         single female    straight            fit
## 2754   30754  46         single female    straight       athletic
## 2755   30755  36         single   male    straight            fit
## 2756   30756  23         single   male    straight       athletic
## 2757   30757  24         single   male    straight        average
## 2758   30758  23         single female         gay          curvy
## 2759   30759  22         single   male    straight       athletic
## 2760   30760  28         single   male    straight            fit
## 2761   30761  23         single   male    straight       athletic
## 2762   30762  39         single   male    straight       athletic
## 2763   30763  25         single   male    straight       athletic
## 2764   30764  24         single   male    straight            fit
## 2765   30765  43         single   male    straight        average
## 2766   30766  29         single   male    bisexual         skinny
## 2767   30767  32         single female    straight            fit
## 2768   30768  24         single female    straight        average
## 2769   30769  27         single   male    straight           thin
## 2770   30770  25         single   male    straight            fit
## 2771   30771  26         single   male    straight            fit
## 2772   30772  21      available   male    straight        average
## 2773   30773  58         single   male    straight            fit
## 2774   30774  45         single female         gay        average
## 2775   30775  26         single   male    straight a little extra
## 2776   30776  21         single   male    straight         skinny
## 2777   30777  20         single   male    bisexual a little extra
## 2778   30778  44        married   male    straight            fit
## 2779   30779  28         single   male    straight       athletic
## 2780   30780  37         single   male    straight        average
## 2781   30781  22         single   male    straight            fit
## 2782   30782  30         single   male    straight            fit
## 2783   30783  25         single   male    straight       athletic
## 2784   30784  46         single   male    straight       athletic
## 2785   30785  29         single female    straight          curvy
## 2786   30786  38 seeing someone   male    bisexual            fit
## 2787   30787  30         single   male         gay       athletic
## 2788   30788  30         single   male    straight           <NA>
## 2789   30789  30         single   male         gay           thin
## 2790   30790  29         single   male    straight            fit
## 2791   30791  66         single female    straight   full figured
## 2792   30792  26         single   male    straight a little extra
## 2793   30793  23         single   male    straight a little extra
## 2794   30794  31         single   male    straight            fit
## 2795   30795  35         single   male    straight        average
## 2796   30796  55         single female    straight            fit
## 2797   30797  20         single female    straight        average
## 2798   30798  37         single female    straight        average
## 2799   30799  25         single   male    straight        average
## 2800   30800  44         single female    straight            fit
## 2801   30801  40         single   male    straight        average
## 2802   30802  30         single   male    straight     overweight
## 2803   30803  24         single female    bisexual         skinny
## 2804   30804  48         single female    straight            fit
## 2805   30805  30         single   male    straight       athletic
## 2806   30806  34         single   male    straight            fit
## 2807   30807  26         single   male    straight            fit
## 2808   30808  30         single female    straight         skinny
## 2809   30809  42         single   male    straight            fit
## 2810   30810  32         single female    straight        average
## 2811   30811  28         single female    straight          curvy
## 2812   30812  25         single   male    straight           <NA>
## 2813   30813  38         single   male    straight            fit
## 2814   30814  28         single   male    straight     overweight
## 2815   30815  38         single female    straight          curvy
## 2816   30816  22         single   male    straight       athletic
## 2817   30817  59         single   male    straight            fit
## 2818   30818  33         single female    straight        average
## 2819   30819  49         single   male    straight        average
## 2820   30820  31         single   male    straight            fit
## 2821   30821  23         single   male    straight       athletic
## 2822   30822  43         single   male    straight       athletic
## 2823   30823  29         single female    straight           thin
## 2824   30824  41         single   male    straight            fit
## 2825   30825  58         single   male    straight           <NA>
## 2826   30826  22         single   male    straight           <NA>
## 2827   30827  38         single female    straight            fit
## 2828   30828  28         single female         gay           <NA>
## 2829   30829  22 seeing someone female    straight          curvy
## 2830   30830  49         single female         gay          curvy
## 2831   30831  31         single female    straight        average
## 2832   30832  30         single   male    straight           <NA>
## 2833   30833  22         single   male    straight       athletic
## 2834   30834  30         single   male    straight            fit
## 2835   30835  28         single   male    straight            fit
## 2836   30836  26 seeing someone   male    straight       athletic
## 2837   30837  36         single   male    straight           <NA>
## 2838   30838  28         single   male    straight        average
## 2839   30839  69      available   male    straight            fit
## 2840   30840  40      available female    straight   full figured
## 2841   30841  48         single female    straight          curvy
## 2842   30842  23         single female    straight        average
## 2843   30843  61         single female    straight            fit
## 2844   30844  28         single female    straight           thin
## 2845   30845  27         single   male    straight       athletic
## 2846   30846  39         single female    bisexual   full figured
## 2847   30847  36         single   male    straight       athletic
## 2848   30848  41         single   male    straight            fit
## 2849   30849  36 seeing someone female    straight          curvy
## 2850   30850  56         single female    straight        average
## 2851   30851  30         single   male    straight       athletic
## 2852   30852  25         single   male    straight        average
## 2853   30853  43        married   male    straight            fit
## 2854   30854  31         single   male    straight       athletic
## 2855   30855  30         single female    straight        average
## 2856   30856  28         single female    straight            fit
## 2857   30857  38         single female    straight   full figured
## 2858   30858  22         single   male    straight        average
## 2859   30859  26         single   male    straight       athletic
## 2860   30860  30         single   male         gay       athletic
## 2861   30861  24         single   male    straight            fit
## 2862   30862  48         single   male    straight       athletic
## 2863   30863  38         single   male    straight            fit
## 2864   30864  28         single female    straight          curvy
## 2865   30865  24         single female    straight        average
## 2866   30866  55         single female    straight        average
## 2867   30867  31         single female    straight          curvy
## 2868   30868  41         single female    bisexual          curvy
## 2869   30869  26         single female    straight       athletic
## 2870   30870  30         single female    straight           thin
## 2871   30871  36         single female    straight            fit
## 2872   30872  21         single female    straight a little extra
## 2873   30873  29         single   male    straight        average
## 2874   30874  29         single female    straight        average
## 2875   30875  38         single female         gay   full figured
## 2876   30876  28         single female    straight            fit
## 2877   30877  23         single   male    straight        average
## 2878   30878  30        married female         gay           <NA>
## 2879   30879  22         single   male    straight            fit
## 2880   30880  35         single female    straight            fit
## 2881   30881  27         single   male    straight       athletic
## 2882   30882  24         single female    straight        average
## 2883   30883  26         single female    straight           <NA>
## 2884   30884  29         single female    straight        average
## 2885   30885  25         single female    straight        average
## 2886   30886  25         single   male    straight         skinny
## 2887   30887  27      available   male         gay       athletic
## 2888   30888  64         single   male    straight       athletic
## 2889   30889  53         single   male    straight        average
## 2890   30890  27         single   male    straight       athletic
## 2891   30891  25         single   male    straight        average
## 2892   30892  25         single female         gay            fit
## 2893   30893  23         single female    straight           thin
## 2894   30894  37         single   male    straight       athletic
## 2895   30895  40         single female    straight          curvy
## 2896   30896  25         single   male         gay           thin
## 2897   30897  29         single   male    straight       athletic
## 2898   30898  30         single   male    straight            fit
## 2899   30899  36         single   male    straight            fit
## 2900   30900  31         single female    straight            fit
## 2901   30901  30         single female    straight a little extra
## 2902   30902  42         single female    straight        average
## 2903   30903  25         single female    straight         skinny
## 2904   30904  29         single female    straight   full figured
## 2905   30905  26         single female    straight            fit
## 2906   30906  66         single female    straight        average
## 2907   30907  29         single female    straight            fit
## 2908   30908  30         single female    straight            fit
## 2909   30909  27         single female    straight           <NA>
## 2910   30910  28 seeing someone female    straight         skinny
## 2911   30911  24         single female    straight           <NA>
## 2912   30912  23         single female    straight            fit
## 2913   30913  30         single female    straight           thin
## 2914   30914  33         single female    straight       athletic
## 2915   30915  20         single female    bisexual          curvy
## 2916   30916  22         single female    straight a little extra
## 2917   30917  24         single female    bisexual          curvy
## 2918   30918  31         single female    straight       athletic
## 2919   30919  36         single female    straight   full figured
## 2920   30920  24         single female         gay       athletic
## 2921   30921  19         single female    straight            fit
## 2922   30922  24         single female    straight           thin
## 2923   30923  29         single female    straight        average
## 2924   30924  24 seeing someone female    straight           <NA>
## 2925   30925  34         single female    straight        average
## 2926   30926  26         single female    straight           <NA>
## 2927   30927  27         single female    straight            fit
## 2928   30928  43         single female    straight            fit
## 2929   30929  23         single female    straight        average
## 2930   30930  32         single   male    straight           thin
## 2931   30931  34         single   male    straight        average
## 2932   30932  37         single   male    straight            fit
## 2933   30933  31         single   male    straight        average
## 2934   30934  41         single female    straight       athletic
## 2935   30935  34         single   male    straight            fit
## 2936   30936  22         single female    straight rather not say
## 2937   30937  32         single   male    straight       athletic
## 2938   30938  23         single female    straight           <NA>
## 2939   30939  22         single female    straight       athletic
## 2940   30940  23         single   male    straight       athletic
## 2941   30941  44         single female    straight           thin
## 2942   30942  43         single female    straight          curvy
## 2943   30943  40      available female         gay        average
## 2944   30944  41         single   male    straight       athletic
## 2945   30945  30         single female    straight            fit
## 2946   30946  47         single   male    straight            fit
## 2947   30947  18         single   male    straight        average
## 2948   30948  43         single   male    straight           <NA>
## 2949   30949  23         single   male    straight       athletic
## 2950   30950  25         single   male         gay            fit
## 2951   30951  27         single   male    straight            fit
## 2952   30952  25         single   male    straight           <NA>
## 2953   30953  28         single   male         gay        average
## 2954   30954  46         single female    straight        average
## 2955   30955  26         single female    straight        average
## 2956   30956  41         single female         gay a little extra
## 2957   30957  36         single female    straight        average
## 2958   30958  31         single   male    straight       athletic
## 2959   30959  42         single female    straight          curvy
## 2960   30960  28         single female    straight           <NA>
## 2961   30961  27         single female    straight        average
## 2962   30962  25         single female    bisexual          curvy
## 2963   30963  23         single   male         gay        average
## 2964   30964  31         single female    straight        average
## 2965   30965  25         single female    bisexual        average
## 2966   30966  23         single female    bisexual   full figured
## 2967   30967  35         single female    straight            fit
## 2968   30968  34         single female    straight        average
## 2969   30969  31         single female    bisexual   full figured
## 2970   30970  31         single female    straight          curvy
## 2971   30971  26         single female    straight          curvy
## 2972   30972  27         single female    straight            fit
## 2973   30973  31         single female    straight        average
## 2974   30974  26         single female    straight           thin
## 2975   30975  25         single female    straight           <NA>
## 2976   30976  26         single female    straight          curvy
## 2977   30977  30         single   male    straight         skinny
## 2978   30978  27         single female    straight            fit
## 2979   30979  21         single female    straight a little extra
## 2980   30980  28      available   male         gay           thin
## 2981   30981  28         single female    straight           thin
## 2982   30982  33         single female    straight a little extra
## 2983   30983  29         single   male    straight       athletic
## 2984   30984  33         single female         gay           thin
## 2985   30985  25         single female    straight        average
## 2986   30986  32      available female         gay           <NA>
## 2987   30987  28 seeing someone female         gay        average
## 2988   30988  26         single female    straight        average
## 2989   30989  34 seeing someone   male    straight        average
## 2990   30990  34         single   male         gay       athletic
## 2991   30991  56         single   male    straight        average
## 2992   30992  36         single   male    straight       athletic
## 2993   30993  29         single female    straight           <NA>
## 2994   30994  38         single   male    straight            fit
## 2995   30995  27         single   male    straight            fit
## 2996   30996  53         single   male    straight            fit
## 2997   30997  30 seeing someone female    bisexual        average
## 2998   30998  32         single female    straight       athletic
## 2999   30999  24         single female    straight         skinny
## 3000   31000  28         single   male    straight            fit
## 3001   31001  25         single female    straight            fit
## 3002   31002  25         single female         gay        average
## 3003   31003  34         single female    straight       athletic
## 3004   31004  20         single female    straight   full figured
## 3005   31005  21         single female    straight        average
## 3006   31006  23         single female    straight           <NA>
## 3007   31007  24         single female    straight            fit
## 3008   31008  26         single female    straight            fit
## 3009   31009  24         single female    straight        average
## 3010   31010  32         single female    straight            fit
## 3011   31011  30         single female    straight        average
## 3012   31012  25         single female    straight           <NA>
## 3013   31013  21         single   male         gay        average
## 3014   31014  35         single female    straight          curvy
## 3015   31015  34         single female    straight        average
## 3016   31016  20         single   male         gay            fit
## 3017   31017  30         single   male    straight            fit
## 3018   31018  42         single   male    straight a little extra
## 3019   31019  27         single   male    straight        average
## 3020   31020  34         single   male         gay       athletic
## 3021   31021  38         single   male    straight       athletic
## 3022   31022  31         single female    straight           <NA>
## 3023   31023  28         single   male         gay        average
## 3024   31024  27         single   male    straight       athletic
## 3025   31025  33         single female    straight       athletic
## 3026   31026  49         single female    straight           thin
## 3027   31027  40      available female    straight           <NA>
## 3028   31028  32         single   male    straight            fit
## 3029   31029  25         single   male    straight            fit
## 3030   31030  32         single   male    straight           <NA>
## 3031   31031  28         single female    straight           <NA>
## 3032   31032  23         single   male    straight       athletic
## 3033   31033  21         single female    straight        average
## 3034   31034  34         single female    straight            fit
## 3035   31035  21         single female    straight            fit
## 3036   31036  41         single female    straight            fit
## 3037   31037  31         single   male    straight            fit
## 3038   31038  24         single female    straight          curvy
## 3039   31039  45         single female    straight           thin
## 3040   31040  26         single female    straight         skinny
## 3041   31041  29         single   male    straight       athletic
## 3042   31042  39         single female    straight       athletic
## 3043   31043  44         single   male         gay            fit
## 3044   31044  62         single   male    straight        average
## 3045   31045  52         single female    bisexual           <NA>
## 3046   31046  32         single   male    straight       athletic
## 3047   31047  21         single female    bisexual         skinny
## 3048   31048  34         single   male    straight       athletic
## 3049   31049  31         single   male    straight            fit
## 3050   31050  50         single   male    straight       athletic
## 3051   31051  31 seeing someone female    straight          curvy
## 3052   31052  22         single   male    straight       athletic
## 3053   31053  36         single   male    straight            fit
## 3054   31054  28      available   male    straight            fit
## 3055   31055  24         single   male    straight            fit
## 3056   31056  30         single female    straight            fit
## 3057   31057  33         single   male    straight       athletic
## 3058   31058  28         single   male    straight            fit
## 3059   31059  65         single female    straight        average
## 3060   31060  25         single   male    straight            fit
## 3061   31061  26         single   male         gay          curvy
## 3062   31062  26         single   male    straight       athletic
## 3063   31063  24         single   male    straight            fit
## 3064   31064  27         single   male    straight            fit
## 3065   31065  19         single   male         gay         skinny
## 3066   31066  29         single   male    straight            fit
## 3067   31067  29         single   male         gay            fit
## 3068   31068  32         single   male    straight        average
## 3069   31069  33         single   male    straight       athletic
## 3070   31070  31         single   male    straight        average
## 3071   31071  29         single   male    straight            fit
## 3072   31072  32         single female    straight           thin
## 3073   31073  31         single   male    straight            fit
## 3074   31074  25         single female    straight       athletic
## 3075   31075  32         single   male    straight       athletic
## 3076   31076  25         single female    straight       athletic
## 3077   31077  22         single female    straight           <NA>
## 3078   31078  44         single   male    straight        average
## 3079   31079  22         single   male         gay           thin
## 3080   31080  39         single   male    straight       athletic
## 3081   31081  20         single   male    straight     overweight
## 3082   31082  18         single female    straight           <NA>
## 3083   31083  65         single   male         gay a little extra
## 3084   31084  26         single   male    straight            fit
## 3085   31085  22         single female    straight       athletic
## 3086   31086  30      available   male    straight        average
## 3087   31087  30         single   male    straight        average
## 3088   31088  24         single female    straight         skinny
## 3089   31089  59         single   male    straight       athletic
## 3090   31090  25         single   male         gay       athletic
## 3091   31091  23         single   male    bisexual           <NA>
## 3092   31092  27         single female    straight           thin
## 3093   31093  31         single   male    straight           <NA>
## 3094   31094  28         single female    straight           <NA>
## 3095   31095  35         single female    straight          curvy
## 3096   31096  39         single female    bisexual       athletic
## 3097   31097  40         single   male    straight            fit
## 3098   31098  31         single   male    straight         jacked
## 3099   31099  30      available   male         gay         skinny
## 3100   31100  57         single female    straight        average
## 3101   31101  21         single   male    straight           thin
## 3102   31102  49      available   male    straight       athletic
## 3103   31103  40         single   male    bisexual            fit
## 3104   31104  22         single female    straight        average
## 3105   31105  37         single   male    straight        average
## 3106   31106  25         single   male    straight       athletic
## 3107   31107  30         single   male    straight            fit
## 3108   31108  29         single female    straight        average
## 3109   31109  49         single   male    straight        average
## 3110   31110  28         single female    straight        average
## 3111   31111  27         single female    straight            fit
## 3112   31112  36         single   male         gay       athletic
## 3113   31113  40         single   male    straight            fit
## 3114   31114  18         single female    bisexual        average
## 3115   31115  34         single   male    straight        average
## 3116   31116  50      available female    straight           <NA>
## 3117   31117  43         single female    straight         jacked
## 3118   31118  20 seeing someone   male    bisexual     overweight
## 3119   31119  23         single female    straight           thin
## 3120   31120  38         single   male    straight       athletic
## 3121   31121  26         single   male    straight       athletic
## 3122   31122  26         single female    straight          curvy
## 3123   31123  32         single female    straight        average
## 3124   31124  24         single   male    straight        average
## 3125   31125  26         single female    straight        average
## 3126   31126  32         single female    straight       athletic
## 3127   31127  38         single   male    straight       athletic
## 3128   31128  28         single   male    bisexual        average
## 3129   31129  22         single female    straight        average
## 3130   31130  20         single female    bisexual   full figured
## 3131   31131  23         single female    straight            fit
## 3132   31132  41         single   male    straight            fit
## 3133   31133  31         single   male    straight        average
## 3134   31134  48         single female    straight          curvy
## 3135   31135  24         single female         gay       athletic
## 3136   31136  40         single   male    straight        average
## 3137   31137  24         single female         gay           <NA>
## 3138   31138  34         single female    bisexual            fit
## 3139   31139  24         single female    straight            fit
## 3140   31140  34         single female    straight            fit
## 3141   31141  64         single female    straight       athletic
## 3142   31142  43         single female    straight        average
## 3143   31143  36         single   male    straight        average
## 3144   31144  25         single   male         gay       athletic
## 3145   31145  23         single female    straight        average
## 3146   31146  22         single female    straight            fit
## 3147   31147  38         single female    straight         skinny
## 3148   31148  29         single female    straight           thin
## 3149   31149  55         single female         gay       athletic
## 3150   31150  33         single female    straight            fit
## 3151   31151  28         single female    straight           <NA>
## 3152   31152  36         single female    straight       athletic
## 3153   31153  33         single female    bisexual          curvy
## 3154   31154  42         single female    straight a little extra
## 3155   31155  39         single female    straight          curvy
## 3156   31156  39         single   male    straight           <NA>
## 3157   31157  25         single female    straight            fit
## 3158   31158  39         single female    straight          curvy
## 3159   31159  34         single female    straight           thin
## 3160   31160  27         single female    straight            fit
## 3161   31161  23         single female    straight        average
## 3162   31162  26         single female    straight           thin
## 3163   31163  30         single female    straight           <NA>
## 3164   31164  26         single female    straight          curvy
## 3165   31165  27 seeing someone female    straight          curvy
## 3166   31166  37         single female    straight            fit
## 3167   31167  31         single female    straight rather not say
## 3168   31168  32         single female    straight           thin
## 3169   31169  32         single   male         gay        average
## 3170   31170  35         single   male    straight a little extra
## 3171   31171  37         single   male    straight            fit
## 3172   31172  33         single female    straight            fit
## 3173   31173  29         single female    straight         skinny
## 3174   31174  42         single   male         gay        average
## 3175   31175  39         single female    straight            fit
## 3176   31176  35         single female    straight        average
## 3177   31177  27         single female    straight           thin
## 3178   31178  31         single female    straight            fit
## 3179   31179  50         single female    straight a little extra
## 3180   31180  31         single female    straight           <NA>
## 3181   31181  23         single female    straight           thin
## 3182   31182  22         single female    straight          curvy
## 3183   31183  27      available female    straight           <NA>
## 3184   31184  26         single female    bisexual        average
## 3185   31185  31         single female    straight        average
## 3186   31186  44         single female    straight           <NA>
## 3187   31187  25         single female    straight a little extra
## 3188   31188  23         single   male    straight            fit
## 3189   31189  25         single   male    straight           <NA>
## 3190   31190  38         single   male    straight        average
## 3191   31191  34         single female    straight           <NA>
## 3192   31192  40         single   male    straight       athletic
## 3193   31193  35         single female    straight          curvy
## 3194   31194  41         single female    straight          curvy
## 3195   31195  38         single female    straight          curvy
## 3196   31196  24         single female    straight a little extra
## 3197   31197  22         single   male    straight       athletic
## 3198   31198  30         single female    straight            fit
## 3199   31199  18         single female         gay        average
## 3200   31200  32         single female    straight          curvy
## 3201   31201  30         single   male    straight           thin
## 3202   31202  28         single   male    straight            fit
## 3203   31203  29         single   male    straight            fit
## 3204   31204  38         single   male    straight            fit
## 3205   31205  39         single female    straight            fit
## 3206   31206  41         single   male    straight            fit
## 3207   31207  30         single female    bisexual          curvy
## 3208   31208  49         single female    straight            fit
## 3209   31209  42         single female    straight            fit
## 3210   31210  27         single female    straight        average
## 3211   31211  39         single   male    straight        average
## 3212   31212  30         single   male    straight            fit
## 3213   31213  59         single female    straight            fit
## 3214   31214  57         single female    straight            fit
## 3215   31215  28         single female    straight a little extra
## 3216   31216  35         single   male    straight         skinny
## 3217   31217  42         single   male    straight           <NA>
## 3218   31218  25         single female    straight        average
## 3219   31219  25         single female    straight         skinny
## 3220   31220  30         single female    straight        average
## 3221   31221  22 seeing someone female    bisexual           thin
## 3222   31222  25         single   male    straight       athletic
## 3223   31223  24         single   male    straight a little extra
## 3224   31224  42      available female    bisexual           <NA>
## 3225   31225  26         single female    straight       athletic
## 3226   31226  46         single female    straight           thin
## 3227   31227  26         single female    straight            fit
## 3228   31228  43         single female    straight           thin
## 3229   31229  23         single female    straight            fit
## 3230   31230  35         single female    straight           <NA>
## 3231   31231  35         single   male    straight        average
## 3232   31232  34         single   male    straight            fit
## 3233   31233  61         single female    straight        average
## 3234   31234  30        married female    straight           thin
## 3235   31235  32         single   male    straight            fit
## 3236   31236  28         single female    straight           <NA>
## 3237   31237  23 seeing someone   male    straight        average
## 3238   31238  28         single female    straight          curvy
## 3239   31239  54      available   male    straight           <NA>
## 3240   31240  34         single   male    straight        average
## 3241   31241  27         single   male         gay            fit
## 3242   31242  27         single   male    straight        average
## 3243   31243  42        married   male    straight        used up
## 3244   31244  21         single   male    straight       athletic
## 3245   31245  25         single   male    straight            fit
## 3246   31246  25         single   male    straight            fit
## 3247   31247  27         single female    straight            fit
## 3248   31248  39         single   male    straight        average
## 3249   31249  27         single   male    straight            fit
## 3250   31250  26         single female    straight        average
## 3251   31251  33         single   male    straight            fit
## 3252   31252  25         single   male    straight            fit
## 3253   31253  22         single   male    bisexual       athletic
## 3254   31254  48         single female    straight            fit
## 3255   31255  35         single female    straight       athletic
## 3256   31256  29         single   male    straight        average
## 3257   31257  28         single   male    straight            fit
## 3258   31258  26         single   male    straight       athletic
## 3259   31259  26         single   male    straight        average
## 3260   31260  26         single   male         gay       athletic
## 3261   31261  23         single   male    straight       athletic
## 3262   31262  38         single   male    straight        average
## 3263   31263  25         single   male    straight        average
## 3264   31264  34         single female         gay        average
## 3265   31265  24         single female    bisexual          curvy
## 3266   31266  28         single female    straight       athletic
## 3267   31267  21         single   male         gay        average
## 3268   31268  23         single female    straight           <NA>
## 3269   31269  27         single female    straight        average
## 3270   31270  56         single   male    straight            fit
## 3271   31271  19         single female    bisexual          curvy
## 3272   31272  24         single female    straight            fit
## 3273   31273  27         single female    straight            fit
## 3274   31274  32         single   male    straight           <NA>
## 3275   31275  26         single   male    straight       athletic
## 3276   31276  28         single   male    straight            fit
## 3277   31277  56         single female    straight        average
## 3278   31278  35         single female    straight            fit
## 3279   31279  40         single   male    straight            fit
## 3280   31280  33         single   male    straight        average
## 3281   31281  23         single   male    straight       athletic
## 3282   31282  33         single   male    straight           thin
## 3283   31283  43         single   male    straight           <NA>
## 3284   31284  31         single   male    straight           <NA>
## 3285   31285  31         single   male    straight            fit
## 3286   31286  31         single   male    straight            fit
## 3287   31287  32         single female    straight       athletic
## 3288   31288  22         single female    straight        average
## 3289   31289  48         single female    straight        average
## 3290   31290  34         single female    straight            fit
## 3291   31291  23         single female    straight   full figured
## 3292   31292  28         single   male    straight           thin
## 3293   31293  26         single female    straight          curvy
## 3294   31294  57         single female    straight           thin
## 3295   31295  29         single   male    straight       athletic
## 3296   31296  59         single female    straight            fit
## 3297   31297  31         single   male    straight            fit
## 3298   31298  38         single female    straight          curvy
## 3299   31299  34         single female    straight   full figured
## 3300   31300  23         single female    straight            fit
## 3301   31301  26         single   male    straight        average
## 3302   31302  18         single female    bisexual         skinny
## 3303   31303  59         single female    straight          curvy
## 3304   31304  24         single   male    straight       athletic
## 3305   31305  28         single   male    straight            fit
## 3306   31306  35         single   male    straight            fit
## 3307   31307  31         single   male    straight            fit
## 3308   31308  35         single   male    straight        average
## 3309   31309  29         single   male    straight        average
## 3310   31310  32         single   male    straight            fit
## 3311   31311  35         single   male    straight        average
## 3312   31312  20         single   male    straight a little extra
## 3313   31313  22         single   male         gay           thin
## 3314   31314  36         single   male    straight a little extra
## 3315   31315  27         single   male    straight            fit
## 3316   31316  18         single   male    straight            fit
## 3317   31317  23         single   male    straight            fit
## 3318   31318  29         single   male    straight            fit
## 3319   31319  26         single   male    straight       athletic
## 3320   31320  27         single   male    straight       athletic
## 3321   31321  36         single   male         gay            fit
## 3322   31322  25         single   male    straight        average
## 3323   31323  29         single   male    straight       athletic
## 3324   31324  27         single   male    straight            fit
## 3325   31325  33         single   male    straight       athletic
## 3326   31326  30         single   male    straight       athletic
## 3327   31327  20         single   male    straight        average
## 3328   31328  26         single   male    straight        average
## 3329   31329  26         single   male    straight        average
## 3330   31330  29         single   male    straight            fit
## 3331   31331  26         single   male    straight a little extra
## 3332   31332  30         single   male    straight       athletic
## 3333   31333  25         single   male         gay       athletic
## 3334   31334  27         single   male    straight           thin
## 3335   31335  31      available   male    straight            fit
## 3336   31336  33         single   male    straight        average
## 3337   31337  27         single   male    straight            fit
## 3338   31338  21         single   male    straight        average
## 3339   31339  21         single   male    straight           thin
## 3340   31340  26         single   male    straight        average
## 3341   31341  25         single   male    straight        average
## 3342   31342  26         single   male    straight            fit
## 3343   31343  21         single   male    straight        average
## 3344   31344  26         single   male    straight        average
## 3345   31345  29         single   male         gay           thin
## 3346   31346  26         single   male    straight       athletic
## 3347   31347  29         single   male    straight        average
## 3348   31348  23 seeing someone   male    straight           <NA>
## 3349   31349  28         single   male         gay            fit
## 3350   31350  20         single   male    straight       athletic
## 3351   31351  27         single   male         gay        average
## 3352   31352  27         single   male         gay        average
## 3353   31353  29         single   male    straight            fit
## 3354   31354  27         single   male    straight            fit
## 3355   31355  19         single   male    bisexual        average
## 3356   31356  28         single   male    straight        average
## 3357   31357  24         single   male    straight        average
## 3358   31358  33         single   male    straight            fit
## 3359   31359  22         single   male    straight       athletic
## 3360   31360  23         single   male    straight         skinny
## 3361   31361  26         single   male    straight        average
## 3362   31362  32         single   male    straight        average
## 3363   31363  23         single   male    straight        average
## 3364   31364  27         single   male    straight       athletic
## 3365   31365  30 seeing someone   male    straight            fit
## 3366   31366  31         single   male    straight        average
## 3367   31367  25         single   male    straight       athletic
## 3368   31368  31         single   male    straight          curvy
## 3369   31369  26         single   male    straight           <NA>
## 3370   31370  26         single   male    straight           <NA>
## 3371   31371  22         single   male    straight            fit
## 3372   31372  23      available female    bisexual           thin
## 3373   31373  29         single   male    straight       athletic
## 3374   31374  31 seeing someone female    bisexual           thin
## 3375   31375  21         single   male         gay        average
## 3376   31376  57         single   male    straight       athletic
## 3377   31377  23         single   male    straight       athletic
## 3378   31378  29         single   male    bisexual           <NA>
## 3379   31379  45 seeing someone female         gay        average
## 3380   31380  25         single   male    straight            fit
## 3381   31381  30         single female    straight        average
## 3382   31382  28         single   male    straight       athletic
## 3383   31383  28         single   male    straight         jacked
## 3384   31384  57         single female    straight            fit
## 3385   31385  38         single female    bisexual            fit
## 3386   31386  22         single female    bisexual           <NA>
## 3387   31387  25         single   male    straight       athletic
## 3388   31388  42         single   male    straight            fit
## 3389   31389  25         single   male    straight        average
## 3390   31390  39         single   male    straight        average
## 3391   31391  62         single   male    straight       athletic
## 3392   31392  26         single   male    straight            fit
## 3393   31393  30         single   male    straight        average
## 3394   31394  24         single   male    straight           thin
## 3395   31395  25         single   male    straight           <NA>
## 3396   31396  28         single   male    straight            fit
## 3397   31397  41         single   male    straight        average
## 3398   31398  25         single   male    straight            fit
## 3399   31399  30         single   male    straight       athletic
## 3400   31400  18         single female    bisexual        used up
## 3401   31401  30         single   male    straight       athletic
## 3402   31402  40         single   male         gay            fit
## 3403   31403  46         single   male    straight        average
## 3404   31404  26         single   male    straight        average
## 3405   31405  29         single   male    bisexual            fit
## 3406   31406  30         single   male    straight       athletic
## 3407   31407  21         single   male    straight        average
## 3408   31408  23         single   male    straight       athletic
## 3409   31409  37         single   male    straight a little extra
## 3410   31410  25         single   male         gay           <NA>
## 3411   31411  31         single   male         gay         skinny
## 3412   31412  27         single   male    straight            fit
## 3413   31413  30         single   male    straight a little extra
## 3414   31414  40         single   male         gay       athletic
## 3415   31415  63 seeing someone   male    straight           <NA>
## 3416   31416  33         single   male    straight        average
## 3417   31417  20         single   male    straight            fit
## 3418   31418  31      available   male    straight        average
## 3419   31419  61         single   male    straight            fit
## 3420   31420  42         single   male    straight           thin
## 3421   31421  52         single   male    straight       athletic
## 3422   31422  33         single   male    straight        average
## 3423   31423  22         single   male    straight        average
## 3424   31424  43         single   male    straight        average
## 3425   31425  40         single   male         gay            fit
## 3426   31426  27         single   male    straight       athletic
## 3427   31427  31         single   male    bisexual       athletic
## 3428   31428  27         single   male    straight       athletic
## 3429   31429  30         single   male    straight        average
## 3430   31430  31         single   male    straight       athletic
## 3431   31431  33         single   male    straight       athletic
## 3432   31432  31         single   male    straight        average
## 3433   31433  27      available   male    straight        used up
## 3434   31434  26         single female         gay           thin
## 3435   31435  27         single female    straight          curvy
## 3436   31436  40         single female    straight           thin
## 3437   31437  24         single   male    bisexual       athletic
## 3438   31438  33         single female    straight rather not say
## 3439   31439  31      available   male    straight         skinny
## 3440   31440  41         single female    straight          curvy
## 3441   31441  28         single   male    straight       athletic
## 3442   31442  34         single female    straight          curvy
## 3443   31443  33         single   male    straight        average
## 3444   31444  22         single female    straight        average
## 3445   31445  55         single female    straight        average
## 3446   31446  32         single   male    straight        average
## 3447   31447  25         single female    straight        average
## 3448   31448  24         single female    straight          curvy
## 3449   31449  37         single female    straight            fit
## 3450   31450  23 seeing someone   male    straight           thin
## 3451   31451  30         single female    straight          curvy
## 3452   31452  32         single female    straight       athletic
## 3453   31453  23         single female    straight        average
## 3454   31454  45         single female    straight        average
## 3455   31455  24 seeing someone female    straight        average
## 3456   31456  25         single   male    straight           thin
## 3457   31457  41         single   male    straight            fit
## 3458   31458  31         single female    straight           thin
## 3459   31459  24      available   male    bisexual            fit
## 3460   31460  42         single female    bisexual        average
## 3461   31461  28         single female    straight        average
## 3462   31462  29         single female    straight          curvy
## 3463   31463  38         single female    straight       athletic
## 3464   31464  30         single female    straight           thin
## 3465   31465  59         single female    straight          curvy
## 3466   31466  26         single female    straight   full figured
## 3467   31467  44         single female    straight   full figured
## 3468   31468  36         single female    straight           <NA>
## 3469   31469  32         single female    straight   full figured
## 3470   31470  54         single female    straight a little extra
## 3471   31471  27         single female    straight          curvy
## 3472   31472  28         single female    straight          curvy
## 3473   31473  23         single female    straight           thin
## 3474   31474  42         single female    straight        average
## 3475   31475  31         single female    straight        average
## 3476   31476  29         single female    straight       athletic
## 3477   31477  25         single female    straight          curvy
## 3478   31478  33         single   male    straight       athletic
## 3479   31479  34         single female    straight           thin
## 3480   31480  37         single female    straight          curvy
## 3481   31481  37         single female    straight            fit
## 3482   31482  26         single female    straight        average
## 3483   31483  28         single   male    straight        average
## 3484   31484  42         single female    straight          curvy
## 3485   31485  37         single   male    straight       athletic
## 3486   31486  32         single female    straight           thin
## 3487   31487  41         single   male    straight       athletic
## 3488   31488  32         single female    straight          curvy
## 3489   31489  31         single   male    straight        average
## 3490   31490  34         single   male    straight       athletic
## 3491   31491  35         single female    bisexual           <NA>
## 3492   31492  43         single female    straight           thin
## 3493   31493  19         single female    straight            fit
## 3494   31494  40         single female    straight           thin
## 3495   31495  36         single female    straight        average
## 3496   31496  33         single female    straight   full figured
## 3497   31497  40         single female    straight           <NA>
## 3498   31498  35         single   male    straight          curvy
## 3499   31499  47         single   male    straight        average
## 3500   31500  18         single female    straight          curvy
## 3501   31501  23         single female    straight        average
## 3502   31502  37         single female    straight            fit
## 3503   31503  23         single female    straight           thin
## 3504   31504  28        married female    straight           <NA>
## 3505   31505  41         single female    straight            fit
## 3506   31506  29         single female    straight        average
## 3507   31507  26         single female    straight        average
## 3508   31508  51         single   male    straight        average
## 3509   31509  28         single female    straight        average
## 3510   31510  19         single female    straight   full figured
## 3511   31511  18         single female    straight         skinny
## 3512   31512  39         single female         gay        average
## 3513   31513  55         single female    straight          curvy
## 3514   31514  30         single female    straight           <NA>
## 3515   31515  29         single female    straight          curvy
## 3516   31516  26         single female    straight        average
## 3517   31517  22         single female    bisexual        average
## 3518   31518  22         single   male    straight       athletic
## 3519   31519  36         single female    straight        average
## 3520   31520  26         single   male    straight       athletic
## 3521   31521  27 seeing someone female    straight           <NA>
## 3522   31522  37         single   male         gay        average
## 3523   31523  36         single   male    straight        average
## 3524   31524  18         single   male         gay     overweight
## 3525   31525  30         single   male    straight        average
## 3526   31526  33         single   male    straight       athletic
## 3527   31527  36         single female    straight            fit
## 3528   31528  35         single   male    straight       athletic
## 3529   31529  66        married   male    straight        average
## 3530   31530  27         single female    straight            fit
## 3531   31531  25         single female    straight           <NA>
## 3532   31532  20         single   male    straight       athletic
## 3533   31533  34         single female    straight            fit
## 3534   31534  29         single   male    straight       athletic
## 3535   31535  26         single female    straight        average
## 3536   31536  35         single   male    straight       athletic
## 3537   31537  27         single female    straight          curvy
## 3538   31538  28         single female    straight            fit
## 3539   31539  36         single female    straight            fit
## 3540   31540  37         single   male    straight           thin
## 3541   31541  25         single   male    straight        average
## 3542   31542  30         single   male    straight        average
## 3543   31543  30         single   male    straight            fit
## 3544   31544  27         single female    bisexual           thin
## 3545   31545  24         single female    straight          curvy
## 3546   31546  23 seeing someone   male    straight       athletic
## 3547   31547  36         single   male    straight        average
## 3548   31548  26         single female    straight          curvy
## 3549   31549  32         single   male    straight            fit
## 3550   31550  31         single   male    straight        average
## 3551   31551  30         single   male    straight            fit
## 3552   31552  27         single   male    straight a little extra
## 3553   31553  25         single female    straight          curvy
## 3554   31554  27         single   male    straight        average
## 3555   31555  35         single   male    straight       athletic
## 3556   31556  29         single female    straight            fit
## 3557   31557  25         single   male    straight            fit
## 3558   31558  63         single female    straight           thin
## 3559   31559  21         single   male    straight        average
## 3560   31560  29         single female    straight       athletic
## 3561   31561  23         single female    straight           thin
## 3562   31562  23         single female    straight a little extra
## 3563   31563  28         single female    straight          curvy
## 3564   31564  29         single female         gay          curvy
## 3565   31565  45         single   male    straight           thin
## 3566   31566  22         single female    straight        average
## 3567   31567  35         single female    straight            fit
## 3568   31568  43         single female    straight          curvy
## 3569   31569  23         single   male    straight       athletic
## 3570   31570  28         single female    straight        average
## 3571   31571  38         single   male    straight            fit
## 3572   31572  22         single female    straight        average
## 3573   31573  24         single   male    straight       athletic
## 3574   31574  38         single female    straight        average
## 3575   31575  29         single   male    straight        average
## 3576   31576  40         single female    bisexual          curvy
## 3577   31577  28         single female    straight rather not say
## 3578   31578  65         single female    straight            fit
## 3579   31579  22         single female    straight           <NA>
## 3580   31580  22         single female    straight           <NA>
## 3581   31581  28         single female    straight       athletic
## 3582   31582  32         single female    straight            fit
## 3583   31583  32         single female    straight        average
## 3584   31584  30         single female    straight            fit
## 3585   31585  40         single female    straight       athletic
## 3586   31586  33         single female    straight   full figured
## 3587   31587  46         single female    straight            fit
## 3588   31588  29         single female    straight   full figured
## 3589   31589  24         single female    straight        average
## 3590   31590  24         single female    straight            fit
## 3591   31591  25         single female    straight        average
## 3592   31592  24         single female    straight           <NA>
## 3593   31593  26         single female    straight            fit
## 3594   31594  30         single female    straight           thin
## 3595   31595  29         single female    straight        average
## 3596   31596  25         single female    straight        average
## 3597   31597  31         single female    straight            fit
## 3598   31598  25      available female    straight         skinny
## 3599   31599  31        married female    straight            fit
## 3600   31600  22         single female    straight         skinny
## 3601   31601  24         single female    straight            fit
## 3602   31602  32         single female    straight        average
## 3603   31603  26         single female    straight        average
## 3604   31604  23         single female    straight        average
## 3605   31605  30         single female    straight          curvy
## 3606   31606  36         single female    straight       athletic
## 3607   31607  31         single female    straight         skinny
## 3608   31608  45         single female    straight            fit
## 3609   31609  46         single female    straight           <NA>
## 3610   31610  36         single female    straight        average
## 3611   31611  25         single female    straight          curvy
## 3612   31612  24         single   male    straight        average
## 3613   31613  28         single female    straight a little extra
## 3614   31614  23         single female    straight   full figured
## 3615   31615  63         single female    straight        average
## 3616   31616  29         single female    straight          curvy
## 3617   31617  25         single female         gay           <NA>
## 3618   31618  33         single female    straight           thin
## 3619   31619  39         single female    straight            fit
## 3620   31620  26         single female    straight           <NA>
## 3621   31621  43         single female    straight        average
## 3622   31622  26         single female    straight           thin
## 3623   31623  25         single female    straight           <NA>
## 3624   31624  68         single female    straight            fit
## 3625   31625  53         single female    straight            fit
## 3626   31626  24         single female    straight           <NA>
## 3627   31627  45         single female    straight       athletic
## 3628   31628  32         single female    straight a little extra
## 3629   31629  52         single female    straight        average
## 3630   31630  38         single female    straight         jacked
## 3631   31631  21         single female    straight        average
## 3632   31632  30         single female    straight            fit
## 3633   31633  24         single female    straight        average
## 3634   31634  42         single female    straight         skinny
## 3635   31635  44         single female    bisexual        average
## 3636   31636  27         single female    straight          curvy
## 3637   31637  48         single female    straight        average
## 3638   31638  19         single female    straight           thin
## 3639   31639  23         single female    straight           <NA>
## 3640   31640  34         single female    straight     overweight
## 3641   31641  29         single female    straight           thin
## 3642   31642  25         single female    bisexual           <NA>
## 3643   31643  29         single female    straight   full figured
## 3644   31644  32         single female    straight          curvy
## 3645   31645  29         single female    straight           thin
## 3646   31646  26         single female    straight       athletic
## 3647   31647  27         single female    straight        average
## 3648   31648  34 seeing someone female    straight          curvy
## 3649   31649  29         single female    straight          curvy
## 3650   31650  31         single female    straight        average
## 3651   31651  46         single female    straight            fit
## 3652   31652  60        married female    straight a little extra
## 3653   31653  27         single female    straight            fit
## 3654   31654  42         single female    straight            fit
## 3655   31655  25         single female    straight         skinny
## 3656   31656  23         single female    straight           <NA>
## 3657   31657  50         single female    straight       athletic
## 3658   31658  22         single   male    straight            fit
## 3659   31659  53         single female    straight           <NA>
## 3660   31660  33         single female    straight        average
## 3661   31661  54         single female    straight        average
## 3662   31662  32         single female    straight        average
## 3663   31663  24         single female    straight           <NA>
## 3664   31664  28         single female    straight          curvy
## 3665   31665  29         single female    straight       athletic
## 3666   31666  28         single   male    straight            fit
## 3667   31667  22         single female         gay       athletic
## 3668   31668  25         single female         gay          curvy
## 3669   31669  25         single female    straight         skinny
## 3670   31670  27         single female    straight        average
## 3671   31671  26         single female    straight           <NA>
## 3672   31672  56         single   male    straight            fit
## 3673   31673  28         single   male    straight           <NA>
## 3674   31674  26         single   male         gay       athletic
## 3675   31675  29         single   male    straight       athletic
## 3676   31676  46         single   male    straight a little extra
## 3677   31677  29         single   male         gay       athletic
## 3678   31678  24         single   male    straight       athletic
## 3679   31679  49         single female    straight            fit
## 3680   31680  33         single female    bisexual           <NA>
## 3681   31681  40         single   male    straight       athletic
## 3682   31682  33         single   male    straight            fit
## 3683   31683  35         single   male    straight a little extra
## 3684   31684  43         single female    bisexual a little extra
## 3685   31685  49         single   male    straight           <NA>
## 3686   31686  38         single   male    straight            fit
## 3687   31687  26         single   male    straight        average
## 3688   31688  34         single female    straight           <NA>
## 3689   31689  27      available   male    straight         skinny
## 3690   31690  28         single   male    straight        average
## 3691   31691  35         single   male    straight       athletic
## 3692   31692  31         single   male         gay           thin
## 3693   31693  27 seeing someone   male    straight        average
## 3694   31694  26         single   male         gay            fit
## 3695   31695  52         single   male    straight            fit
## 3696   31696  23      available   male    bisexual        average
## 3697   31697  33         single   male    straight            fit
## 3698   31698  57         single   male    straight       athletic
## 3699   31699  29         single female    straight       athletic
## 3700   31700  25         single   male         gay       athletic
## 3701   31701  64         single female    straight            fit
## 3702   31702  22         single   male    straight        average
## 3703   31703  22         single   male    straight            fit
## 3704   31704  43         single female    straight       athletic
## 3705   31705  39         single   male    straight            fit
## 3706   31706  45         single   male    straight a little extra
## 3707   31707  34         single   male    straight           thin
## 3708   31708  22         single   male    straight            fit
## 3709   31709  22         single   male    straight            fit
## 3710   31710  34         single female    straight            fit
## 3711   31711  38         single   male    straight       athletic
## 3712   31712  26         single   male    straight            fit
## 3713   31713  31         single   male    straight        average
## 3714   31714  30         single   male    straight       athletic
## 3715   31715  41         single female    straight   full figured
## 3716   31716  29         single   male    straight        average
## 3717   31717  31         single   male    straight       athletic
## 3718   31718  37         single   male    straight         skinny
## 3719   31719  31      available   male         gay            fit
## 3720   31720  24         single   male    straight         skinny
## 3721   31721  25         single   male    straight         skinny
## 3722   31722  21         single   male         gay        average
## 3723   31723  29         single   male    straight        average
## 3724   31724  28         single   male    straight            fit
## 3725   31725  21         single   male    straight a little extra
## 3726   31726  19         single   male    straight       athletic
## 3727   31727  27         single   male    straight           thin
## 3728   31728  23         single   male    straight            fit
## 3729   31729  43         single   male    straight            fit
## 3730   31730  41         single   male    straight a little extra
## 3731   31731  41         single   male         gay        average
## 3732   31732  19         single   male         gay           thin
## 3733   31733  23         single   male         gay            fit
## 3734   31734  23         single   male         gay            fit
## 3735   31735  31         single   male    straight a little extra
## 3736   31736  22         single   male    straight       athletic
## 3737   31737  31 seeing someone   male    straight       athletic
## 3738   31738  20         single   male    straight       athletic
## 3739   31739  27         single   male    straight           thin
## 3740   31740  24         single   male    straight           thin
## 3741   31741  22      available   male    straight         skinny
## 3742   31742  30 seeing someone   male    straight           <NA>
## 3743   31743  23         single   male    straight       athletic
## 3744   31744  29      available female    bisexual            fit
## 3745   31745  47         single   male    straight        average
## 3746   31746  27         single female    straight          curvy
## 3747   31747  24         single   male         gay        average
## 3748   31748  45         single   male    straight       athletic
## 3749   31749  33         single female    bisexual          curvy
## 3750   31750  29         single   male    straight        average
## 3751   31751  25         single   male    straight           <NA>
## 3752   31752  23         single   male    straight         jacked
## 3753   31753  26         single   male    straight        average
## 3754   31754  33         single   male    straight        average
## 3755   31755  21         single   male    straight       athletic
## 3756   31756  22         single   male    straight       athletic
## 3757   31757  24         single female    straight        average
## 3758   31758  47         single female    straight       athletic
## 3759   31759  29         single female    bisexual a little extra
## 3760   31760  25         single female         gay          curvy
## 3761   31761  29         single   male    straight           <NA>
## 3762   31762  25         single   male         gay           <NA>
## 3763   31763  24         single female    straight        used up
## 3764   31764  30 seeing someone   male    straight        average
## 3765   31765  31         single   male    straight        average
## 3766   31766  25         single   male    straight       athletic
## 3767   31767  23         single   male         gay        average
## 3768   31768  33         single   male    straight       athletic
## 3769   31769  31         single   male    straight       athletic
## 3770   31770  34 seeing someone female    bisexual        average
## 3771   31771  21         single female    straight           thin
## 3772   31772  31      available   male    straight       athletic
## 3773   31773  27         single   male    straight       athletic
## 3774   31774  29         single   male    straight        average
## 3775   31775  27         single   male    straight       athletic
## 3776   31776  33         single   male    straight            fit
## 3777   31777  28         single   male    straight            fit
## 3778   31778  25         single   male    straight     overweight
## 3779   31779  25         single   male    straight            fit
## 3780   31780  28         single   male    straight            fit
## 3781   31781  21         single female    straight   full figured
## 3782   31782  27         single   male         gay            fit
## 3783   31783  31         single   male    straight           thin
## 3784   31784  25         single   male    straight         jacked
## 3785   31785  32         single   male    straight            fit
## 3786   31786  30         single   male    straight a little extra
## 3787   31787  28         single   male         gay       athletic
## 3788   31788  34         single female    straight       athletic
## 3789   31789  37         single female    straight   full figured
## 3790   31790  25         single   male    straight       athletic
## 3791   31791  26         single   male    straight        average
## 3792   31792  46         single   male         gay       athletic
## 3793   31793  46         single female    straight            fit
## 3794   31794  40         single female    straight        average
## 3795   31795  28 seeing someone female         gay         jacked
## 3796   31796  28         single   male    straight           <NA>
## 3797   31797  27         single   male    straight         jacked
## 3798   31798  35         single   male    straight       athletic
## 3799   31799  20 seeing someone female         gay           thin
## 3800   31800  36      available   male    straight            fit
## 3801   31801  25         single   male    straight       athletic
## 3802   31802  33         single female    straight        average
## 3803   31803  26         single   male    straight       athletic
## 3804   31804  33         single female    straight       athletic
## 3805   31805  30         single female    straight           <NA>
## 3806   31806  65         single female    straight        average
## 3807   31807  24 seeing someone female    straight            fit
## 3808   31808  24         single female    straight          curvy
## 3809   31809  25      available female    bisexual           <NA>
## 3810   31810  25         single female    straight            fit
## 3811   31811  27         single female    straight            fit
## 3812   31812  29         single female    straight        average
## 3813   31813  29         single   male    straight            fit
## 3814   31814  38         single   male    straight       athletic
## 3815   31815  26         single   male    straight       athletic
## 3816   31816  27 seeing someone female    straight            fit
## 3817   31817  23         single female    straight        average
## 3818   31818  24         single   male    straight        average
## 3819   31819  18         single   male    straight           thin
## 3820   31820  40         single female    straight          curvy
## 3821   31821  46      available   male         gay         skinny
## 3822   31822  31         single female    straight       athletic
## 3823   31823  37         single female    straight        average
## 3824   31824  25         single   male         gay        average
## 3825   31825  23         single female    straight          curvy
## 3826   31826  27         single female    straight       athletic
## 3827   31827  25         single   male    straight        average
## 3828   31828  21         single female    straight          curvy
## 3829   31829  22         single female    straight         jacked
## 3830   31830  28         single female    straight            fit
## 3831   31831  24         single   male    straight           thin
## 3832   31832  31         single   male    straight        average
## 3833   31833  22         single female    straight           thin
## 3834   31834  32         single female    straight        average
## 3835   31835  50         single   male    straight            fit
## 3836   31836  27         single   male    straight            fit
## 3837   31837  23         single female    straight            fit
## 3838   31838  30        married   male         gay     overweight
## 3839   31839  41         single   male         gay         skinny
## 3840   31840  27         single   male    straight       athletic
## 3841   31841  63      available female    straight        average
## 3842   31842  35         single   male    straight        average
## 3843   31843  25         single   male    straight       athletic
## 3844   31844  24         single   male    straight       athletic
## 3845   31845  24         single   male    straight       athletic
## 3846   31846  25         single female    straight          curvy
## 3847   31847  26         single   male    straight            fit
## 3848   31848  22         single   male    straight        average
## 3849   31849  53         single   male    straight           <NA>
## 3850   31850  31         single   male    straight        average
## 3851   31851  23         single   male    straight        average
## 3852   31852  22         single female    straight        average
## 3853   31853  36         single female    straight           <NA>
## 3854   31854  25         single   male    bisexual            fit
## 3855   31855  32         single   male    straight       athletic
## 3856   31856  31         single female    straight           <NA>
## 3857   31857  29         single   male    straight       athletic
## 3858   31858  27         single female    straight           thin
## 3859   31859  42         single   male    straight            fit
## 3860   31860  34         single   male    straight           <NA>
## 3861   31861  26         single   male    straight            fit
## 3862   31862  35         single   male         gay           thin
## 3863   31863  32         single   male    straight        average
## 3864   31864  29         single   male    straight           <NA>
## 3865   31865  23         single   male    straight            fit
## 3866   31866  33         single female    straight       athletic
## 3867   31867  24         single   male    straight         skinny
## 3868   31868  22         single   male    straight           thin
## 3869   31869  37         single female    straight          curvy
## 3870   31870  35         single   male         gay            fit
## 3871   31871  31         single   male    straight        average
## 3872   31872  32         single   male    straight        average
## 3873   31873  32         single female    straight            fit
## 3874   31874  56         single female    straight           thin
## 3875   31875  28         single   male    straight           thin
## 3876   31876  27         single   male    straight            fit
## 3877   31877  32         single   male    straight        average
## 3878   31878  22         single   male    straight       athletic
## 3879   31879  28         single   male         gay        average
## 3880   31880  29         single   male    straight            fit
## 3881   31881  33         single   male    straight        average
## 3882   31882  36      available   male    straight       athletic
## 3883   31883  32         single   male    straight       athletic
## 3884   31884  23         single   male    straight           <NA>
## 3885   31885  40         single   male    straight            fit
## 3886   31886  41         single   male    straight           <NA>
## 3887   31887  49         single   male    straight           <NA>
## 3888   31888  23         single   male    straight        average
## 3889   31889  34         single female    straight       athletic
## 3890   31890  29         single   male    straight            fit
## 3891   31891  28         single   male    straight           <NA>
## 3892   31892  36         single   male    straight a little extra
## 3893   31893  26         single female    straight           <NA>
## 3894   31894  39         single female    straight a little extra
## 3895   31895  20         single   male         gay            fit
## 3896   31896  30         single   male    straight            fit
## 3897   31897  38         single female    straight        average
## 3898   31898  28         single   male    straight a little extra
## 3899   31899  22         single   male    straight       athletic
## 3900   31900  26         single female    straight        average
## 3901   31901  23         single female    straight a little extra
## 3902   31902  32         single   male         gay           thin
## 3903   31903  30         single   male    straight           <NA>
## 3904   31904  28 seeing someone   male    bisexual            fit
## 3905   31905  25         single female    straight           thin
## 3906   31906  32         single female    straight            fit
## 3907   31907  28         single female    straight           <NA>
## 3908   31908  30         single   male    straight        average
## 3909   31909  24         single   male    straight        average
## 3910   31910  25         single   male    straight       athletic
## 3911   31911  22         single   male    straight           thin
## 3912   31912  26         single   male    straight       athletic
## 3913   31913  25         single female    straight        average
## 3914   31914  26         single female    straight       athletic
## 3915   31915  49         single female    straight       athletic
## 3916   31916  40         single female    straight            fit
## 3917   31917  35         single female    straight         jacked
## 3918   31918  27      available female    bisexual        average
## 3919   31919  47         single female    straight           thin
## 3920   31920  42         single female    straight        average
## 3921   31921  43         single female    straight           thin
## 3922   31922  35         single female    straight          curvy
## 3923   31923  42         single female    straight          curvy
## 3924   31924  34         single female    straight         skinny
## 3925   31925  24         single   male         gay           <NA>
## 3926   31926  43         single   male    straight           <NA>
## 3927   31927  26         single   male    straight       athletic
## 3928   31928  34         single   male         gay        average
## 3929   31929  41         single female    straight           <NA>
## 3930   31930  31         single female    straight        average
## 3931   31931  27         single   male    straight        used up
## 3932   31932  67         single   male    straight        average
## 3933   31933  21         single   male         gay            fit
## 3934   31934  44         single female    straight            fit
## 3935   31935  34         single female    straight           <NA>
## 3936   31936  26         single   male    straight        average
## 3937   31937  46         single female         gay           <NA>
## 3938   31938  52         single female    straight        average
## 3939   31939  51         single   male    straight            fit
## 3940   31940  42         single female    straight        average
## 3941   31941  34         single female    straight           <NA>
## 3942   31942  37         single female    straight          curvy
## 3943   31943  37         single female    straight            fit
## 3944   31944  24         single female    straight            fit
## 3945   31945  24         single   male    bisexual a little extra
## 3946   31946  22         single   male         gay       athletic
## 3947   31947  27         single   male    straight            fit
## 3948   31948  36         single   male    straight         skinny
## 3949   31949  26      available   male    straight       athletic
## 3950   31950  30         single female    straight       athletic
## 3951   31951  25         single   male    straight        average
## 3952   31952  24         single   male         gay            fit
## 3953   31953  40         single   male    straight       athletic
## 3954   31954  30         single   male    straight            fit
## 3955   31955  31         single female    straight           thin
## 3956   31956  34         single female    straight           thin
## 3957   31957  41         single female    straight            fit
## 3958   31958  28         single female    straight       athletic
## 3959   31959  37         single   male    straight       athletic
## 3960   31960  21         single   male    straight       athletic
## 3961   31961  30         single female         gay           <NA>
## 3962   31962  32         single female    straight           <NA>
## 3963   31963  21         single   male         gay         skinny
## 3964   31964  32      available female    straight          curvy
## 3965   31965  35         single female    straight       athletic
## 3966   31966  29         single female    bisexual           <NA>
## 3967   31967  25         single   male    straight       athletic
## 3968   31968  28         single   male    straight        average
## 3969   31969  28         single   male    straight           <NA>
## 3970   31970  39         single   male    straight        average
## 3971   31971  36         single   male    straight       athletic
## 3972   31972  31         single   male    straight            fit
## 3973   31973  31         single   male    straight        average
## 3974   31974  25         single   male    straight        average
## 3975   31975  22         single   male    straight        average
## 3976   31976  23         single   male    straight            fit
## 3977   31977  36         single   male    straight            fit
## 3978   31978  32 seeing someone   male    straight            fit
## 3979   31979  21 seeing someone female    straight           thin
## 3980   31980  39         single   male         gay a little extra
## 3981   31981  28         single   male    straight            fit
## 3982   31982  52         single   male    straight       athletic
## 3983   31983  33         single   male    straight           thin
## 3984   31984  30         single   male    straight        average
## 3985   31985  27         single   male    straight       athletic
## 3986   31986  44         single   male    straight       athletic
## 3987   31987  32         single   male    straight       athletic
## 3988   31988  33         single   male    straight        average
## 3989   31989  30         single   male         gay        average
## 3990   31990  43         single   male    straight       athletic
## 3991   31991  25         single female    straight        average
## 3992   31992  47         single   male    straight            fit
## 3993   31993  34         single   male    straight        average
## 3994   31994  32        married female    bisexual         skinny
## 3995   31995  27         single   male    straight            fit
## 3996   31996  25         single female    straight            fit
## 3997   31997  26         single   male         gay           thin
## 3998   31998  32         single female    straight           <NA>
## 3999   31999  34         single   male    straight            fit
## 4000   32000  29         single   male    straight            fit
## 4001   32001  45         single   male    straight       athletic
## 4002   32002  62         single   male    straight        average
## 4003   32003  31         single   male    straight       athletic
## 4004   32004  43      available   male    straight            fit
## 4005   32005  33         single   male    straight       athletic
## 4006   32006  68         single   male    straight            fit
## 4007   32007  28         single   male         gay a little extra
## 4008   32008  32         single   male    straight           <NA>
## 4009   32009  26         single   male    straight       athletic
## 4010   32010  34         single   male         gay        average
## 4011   32011  65         single   male    straight           thin
## 4012   32012  61         single female    straight        average
## 4013   32013  24         single   male    straight        average
## 4014   32014  31         single   male    straight       athletic
## 4015   32015  36         single   male         gay        average
## 4016   32016  38         single female    straight            fit
## 4017   32017  28 seeing someone   male         gay            fit
## 4018   32018  30         single   male    straight            fit
## 4019   32019  21         single female         gay           <NA>
## 4020   32020  29         single female    straight            fit
## 4021   32021  51         single   male         gay a little extra
## 4022   32022  31         single   male    straight rather not say
## 4023   32023  29         single   male    straight        average
## 4024   32024  26         single   male    straight        average
## 4025   32025  41         single female    straight       athletic
## 4026   32026  32 seeing someone   male    straight        average
## 4027   32027  23         single   male    straight        average
## 4028   32028  23         single female    straight          curvy
## 4029   32029  25         single   male    straight            fit
## 4030   32030  24         single female    straight       athletic
## 4031   32031  34         single   male    straight           <NA>
## 4032   32032  35         single   male    straight        average
## 4033   32033  28         single   male    straight     overweight
## 4034   32034  30         single female    straight            fit
## 4035   32035  23         single female    straight        average
## 4036   32036  69         single   male         gay        average
## 4037   32037  29         single female    straight          curvy
## 4038   32038  46         single   male    straight            fit
## 4039   32039  23         single female    straight           thin
## 4040   32040  18         single female    straight        average
## 4041   32041  32         single   male    straight        average
## 4042   32042  42         single   male    straight            fit
## 4043   32043  65         single female    straight           thin
## 4044   32044  40         single   male    straight            fit
## 4045   32045  41         single female    straight          curvy
## 4046   32046  37         single female         gay          curvy
## 4047   32047  30         single   male         gay            fit
## 4048   32048  35         single   male    straight            fit
## 4049   32049  21         single female         gay        average
## 4050   32050  32         single female    straight       athletic
## 4051   32051  26         single female    straight       athletic
## 4052   32052  31         single   male    straight        average
## 4053   32053  24         single   male    straight        average
## 4054   32054  26         single   male    straight rather not say
## 4055   32055  28         single female    straight        average
## 4056   32056  29      available   male    straight           <NA>
## 4057   32057  27         single female    straight          curvy
## 4058   32058  29         single female    straight            fit
## 4059   32059  30         single female    straight   full figured
## 4060   32060  21         single female    straight        average
## 4061   32061  22         single female    straight        average
## 4062   32062  20         single female    straight          curvy
## 4063   32063  32      available female    bisexual            fit
## 4064   32064  20      available female    bisexual            fit
## 4065   32065  34         single female    straight        average
## 4066   32066  23         single female    straight           thin
## 4067   32067  25         single   male    straight        average
## 4068   32068  22         single   male    straight        average
## 4069   32069  25         single   male         gay           thin
## 4070   32070  24         single   male    straight       athletic
## 4071   32071  38         single   male    straight        average
## 4072   32072  39         single   male    straight            fit
## 4073   32073  21         single female    straight          curvy
## 4074   32074  35         single   male         gay        average
## 4075   32075  23         single female    straight           thin
## 4076   32076  22         single female    straight        average
## 4077   32077  23         single female    straight       athletic
## 4078   32078  40         single female    straight a little extra
## 4079   32079  25         single female    straight            fit
## 4080   32080  31         single female    straight            fit
## 4081   32081  22         single female    straight           thin
## 4082   32082  33         single female    bisexual        average
## 4083   32083  25         single   male         gay            fit
## 4084   32084  32         single female         gay       athletic
## 4085   32085  36         single   male    straight       athletic
## 4086   32086  37         single female    straight        average
## 4087   32087  32         single female    straight       athletic
## 4088   32088  24         single female    straight   full figured
## 4089   32089  30      available   male         gay       athletic
## 4090   32090  32         single   male    straight       athletic
## 4091   32091  32         single   male    straight           <NA>
## 4092   32092  28         single   male         gay           <NA>
## 4093   32093  24         single   male    straight       athletic
## 4094   32094  22         single   male    straight       athletic
## 4095   32095  48         single   male    straight        average
## 4096   32096  25      available   male    straight         skinny
## 4097   32097  32        married female    straight        average
## 4098   32098  27         single   male    straight            fit
## 4099   32099  31         single   male    straight       athletic
## 4100   32100  27         single   male    straight           <NA>
## 4101   32101  35 seeing someone female    bisexual            fit
## 4102   32102  27         single   male    straight            fit
## 4103   32103  20         single   male    straight        average
## 4104   32104  24         single   male    straight            fit
## 4105   32105  31         single   male    straight a little extra
## 4106   32106  28         single   male    straight        average
## 4107   32107  33         single   male    straight            fit
## 4108   32108  22         single   male         gay         skinny
## 4109   32109  34         single   male    straight            fit
## 4110   32110  27         single female    straight          curvy
## 4111   32111  30         single   male    straight        average
## 4112   32112  23         single female    straight        average
## 4113   32113  30      available   male    straight        average
## 4114   32114  39         single   male         gay        average
## 4115   32115  36         single female    straight        average
## 4116   32116  28         single   male    straight           <NA>
## 4117   32117  25         single female    straight        average
## 4118   32118  31 seeing someone female    straight          curvy
## 4119   32119  32         single   male    straight           thin
## 4120   32120  23         single   male    straight a little extra
## 4121   32121  23         single female    straight rather not say
## 4122   32122  26         single   male    straight        average
## 4123   32123  41         single   male    straight            fit
## 4124   32124  23         single   male    straight        average
## 4125   32125  27         single female    straight        average
## 4126   32126  48         single female    straight           <NA>
## 4127   32127  21         single   male    straight        average
## 4128   32128  25         single   male    straight            fit
## 4129   32129  23         single   male         gay        average
## 4130   32130  27         single   male    straight        average
## 4131   32131  27         single   male    straight         skinny
## 4132   32132  25         single   male    straight       athletic
## 4133   32133  29         single   male    straight           thin
## 4134   32134  30         single   male    straight        average
## 4135   32135  32         single   male    straight            fit
## 4136   32136  23         single female    straight           <NA>
## 4137   32137  24         single   male         gay        average
## 4138   32138  28         single female    straight            fit
## 4139   32139  29         single   male    straight       athletic
## 4140   32140  68         single female    straight       athletic
## 4141   32141  32         single   male    straight            fit
## 4142   32142  29         single   male    straight       athletic
## 4143   32143  24         single   male    straight       athletic
## 4144   32144  20         single female    straight          curvy
## 4145   32145  20         single   male    straight           thin
## 4146   32146  23         single female    straight          curvy
## 4147   32147  23         single female    straight          curvy
## 4148   32148  19         single female    straight          curvy
## 4149   32149  43         single   male         gay        average
## 4150   32150  37         single female    straight            fit
## 4151   32151  29         single   male    straight        average
## 4152   32152  29         single   male    straight            fit
## 4153   32153  41         single female    straight          curvy
## 4154   32154  26         single   male    straight        average
## 4155   32155  23         single   male    straight            fit
## 4156   32156  37         single   male    straight            fit
## 4157   32157  31         single female    straight            fit
## 4158   32158  33         single female    straight           <NA>
## 4159   32159  31         single female    straight        average
## 4160   32160  57         single female    straight        average
## 4161   32161  33         single female    straight        average
## 4162   32162  38         single   male    straight            fit
## 4163   32163  51      available female    straight        average
## 4164   32164  37         single   male    straight        average
## 4165   32165  37         single   male    straight            fit
## 4166   32166  34      available female    straight       athletic
##                     diet      drinks     drugs          education
## 1      strictly anything    socially     never            working
## 2           mostly other       often sometimes            working
## 3               anything    socially      <NA>          graduated
## 4             vegetarian    socially      <NA>            working
## 5                   <NA>    socially     never          graduated
## 6        mostly anything    socially      <NA>          graduated
## 7      strictly anything    socially     never          graduated
## 8        mostly anything    socially     never          graduated
## 9      strictly anything    socially      <NA>          graduated
## 10       mostly anything  not at all     never            working
## 11       mostly anything    socially      <NA>               <NA>
## 12       mostly anything    socially     never          graduated
## 13                  <NA>       often      <NA>               <NA>
## 14       mostly anything    socially     never          graduated
## 15       mostly anything    socially     never            working
## 16     strictly anything    socially      <NA>          graduated
## 17                  <NA>    socially      <NA>            working
## 18                  <NA>    socially     never            working
## 19     mostly vegetarian      rarely     never          graduated
## 20       mostly anything    socially     never          graduated
## 21       mostly anything    socially     never          graduated
## 22                  <NA>    socially     never            working
## 23       mostly anything    socially     never          graduated
## 24        strictly vegan  not at all     never          graduated
## 25     strictly anything    socially sometimes          graduated
## 26              anything      rarely     never          graduated
## 27       mostly anything    socially     never            working
## 28              anything    socially     never               <NA>
## 29                  <NA>    socially      <NA>          graduated
## 30                  <NA>    socially sometimes          graduated
## 31              anything    socially      <NA>            working
## 32              anything    socially     never          graduated
## 33       mostly anything    socially     never          graduated
## 34     mostly vegetarian    socially     never            working
## 35     strictly anything    socially     never          graduated
## 36                  <NA>        <NA>     never               <NA>
## 37       mostly anything    socially     never          graduated
## 38       mostly anything    socially      <NA>            working
## 39                  <NA>    socially      <NA>               <NA>
## 40                  <NA>    socially      <NA>          graduated
## 41                  <NA>       often     never          graduated
## 42     strictly anything        <NA>      <NA>          graduated
## 43     strictly anything       often sometimes          graduated
## 44                  <NA>    socially      <NA>          graduated
## 45              anything    socially sometimes          graduated
## 46       mostly anything    socially     never college/university
## 47       mostly anything    socially      <NA>          graduated
## 48              anything       often sometimes               <NA>
## 49     strictly anything    socially sometimes            dropped
## 50       mostly anything    socially     never          graduated
## 51                  <NA>       often sometimes          graduated
## 52              anything    socially     never          graduated
## 53       mostly anything    socially      <NA>          graduated
## 54                  <NA>    socially      <NA>          graduated
## 55       mostly anything      rarely     never          graduated
## 56              anything    socially     never          graduated
## 57              anything    socially      <NA>            working
## 58                  <NA>    socially      <NA>            working
## 59                  <NA>    socially sometimes            working
## 60                  <NA>    socially      <NA>          graduated
## 61       mostly anything    socially     never            working
## 62     mostly vegetarian    socially      <NA>               <NA>
## 63     strictly anything    socially sometimes          graduated
## 64     mostly vegetarian    socially      <NA>            working
## 65              anything    socially     never          graduated
## 66     mostly vegetarian    socially     never          graduated
## 67       mostly anything      rarely     never            working
## 68                  <NA>      rarely sometimes            working
## 69     strictly anything    socially      <NA>               <NA>
## 70                  <NA>    socially sometimes            working
## 71                  <NA>      rarely     never          graduated
## 72       mostly anything    socially      <NA>          graduated
## 73       mostly anything    socially sometimes          graduated
## 74       mostly anything    socially     never          graduated
## 75     strictly anything        <NA>      <NA>          graduated
## 76   strictly vegetarian    socially      <NA>          graduated
## 77       mostly anything       often sometimes            working
## 78                  <NA>    socially     never            working
## 79       mostly anything    socially     never          graduated
## 80       mostly anything      rarely     never            working
## 81                  <NA>       often     never          graduated
## 82       mostly anything    socially     never          graduated
## 83              anything    socially     never          graduated
## 84                  <NA>    socially     never          graduated
## 85                  <NA>    socially     never          graduated
## 86                  <NA>    socially      <NA>          graduated
## 87              anything    socially      <NA> college/university
## 88       mostly anything       often     never          graduated
## 89                  <NA>    socially     never           two-year
## 90       mostly anything    socially     never          graduated
## 91              anything    socially     never          graduated
## 92                  <NA>        <NA>      <NA>          graduated
## 93                  <NA>        <NA> sometimes          graduated
## 94     mostly vegetarian    socially      <NA>          graduated
## 95       mostly anything    socially sometimes          graduated
## 96       mostly anything    socially      <NA>          graduated
## 97          mostly other  very often      <NA>            dropped
## 98                  <NA>    socially     never          graduated
## 99              anything    socially sometimes          graduated
## 100      mostly anything    socially     never               <NA>
## 101                 <NA>    socially      <NA>            working
## 102    strictly anything    socially     never          graduated
## 103      mostly anything    socially     often            working
## 104         mostly other    socially sometimes               <NA>
## 105             anything    socially     never          graduated
## 106      mostly anything    socially     never          graduated
## 107      mostly anything    socially     never          graduated
## 108      mostly anything      rarely     never            working
## 109                 <NA>    socially     never          graduated
## 110    strictly anything    socially     never          graduated
## 111                 <NA>    socially      <NA>          graduated
## 112                 <NA>    socially      <NA>          graduated
## 113                 <NA>    socially      <NA>               <NA>
## 114      mostly anything      rarely     never            working
## 115    strictly anything       often sometimes          graduated
## 116                 <NA>    socially     never               <NA>
## 117                 <NA>        <NA>     never               <NA>
## 118                 <NA>  not at all     never            dropped
## 119    mostly vegetarian  not at all     never            working
## 120      mostly anything    socially      <NA>            working
## 121                 <NA>    socially     never          graduated
## 122      mostly anything    socially     never          graduated
## 123             anything    socially sometimes          graduated
## 124    strictly anything    socially     often            working
## 125      mostly anything    socially     never          graduated
## 126                 <NA>    socially      <NA>          graduated
## 127                 <NA>    socially     never          graduated
## 128    strictly anything    socially      <NA>          graduated
## 129                 <NA>       often     never            dropped
## 130                 <NA>      rarely      <NA>          graduated
## 131                 <NA>    socially sometimes            dropped
## 132    mostly vegetarian    socially     never            working
## 133    mostly vegetarian    socially      <NA>          graduated
## 134             anything      rarely     never          graduated
## 135    strictly anything    socially     never            working
## 136                 <NA>        <NA>     never          graduated
## 137         mostly vegan    socially      <NA>            working
## 138      mostly anything       often     never college/university
## 139                 <NA>  not at all     never          graduated
## 140                 <NA>      rarely     never            working
## 141             anything    socially     never          graduated
## 142             anything    socially     never          graduated
## 143             anything       often sometimes          graduated
## 144                 <NA>    socially      <NA> college/university
## 145      mostly anything    socially      <NA>          graduated
## 146                 <NA>    socially     never          graduated
## 147                 <NA> desperately     often               <NA>
## 148                 <NA>    socially     never college/university
## 149                 <NA>    socially     never          graduated
## 150                 <NA>    socially      <NA> college/university
## 151    mostly vegetarian    socially      <NA>          graduated
## 152                 <NA>    socially      <NA>          graduated
## 153      mostly anything        <NA>      <NA>          graduated
## 154                 <NA>    socially sometimes          graduated
## 155    strictly anything  not at all     never          graduated
## 156      mostly anything    socially     never          graduated
## 157                 <NA>    socially     never           two-year
## 158           vegetarian    socially     never          graduated
## 159      mostly anything    socially     never          graduated
## 160                 <NA>    socially     never            working
## 161                 <NA>    socially      <NA>              space
## 162                 <NA>    socially     never          graduated
## 163                 <NA>    socially      <NA>          graduated
## 164                 <NA>    socially      <NA>          graduated
## 165             anything      rarely     never            working
## 166                 <NA>        <NA>      <NA>               <NA>
## 167      mostly anything    socially      <NA>          graduated
## 168      mostly anything    socially     never            working
## 169      mostly anything    socially     never          graduated
## 170             anything      rarely     never          graduated
## 171                 <NA>    socially     never          graduated
## 172       strictly other      rarely      <NA>               <NA>
## 173             anything    socially     never          graduated
## 174                 <NA>    socially     never          graduated
## 175                 <NA>    socially     never               <NA>
## 176                 <NA>    socially     never               <NA>
## 177      mostly anything    socially     never          graduated
## 178         mostly halal       often     never            dropped
## 179  strictly vegetarian        <NA>      <NA>          graduated
## 180      mostly anything       often sometimes            dropped
## 181      mostly anything    socially     never          graduated
## 182      mostly anything    socially     never            working
## 183             anything       often     never          graduated
## 184      mostly anything  not at all      <NA>          graduated
## 185                 <NA>  not at all     never          graduated
## 186                 <NA>      rarely     never          graduated
## 187                 <NA>       often     never          graduated
## 188      mostly anything    socially     never            working
## 189      mostly anything      rarely     never          graduated
## 190      mostly anything  not at all     never          graduated
## 191    mostly vegetarian      rarely     never            working
## 192                 <NA>    socially     never          graduated
## 193                 <NA>       often sometimes          graduated
## 194  strictly vegetarian    socially      <NA>          graduated
## 195             anything    socially     never          graduated
## 196      mostly anything    socially     never          graduated
## 197      mostly anything    socially sometimes          graduated
## 198             anything    socially      <NA>          graduated
## 199                 <NA>        <NA>     never               <NA>
## 200                 <NA>      rarely     never college/university
## 201             anything    socially     never          graduated
## 202      mostly anything    socially     never          graduated
## 203             anything    socially     never          graduated
## 204    strictly anything    socially     never            working
## 205                 <NA>    socially     never          graduated
## 206    strictly anything    socially     never          graduated
## 207             anything    socially      <NA>               <NA>
## 208      mostly anything       often     never          graduated
## 209                 <NA>        <NA> sometimes            working
## 210      mostly anything    socially     never            working
## 211      mostly anything    socially     never          graduated
## 212      mostly anything      rarely     never          graduated
## 213             anything        <NA>     never          graduated
## 214                 <NA>    socially      <NA>          graduated
## 215    mostly vegetarian    socially     never          graduated
## 216                 <NA>  not at all     never          graduated
## 217                 <NA>       often sometimes          graduated
## 218    strictly anything    socially     never          graduated
## 219      mostly anything    socially sometimes          graduated
## 220                 <NA>    socially     never          graduated
## 221      mostly anything  not at all     never               <NA>
## 222                 <NA>    socially     never          graduated
## 223                 <NA>    socially     never           two-year
## 224             anything    socially     never            working
## 225                 <NA>       often sometimes            working
## 226    strictly anything    socially     never               <NA>
## 227                 <NA>  not at all     never          graduated
## 228                 <NA>  not at all     never          graduated
## 229      mostly anything    socially      <NA>          graduated
## 230      mostly anything      rarely     never          graduated
## 231                 <NA>        <NA>      <NA>               <NA>
## 232      mostly anything    socially     never           two-year
## 233                 <NA>    socially      <NA>          graduated
## 234      mostly anything    socially     never          graduated
## 235    strictly anything    socially      <NA>          graduated
## 236                 <NA>        <NA>      <NA>               <NA>
## 237                 <NA>    socially sometimes          graduated
## 238      mostly anything    socially     never               <NA>
## 239  strictly vegetarian    socially     never          graduated
## 240                 <NA>    socially sometimes            working
## 241         mostly other      rarely     never          graduated
## 242                 <NA>    socially     never               <NA>
## 243      mostly anything    socially     never          graduated
## 244         mostly other    socially     never           two-year
## 245                 <NA>       often sometimes          graduated
## 246                 <NA>      rarely     never          graduated
## 247      mostly anything    socially sometimes          graduated
## 248                 <NA>    socially     never            working
## 249                 <NA>    socially     never               <NA>
## 250      mostly anything    socially     never          graduated
## 251                 <NA>        <NA>      <NA>               <NA>
## 252             anything    socially     never          graduated
## 253                 <NA>        <NA>     never          graduated
## 254             anything       often sometimes          graduated
## 255                 <NA>    socially sometimes               <NA>
## 256    strictly anything    socially     never          graduated
## 257                 <NA>        <NA>     never               <NA>
## 258                 <NA>    socially     never            masters
## 259             anything    socially     never               <NA>
## 260                 <NA>    socially     never            working
## 261      mostly anything    socially     never          graduated
## 262                 <NA>    socially     never          graduated
## 263                 <NA>    socially     never          graduated
## 264      mostly anything    socially     never               <NA>
## 265      mostly anything      rarely     never          graduated
## 266      mostly anything    socially     never          graduated
## 267                other      rarely     never           two-year
## 268    mostly vegetarian      rarely     never          graduated
## 269                 <NA>    socially     never               <NA>
## 270                 <NA>    socially     never          graduated
## 271      mostly anything    socially      <NA>          graduated
## 272                 <NA>    socially sometimes          graduated
## 273      mostly anything  not at all     never          graduated
## 274                 <NA>    socially     never          graduated
## 275                 <NA>       often sometimes          graduated
## 276    strictly anything    socially      <NA>          graduated
## 277                 <NA>        <NA>      <NA>               <NA>
## 278      mostly anything    socially      <NA>          graduated
## 279    strictly anything      rarely sometimes          graduated
## 280                 <NA>        <NA>     never               <NA>
## 281    strictly anything      rarely     never          graduated
## 282         mostly other    socially     never          graduated
## 283                 <NA>    socially      <NA>          graduated
## 284      mostly anything      rarely     never          graduated
## 285                 <NA>    socially     never               <NA>
## 286                 <NA>  not at all     never          graduated
## 287                 <NA>    socially     never          graduated
## 288    mostly vegetarian    socially sometimes          graduated
## 289                 <NA>    socially     never          graduated
## 290                 <NA> desperately sometimes               <NA>
## 291       strictly other    socially      <NA>            working
## 292                 <NA>        <NA>      <NA>          graduated
## 293    mostly vegetarian    socially sometimes          graduated
## 294      mostly anything    socially     never          graduated
## 295                 <NA>    socially sometimes               <NA>
## 296      mostly anything  not at all     never               <NA>
## 297      mostly anything    socially     never          graduated
## 298             anything    socially     never          graduated
## 299    mostly vegetarian    socially     never          graduated
## 300                 <NA>    socially      <NA>          graduated
## 301      mostly anything  not at all     never            dropped
## 302             anything    socially sometimes college/university
## 303    strictly anything       often sometimes          graduated
## 304                 <NA>    socially sometimes          graduated
## 305      mostly anything    socially     never          graduated
## 306      mostly anything    socially      <NA>          graduated
## 307      mostly anything    socially     never          graduated
## 308             anything    socially      <NA>          graduated
## 309       strictly other    socially sometimes          graduated
## 310    strictly anything    socially     never          graduated
## 311      mostly anything    socially     never          graduated
## 312                 <NA>    socially     never          graduated
## 313                 <NA>    socially     never          graduated
## 314    mostly vegetarian  not at all     never          graduated
## 315                 <NA>    socially     never          graduated
## 316             anything  not at all     never          graduated
## 317      mostly anything    socially     never          graduated
## 318    mostly vegetarian    socially     never            working
## 319                 <NA>  not at all     never               <NA>
## 320                 <NA>    socially     never          graduated
## 321                 <NA>    socially sometimes          graduated
## 322  strictly vegetarian    socially     never          graduated
## 323    mostly vegetarian    socially sometimes            working
## 324             anything    socially     never          graduated
## 325      mostly anything    socially     never          graduated
## 326    strictly anything    socially      <NA>          graduated
## 327           vegetarian    socially     never          graduated
## 328      mostly anything  not at all     never          graduated
## 329      mostly anything    socially     never            dropped
## 330                 <NA>      rarely     never          graduated
## 331      mostly anything    socially     never          graduated
## 332                 <NA>    socially      <NA>          graduated
## 333    strictly anything    socially sometimes               <NA>
## 334                 <NA>  not at all     never            working
## 335    strictly anything    socially     never          graduated
## 336      mostly anything    socially     never            dropped
## 337                 <NA>    socially     never               <NA>
## 338                 <NA>    socially     never          graduated
## 339             anything    socially     never          graduated
## 340      mostly anything    socially      <NA>          graduated
## 341           vegetarian    socially      <NA>          graduated
## 342    strictly anything    socially     never          graduated
## 343      mostly anything    socially     never          graduated
## 344                 <NA>    socially      <NA>            working
## 345      mostly anything    socially sometimes            working
## 346      mostly anything    socially      <NA>          graduated
## 347    strictly anything    socially     never               <NA>
## 348             anything  not at all     never            working
## 349             anything  not at all     never          graduated
## 350                 <NA>  not at all     never          graduated
## 351    strictly anything        <NA>      <NA>          graduated
## 352                 <NA>    socially     never          graduated
## 353                 <NA>      rarely      <NA>          graduated
## 354                 <NA>    socially     never            working
## 355      mostly anything      rarely     never          graduated
## 356                 <NA>    socially     never               <NA>
## 357    mostly vegetarian    socially     never          graduated
## 358                 <NA>    socially      <NA>          graduated
## 359      mostly anything    socially     never          graduated
## 360                 <NA>       often      <NA>          graduated
## 361    mostly vegetarian    socially sometimes               <NA>
## 362    strictly anything       often sometimes          graduated
## 363    strictly anything    socially     never          graduated
## 364                 <NA>    socially     never               <NA>
## 365                 <NA>    socially     never          graduated
## 366      mostly anything      rarely     never            dropped
## 367      mostly anything      rarely     never          graduated
## 368                 <NA>    socially     never          graduated
## 369                 <NA>        <NA>      <NA>          graduated
## 370      mostly anything      rarely     never          graduated
## 371                 <NA>        <NA>     never          graduated
## 372                 <NA>    socially     never            working
## 373                vegan    socially     never          graduated
## 374                 <NA>        <NA>      <NA>          graduated
## 375      mostly anything    socially      <NA>            dropped
## 376                 <NA>    socially     never          graduated
## 377      mostly anything    socially      <NA>               <NA>
## 378                 <NA>    socially      <NA>          graduated
## 379      mostly anything    socially     never          graduated
## 380      mostly anything    socially     never          graduated
## 381    strictly anything    socially     never               <NA>
## 382             anything    socially     never          graduated
## 383             anything  not at all     never            dropped
## 384    mostly vegetarian      rarely     never               <NA>
## 385                 <NA>    socially     never          graduated
## 386                 <NA>    socially      <NA>          graduated
## 387  strictly vegetarian    socially     never          graduated
## 388                 <NA>    socially     never          graduated
## 389                 <NA>    socially     never          graduated
## 390                 <NA>    socially     never            working
## 391       strictly vegan      rarely sometimes          graduated
## 392      mostly anything    socially     never          graduated
## 393                 <NA>       often sometimes          graduated
## 394                 <NA>    socially      <NA>          graduated
## 395      mostly anything    socially     never          graduated
## 396                 <NA>    socially      <NA>          graduated
## 397      mostly anything    socially      <NA>          graduated
## 398  strictly vegetarian  not at all     never            dropped
## 399      mostly anything    socially     never          graduated
## 400                 <NA>    socially     never          graduated
## 401                 <NA>       often      <NA>               <NA>
## 402      mostly anything    socially      <NA>          graduated
## 403      mostly anything       often sometimes          graduated
## 404                 <NA>      rarely     never          graduated
## 405    mostly vegetarian      rarely     never          graduated
## 406      mostly anything    socially     never          graduated
## 407      mostly anything    socially     never            working
## 408    mostly vegetarian    socially     never          graduated
## 409                 <NA>       often sometimes            working
## 410                 <NA>    socially     never          graduated
## 411                 <NA>    socially     never          graduated
## 412      mostly anything    socially     never          graduated
## 413      mostly anything    socially      <NA>               <NA>
## 414    strictly anything    socially     never          graduated
## 415         mostly other    socially     never          graduated
## 416             anything    socially     never          graduated
## 417                 <NA>    socially     never          graduated
## 418                 <NA>    socially     never          graduated
## 419             anything    socially     never               <NA>
## 420        mostly kosher    socially     never          graduated
## 421      mostly anything       often     never          graduated
## 422                 <NA>    socially      <NA>          graduated
## 423    strictly anything    socially     never          graduated
## 424      mostly anything    socially      <NA>          graduated
## 425                 <NA>    socially      <NA>          graduated
## 426           vegetarian    socially     never          graduated
## 427                 <NA>    socially     never          graduated
## 428                 <NA>    socially sometimes          graduated
## 429             anything    socially     never          graduated
## 430                 <NA>    socially      <NA>            working
## 431                 <NA>  very often sometimes            dropped
## 432      mostly anything    socially     never          graduated
## 433                 <NA>  very often     often            dropped
## 434    mostly vegetarian    socially sometimes          graduated
## 435                 <NA>    socially     never          graduated
## 436                 <NA>    socially     never            working
## 437             anything    socially     never               high
## 438      mostly anything    socially     never          graduated
## 439      mostly anything    socially      <NA>            working
## 440                 <NA>    socially     never          graduated
## 441      mostly anything    socially      <NA>            working
## 442                 <NA>        <NA>      <NA>               <NA>
## 443      mostly anything  not at all     never          graduated
## 444                 <NA>    socially     never          graduated
## 445                 <NA>    socially     never          graduated
## 446                 <NA>        <NA>      <NA>               <NA>
## 447       strictly other    socially      <NA>          graduated
## 448                 <NA>        <NA>      <NA>          graduated
## 449                 <NA>    socially     never               <NA>
## 450      mostly anything  not at all      <NA>          graduated
## 451    strictly anything       often     never          graduated
## 452                 <NA>    socially     never          graduated
## 453                 <NA>    socially     never          graduated
## 454    mostly vegetarian    socially     never               <NA>
## 455                 <NA>    socially     never          graduated
## 456                 <NA>    socially     never          graduated
## 457                 <NA>        <NA>     never               <NA>
## 458             anything    socially     never          graduated
## 459         mostly vegan      rarely     never            working
## 460                 <NA>    socially     never          graduated
## 461      mostly anything    socially     never            working
## 462             anything    socially      <NA>          graduated
## 463             anything    socially     never          graduated
## 464    strictly anything    socially     never          graduated
## 465                 <NA>        <NA>     never               <NA>
## 466                 <NA>    socially sometimes            dropped
## 467      mostly anything    socially sometimes            working
## 468                 <NA>    socially     never          graduated
## 469         mostly other    socially      <NA>          graduated
## 470      mostly anything    socially     never          graduated
## 471                 <NA>    socially     never               <NA>
## 472       strictly vegan  not at all     never          graduated
## 473    mostly vegetarian    socially     never          graduated
## 474      mostly anything    socially sometimes          graduated
## 475                 <NA>  not at all     never               <NA>
## 476                 <NA>    socially     never          graduated
## 477      mostly anything    socially      <NA>          graduated
## 478      mostly anything    socially     never               <NA>
## 479      mostly anything       often      <NA>          graduated
## 480    mostly vegetarian      rarely     never          graduated
## 481                 <NA>      rarely sometimes            dropped
## 482                 <NA>        <NA>      <NA>          graduated
## 483                 <NA>    socially     never               <NA>
## 484                 <NA>    socially      <NA>          graduated
## 485      mostly anything        <NA>      <NA>          graduated
## 486      mostly anything    socially sometimes               <NA>
## 487      mostly anything    socially     never          graduated
## 488                 <NA>    socially     never          graduated
## 489                 <NA>    socially     never          graduated
## 490             anything    socially      <NA> college/university
## 491    strictly anything  very often     often          graduated
## 492                 <NA>      rarely     never          graduated
## 493    mostly vegetarian    socially      <NA>            working
## 494      mostly anything      rarely     never          graduated
## 495             anything    socially     never            working
## 496                 <NA>    socially     never          graduated
## 497      mostly anything    socially     never          graduated
## 498                 <NA>    socially     never            working
## 499      mostly anything    socially     never          graduated
## 500      mostly anything    socially     never          graduated
## 501             anything        <NA>     never               <NA>
## 502             anything desperately     never          graduated
## 503    strictly anything    socially     never            working
## 504                 <NA>    socially     never          graduated
## 505    strictly anything    socially     never            working
## 506                 <NA>        <NA>      <NA>               <NA>
## 507                 <NA>    socially     never          graduated
## 508    mostly vegetarian    socially     never          graduated
## 509                 <NA>    socially     never          graduated
## 510                 <NA>    socially     never          graduated
## 511    strictly anything    socially sometimes            dropped
## 512    strictly anything      rarely      <NA>            working
## 513      mostly anything       often     often            working
## 514             anything    socially     never          graduated
## 515      mostly anything    socially     never          graduated
## 516                 <NA>       often     never          graduated
## 517      mostly anything    socially      <NA>          graduated
## 518      mostly anything      rarely      <NA>          graduated
## 519      mostly anything    socially     never          graduated
## 520                 <NA>    socially     never            working
## 521             anything    socially     never          graduated
## 522      mostly anything    socially      <NA>          graduated
## 523                 <NA>    socially      <NA>               <NA>
## 524                 <NA>    socially     never          graduated
## 525      mostly anything       often      <NA>          graduated
## 526                 <NA>    socially      <NA>          graduated
## 527      mostly anything    socially     never            dropped
## 528                 <NA>    socially     never          graduated
## 529             anything    socially      <NA>          graduated
## 530             anything    socially      <NA>          graduated
## 531    strictly anything    socially      <NA>          graduated
## 532      mostly anything    socially     never            working
## 533      mostly anything    socially sometimes          graduated
## 534      mostly anything    socially      <NA>          graduated
## 535           vegetarian        <NA>     never            working
## 536      mostly anything       often     never          graduated
## 537                 <NA>  not at all     never               <NA>
## 538      mostly anything       often sometimes          graduated
## 539             anything    socially     never               <NA>
## 540      mostly anything       often      <NA>          graduated
## 541                 <NA>    socially     never college/university
## 542                other  not at all      <NA>               <NA>
## 543    strictly anything    socially sometimes            dropped
## 544                 <NA>    socially      <NA>          graduated
## 545                vegan        <NA>      <NA>               <NA>
## 546                 <NA>  not at all      <NA>               <NA>
## 547      mostly anything      rarely sometimes          graduated
## 548                 <NA>    socially     often               <NA>
## 549       strictly vegan desperately     often            dropped
## 550      mostly anything    socially sometimes            working
## 551             anything        <NA>      <NA>               <NA>
## 552      mostly anything      rarely     never          graduated
## 553      mostly anything    socially sometimes            working
## 554      mostly anything    socially      <NA>          graduated
## 555    mostly vegetarian    socially      <NA>               <NA>
## 556                 <NA>    socially     never          graduated
## 557                 <NA>    socially      <NA>               <NA>
## 558      mostly anything    socially      <NA>          graduated
## 559         mostly other    socially     never          graduated
## 560      mostly anything      rarely     never          graduated
## 561  strictly vegetarian    socially sometimes          graduated
## 562    mostly vegetarian    socially      <NA>          graduated
## 563                 <NA>    socially sometimes          graduated
## 564    strictly anything       often sometimes            dropped
## 565    strictly anything       often     never          graduated
## 566      mostly anything    socially     never          graduated
## 567                 <NA>    socially     never               <NA>
## 568    strictly anything       often     never          graduated
## 569      mostly anything    socially     never          graduated
## 570                 <NA>    socially     never               <NA>
## 571             anything    socially     never          graduated
## 572                 <NA>    socially     never               <NA>
## 573             anything  not at all     never          graduated
## 574             anything    socially     never          graduated
## 575      mostly anything    socially     never          graduated
## 576      mostly anything    socially     never          graduated
## 577      mostly anything    socially     never          graduated
## 578  strictly vegetarian  not at all sometimes            working
## 579                 <NA>    socially     never          graduated
## 580                 <NA>      rarely     never          graduated
## 581                 <NA>      rarely      <NA>          graduated
## 582                 <NA>    socially      <NA>          graduated
## 583      mostly anything    socially     never          graduated
## 584                 <NA>    socially      <NA>          graduated
## 585      mostly anything    socially     never college/university
## 586      mostly anything    socially     never               <NA>
## 587      mostly anything    socially      <NA>            working
## 588                 <NA>    socially     never          graduated
## 589                 <NA>    socially      <NA>          graduated
## 590      mostly anything    socially     never          graduated
## 591    mostly vegetarian    socially sometimes          graduated
## 592    strictly anything      rarely     never               <NA>
## 593      mostly anything      rarely sometimes college/university
## 594             anything    socially     never          graduated
## 595    strictly anything    socially      <NA>          graduated
## 596      mostly anything    socially     never          graduated
## 597    strictly anything       often     never           two-year
## 598    strictly anything    socially sometimes          graduated
## 599      mostly anything      rarely     never          graduated
## 600                 <NA>    socially      <NA>          graduated
## 601    mostly vegetarian       often sometimes            dropped
## 602                 <NA>    socially      <NA>               <NA>
## 603      mostly anything      rarely     never          graduated
## 604                 <NA>    socially     never          graduated
## 605    mostly vegetarian    socially     never          graduated
## 606      mostly anything    socially      <NA>          graduated
## 607                 <NA>    socially     never          graduated
## 608                 <NA>    socially      <NA>          graduated
## 609                 <NA>    socially     never college/university
## 610             anything  not at all     never          graduated
## 611    mostly vegetarian    socially     never          graduated
## 612    strictly anything      rarely     never               <NA>
## 613                 <NA>      rarely sometimes          graduated
## 614    strictly anything    socially     never            working
## 615                other    socially     never          graduated
## 616      mostly anything    socially     never          graduated
## 617    strictly anything  not at all     never          graduated
## 618             anything    socially     never               <NA>
## 619                 <NA>    socially     never            working
## 620                 <NA>    socially     never               <NA>
## 621                 <NA>    socially     never          graduated
## 622                 <NA>    socially     never               <NA>
## 623                 <NA>    socially sometimes          graduated
## 624      mostly anything    socially     never          graduated
## 625                 <NA>       often sometimes          graduated
## 626             anything    socially     never          graduated
## 627                 <NA>    socially sometimes          graduated
## 628      mostly anything    socially     never          graduated
## 629                 <NA>    socially      <NA>            working
## 630             anything    socially sometimes          graduated
## 631      mostly anything    socially     never          graduated
## 632                 <NA>       often     never            working
## 633      mostly anything  very often sometimes          graduated
## 634                 <NA>      rarely     never            working
## 635             anything    socially     never          graduated
## 636                 <NA>    socially     never          graduated
## 637       strictly other    socially     never          graduated
## 638         mostly other    socially     never          graduated
## 639      mostly anything    socially     never            working
## 640      mostly anything    socially     never          graduated
## 641      mostly anything  not at all     never          graduated
## 642      mostly anything    socially     never            working
## 643      mostly anything    socially     never          graduated
## 644  strictly vegetarian  not at all      <NA>               <NA>
## 645    strictly anything    socially     never          graduated
## 646    strictly anything    socially     never          graduated
## 647                 <NA>    socially     never           two-year
## 648      mostly anything    socially     never          graduated
## 649                 <NA>  not at all     never            working
## 650             anything       often      <NA>          graduated
## 651             anything        <NA>     never          graduated
## 652      mostly anything    socially      <NA>          graduated
## 653             anything    socially     never          graduated
## 654           vegetarian       often     never          graduated
## 655                 <NA>      rarely     never          graduated
## 656             anything    socially     never college/university
## 657                 <NA>    socially     never          graduated
## 658                 <NA>    socially     never          graduated
## 659             anything    socially     never          graduated
## 660                 <NA>    socially     never          graduated
## 661      mostly anything    socially     never          graduated
## 662    strictly anything    socially      <NA> college/university
## 663                 <NA>    socially     never          graduated
## 664      mostly anything       often     never          graduated
## 665                 <NA>        <NA>      <NA>          graduated
## 666    strictly anything    socially     never          graduated
## 667                 <NA>    socially     never          graduated
## 668                 <NA>    socially sometimes            working
## 669                 <NA>    socially     never          graduated
## 670      mostly anything    socially     never            working
## 671                 <NA>    socially     never          graduated
## 672    mostly vegetarian    socially     never          graduated
## 673             anything    socially     never          graduated
## 674                 <NA>    socially sometimes          graduated
## 675                other  not at all     never          graduated
## 676                 <NA>    socially      <NA>          graduated
## 677                 <NA>    socially      <NA>            working
## 678    strictly anything    socially      <NA>            working
## 679    mostly vegetarian    socially     never          graduated
## 680                 <NA>    socially     never          graduated
## 681    strictly anything    socially     never          graduated
## 682    strictly anything    socially      <NA>            working
## 683                 <NA>    socially     never               <NA>
## 684                 <NA>    socially     never          graduated
## 685      mostly anything       often      <NA>          graduated
## 686             anything    socially      <NA>            dropped
## 687                 <NA>    socially      <NA>            working
## 688                 <NA>    socially     never          graduated
## 689             anything    socially     never          graduated
## 690    strictly anything    socially      <NA>          graduated
## 691                 <NA>    socially     never          graduated
## 692    strictly anything    socially     never          graduated
## 693    strictly anything    socially      <NA>            dropped
## 694      mostly anything    socially     never          graduated
## 695                 <NA>    socially     never               <NA>
## 696                 <NA>        <NA>     never          graduated
## 697             anything  very often     never          graduated
## 698                 <NA>    socially     never            working
## 699                 <NA>    socially     never               <NA>
## 700    strictly anything    socially sometimes          graduated
## 701           vegetarian       often      <NA>          graduated
## 702                 <NA>    socially sometimes            working
## 703                 <NA>       often sometimes          graduated
## 704             anything    socially     never          graduated
## 705      mostly anything    socially sometimes          graduated
## 706                other    socially     never          graduated
## 707                 <NA>    socially     never            working
## 708                 <NA>      rarely     never          graduated
## 709             anything        <NA>     never            working
## 710                 <NA>    socially     never          graduated
## 711                 <NA>    socially     never               <NA>
## 712      mostly anything  not at all     never          graduated
## 713                 <NA>        <NA>     never               <NA>
## 714    strictly anything    socially     never          graduated
## 715                 <NA>    socially sometimes               high
## 716    mostly vegetarian    socially sometimes          graduated
## 717                 <NA>    socially     never          graduated
## 718      mostly anything    socially     never          graduated
## 719                 <NA>        <NA>     never               <NA>
## 720    mostly vegetarian  very often sometimes            dropped
## 721                 <NA>    socially     never               <NA>
## 722                 <NA>    socially     never          graduated
## 723                 <NA>  not at all     never          graduated
## 724             anything      rarely     never college/university
## 725    mostly vegetarian    socially     never               <NA>
## 726                 <NA>    socially     never          graduated
## 727             anything       often sometimes          graduated
## 728      mostly anything    socially     never college/university
## 729      mostly anything    socially      <NA>          graduated
## 730                 <NA>       often     never            dropped
## 731             anything    socially     never          graduated
## 732      mostly anything    socially     never            working
## 733             anything    socially sometimes            working
## 734    mostly vegetarian    socially      <NA>          graduated
## 735      mostly anything    socially     never          graduated
## 736    mostly vegetarian    socially      <NA>          graduated
## 737      mostly anything    socially     never          graduated
## 738             anything    socially      <NA>          graduated
## 739    mostly vegetarian    socially     often          graduated
## 740      mostly anything    socially      <NA>               <NA>
## 741      mostly anything  not at all      <NA>          graduated
## 742                 <NA>       often sometimes               <NA>
## 743      mostly anything       often sometimes               <NA>
## 744      mostly anything       often     never          graduated
## 745             anything    socially     never          graduated
## 746      mostly anything    socially      <NA>            working
## 747             anything    socially     never          graduated
## 748                 <NA>    socially     never          graduated
## 749      mostly anything    socially     never          graduated
## 750                 <NA>    socially sometimes          graduated
## 751    strictly anything    socially     never          graduated
## 752             anything    socially     never college/university
## 753             anything    socially     never            working
## 754      mostly anything      rarely     never          graduated
## 755    strictly anything    socially     never            working
## 756    strictly anything    socially     never          graduated
## 757                 <NA>      rarely     never            working
## 758      mostly anything    socially     never          graduated
## 759      mostly anything    socially     never          graduated
## 760    mostly vegetarian  not at all     never          graduated
## 761             anything    socially     never          graduated
## 762                 <NA>    socially     never          graduated
## 763    mostly vegetarian    socially     never          graduated
## 764                 <NA>    socially      <NA>            working
## 765    strictly anything       often sometimes          graduated
## 766      mostly anything    socially     never          graduated
## 767         mostly vegan    socially     never            working
## 768                 <NA>    socially     never            working
## 769                 <NA>    socially      <NA>          graduated
## 770                 <NA>    socially      <NA>          graduated
## 771                 <NA>    socially      <NA>            working
## 772           vegetarian    socially     never            working
## 773         mostly other    socially sometimes          graduated
## 774                 <NA>      rarely     never          graduated
## 775      mostly anything    socially     never          graduated
## 776    strictly anything    socially sometimes          graduated
## 777                 <NA>    socially sometimes            working
## 778    strictly anything       often      <NA>          graduated
## 779    mostly vegetarian    socially     never          graduated
## 780                 <NA>  not at all     never          graduated
## 781      mostly anything    socially     never          graduated
## 782      mostly anything    socially     never          graduated
## 783                 <NA>    socially     never               <NA>
## 784      mostly anything    socially     never            working
## 785                 <NA>      rarely     never               <NA>
## 786      mostly anything    socially sometimes            dropped
## 787                 <NA>    socially     never          graduated
## 788      mostly anything    socially     never               <NA>
## 789                 <NA>    socially      <NA>          graduated
## 790             anything    socially     never            working
## 791      mostly anything    socially sometimes          graduated
## 792                 <NA>      rarely     never            working
## 793                 <NA>    socially      <NA>          graduated
## 794      mostly anything       often sometimes          graduated
## 795    strictly anything  not at all     never            working
## 796      mostly anything    socially     never          graduated
## 797      mostly anything    socially      <NA>          graduated
## 798                 <NA>      rarely     never          graduated
## 799        mostly kosher      rarely     never            working
## 800      mostly anything      rarely     never               <NA>
## 801         mostly vegan desperately sometimes          graduated
## 802  strictly vegetarian    socially     never          graduated
## 803    mostly vegetarian    socially      <NA>            working
## 804                 <NA>        <NA>     never               <NA>
## 805                 <NA>    socially     never            working
## 806      mostly anything    socially     never            working
## 807             anything    socially     never          graduated
## 808      mostly anything    socially     never          graduated
## 809                 <NA>    socially     never          graduated
## 810                 <NA>    socially     never          graduated
## 811    strictly anything    socially     never          graduated
## 812                 <NA>    socially sometimes          graduated
## 813                 <NA>    socially      <NA>          graduated
## 814             anything    socially     never          graduated
## 815           vegetarian       often sometimes            working
## 816      mostly anything    socially      <NA>          graduated
## 817      mostly anything  not at all     never            working
## 818      mostly anything      rarely     never          graduated
## 819      mostly anything       often      <NA>          graduated
## 820      mostly anything    socially     never          graduated
## 821                 <NA>    socially     never          graduated
## 822    mostly vegetarian    socially     never          graduated
## 823    mostly vegetarian       often sometimes          graduated
## 824      mostly anything    socially     never          graduated
## 825                 <NA>    socially      <NA>            working
## 826      mostly anything    socially      <NA>          graduated
## 827      mostly anything    socially sometimes            working
## 828                 <NA>    socially      <NA>          graduated
## 829                 <NA>    socially     never            working
## 830             anything    socially      <NA>            working
## 831    strictly anything    socially     never          graduated
## 832      mostly anything    socially sometimes          graduated
## 833    mostly vegetarian    socially      <NA>          graduated
## 834             anything    socially     never          graduated
## 835                 <NA>    socially      <NA>          graduated
## 836                 <NA>    socially     never          graduated
## 837                 <NA>    socially      <NA>          graduated
## 838    strictly anything    socially sometimes               <NA>
## 839                vegan      rarely     never            working
## 840      mostly anything    socially     never               <NA>
## 841    strictly anything    socially     never            working
## 842      mostly anything    socially      <NA>          graduated
## 843    strictly anything      rarely     never          graduated
## 844                 <NA>    socially      <NA>          graduated
## 845    strictly anything      rarely     never               <NA>
## 846                 <NA>    socially sometimes            dropped
## 847                 <NA>    socially      <NA>          graduated
## 848      mostly anything    socially      <NA>          graduated
## 849      mostly anything    socially      <NA> college/university
## 850      mostly anything    socially     never college/university
## 851                 <NA>    socially      <NA>          graduated
## 852    strictly anything    socially      <NA>          graduated
## 853                 <NA>       often     never          graduated
## 854                 <NA>    socially      <NA>            working
## 855                 <NA>        <NA>      <NA>               <NA>
## 856    strictly anything    socially      <NA>          graduated
## 857      mostly anything    socially     never               <NA>
## 858      mostly anything    socially     never          graduated
## 859                 <NA>       often     never          graduated
## 860                 <NA>    socially     never          graduated
## 861      mostly anything    socially     never          graduated
## 862      mostly anything    socially     never          graduated
## 863      mostly anything    socially     never          graduated
## 864      mostly anything    socially     never          graduated
## 865  strictly vegetarian    socially     never            working
## 866                 <NA>    socially     never          graduated
## 867      mostly anything      rarely sometimes            dropped
## 868             anything    socially     never          graduated
## 869    strictly anything    socially     never               <NA>
## 870  strictly vegetarian  very often sometimes          graduated
## 871         mostly other    socially     never          graduated
## 872    mostly vegetarian    socially sometimes          graduated
## 873                 <NA>      rarely     never          graduated
## 874                 <NA>    socially     never          graduated
## 875             anything    socially     never               <NA>
## 876             anything    socially     never            working
## 877      mostly anything    socially     never            working
## 878    mostly vegetarian    socially sometimes            working
## 879             anything    socially     never          graduated
## 880      mostly anything    socially      <NA>          graduated
## 881         mostly other  not at all     never               <NA>
## 882      mostly anything    socially     never          graduated
## 883    mostly vegetarian       often sometimes            working
## 884  strictly vegetarian  not at all     never            working
## 885    strictly anything  not at all     never          graduated
## 886             anything    socially      <NA>          graduated
## 887    mostly vegetarian    socially     never            working
## 888    strictly anything       often      <NA>          graduated
## 889                 <NA>      rarely     never          graduated
## 890                 <NA>    socially     never          graduated
## 891    strictly anything      rarely     never            working
## 892                 <NA>    socially      <NA>          graduated
## 893    strictly anything       often sometimes          graduated
## 894      mostly anything  not at all     never college/university
## 895                 <NA>       often sometimes          graduated
## 896             anything    socially     never          graduated
## 897                 <NA>        <NA>      <NA>          graduated
## 898                 <NA>    socially      <NA>            working
## 899                 <NA>      rarely sometimes          graduated
## 900                 <NA>        <NA>      <NA>          graduated
## 901             anything    socially     never            working
## 902    mostly vegetarian    socially      <NA>            working
## 903    strictly anything  not at all      <NA>          graduated
## 904    strictly anything        <NA>     never            working
## 905    strictly anything    socially     never            working
## 906         mostly other    socially     never          graduated
## 907                other    socially      <NA> college/university
## 908    strictly anything    socially     never          graduated
## 909                 <NA>    socially     never          graduated
## 910                 <NA>      rarely sometimes          graduated
## 911                 <NA>    socially     never          graduated
## 912                 <NA>  not at all     never               <NA>
## 913                 <NA>       often sometimes          graduated
## 914  strictly vegetarian      rarely     never          graduated
## 915                 <NA>    socially      <NA>          graduated
## 916      mostly anything    socially sometimes            dropped
## 917         mostly vegan    socially     never          graduated
## 918      mostly anything    socially     never          graduated
## 919      mostly anything    socially     never            working
## 920       strictly vegan  not at all     never          graduated
## 921      mostly anything      rarely      <NA>          graduated
## 922    strictly anything    socially      <NA>          graduated
## 923             anything    socially      <NA> college/university
## 924                 <NA>      rarely sometimes          graduated
## 925    mostly vegetarian    socially sometimes          graduated
## 926             anything        <NA>      <NA>            working
## 927       strictly vegan      rarely sometimes          graduated
## 928                 <NA>    socially     never          graduated
## 929                 <NA>    socially      <NA>          graduated
## 930      mostly anything    socially     never          graduated
## 931      mostly anything    socially      <NA>          graduated
## 932                 <NA>       often     never          graduated
## 933           vegetarian       often      <NA>          graduated
## 934                 <NA>    socially      <NA>          graduated
## 935    strictly anything    socially     never          graduated
## 936      mostly anything      rarely     never          graduated
## 937    strictly anything    socially     never          graduated
## 938  strictly vegetarian      rarely sometimes            dropped
## 939             anything    socially      <NA> college/university
## 940      mostly anything    socially      <NA>          graduated
## 941      mostly anything    socially     never            working
## 942    strictly anything    socially     never            working
## 943      mostly anything       often sometimes            working
## 944    strictly anything    socially sometimes          graduated
## 945      mostly anything    socially sometimes            dropped
## 946                 <NA>    socially     never          graduated
## 947                 <NA>        <NA>      <NA>          graduated
## 948                 <NA>    socially     never          graduated
## 949      mostly anything    socially     never          graduated
## 950    strictly anything       often sometimes          graduated
## 951    strictly anything    socially sometimes          graduated
## 952                 <NA>    socially     never          graduated
## 953    strictly anything    socially sometimes          graduated
## 954                 <NA>    socially sometimes            working
## 955                 <NA>    socially     never          graduated
## 956      mostly anything    socially     never          graduated
## 957                 <NA>    socially     never          graduated
## 958           vegetarian    socially      <NA>            working
## 959  strictly vegetarian      rarely     never          graduated
## 960                 <NA>    socially      <NA>            working
## 961                 <NA>    socially      <NA>          graduated
## 962                 <NA>       often      <NA>          graduated
## 963                 <NA>        <NA>      <NA>               <NA>
## 964      mostly anything    socially      <NA>            working
## 965                 <NA>    socially     never            working
## 966                 <NA>        <NA>      <NA>          graduated
## 967      mostly anything       often sometimes            dropped
## 968    mostly vegetarian  not at all     never            working
## 969    strictly anything    socially     never               <NA>
## 970    strictly anything    socially     never            working
## 971                 <NA>       often sometimes          graduated
## 972             anything    socially     never          graduated
## 973                 <NA>    socially     never          graduated
## 974                 <NA>    socially      <NA>          graduated
## 975      mostly anything    socially      <NA>          graduated
## 976      mostly anything    socially sometimes          graduated
## 977    strictly anything       often      <NA>               <NA>
## 978    strictly anything    socially     never            working
## 979      mostly anything       often     never          graduated
## 980    mostly vegetarian        <NA>      <NA>          graduated
## 981                 <NA>      rarely      <NA>          graduated
## 982       strictly other      rarely sometimes            working
## 983                 <NA>    socially      <NA>          graduated
## 984                 <NA>        <NA>      <NA>            working
## 985             anything    socially      <NA>          graduated
## 986             anything    socially     never          graduated
## 987      mostly anything    socially     never          graduated
## 988    mostly vegetarian    socially sometimes          graduated
## 989                 <NA>    socially      <NA>          graduated
## 990           vegetarian    socially      <NA>            working
## 991    strictly anything    socially      <NA>            working
## 992             anything    socially     never            dropped
## 993      mostly anything      rarely     never            working
## 994                 <NA>    socially      <NA>               <NA>
## 995                other    socially     never          graduated
## 996                 <NA>    socially     never          graduated
## 997                 <NA>    socially sometimes          graduated
## 998    mostly vegetarian    socially      <NA>               <NA>
## 999                 <NA>       often      <NA>            working
## 1000     mostly anything    socially     never          graduated
## 1001                <NA>    socially      <NA>          graduated
## 1002   strictly anything    socially     never          graduated
## 1003     mostly anything    socially      <NA>            working
## 1004            anything    socially      <NA>          graduated
## 1005 strictly vegetarian    socially      <NA>          graduated
## 1006     mostly anything    socially sometimes            working
## 1007                <NA>       often sometimes          graduated
## 1008            anything    socially      <NA> college/university
## 1009     mostly anything    socially sometimes          graduated
## 1010     mostly anything    socially      <NA>          graduated
## 1011            anything      rarely     never college/university
## 1012   strictly anything    socially      <NA> college/university
## 1013     mostly anything    socially     never          graduated
## 1014   strictly anything    socially      <NA>          graduated
## 1015   strictly anything    socially      <NA>          graduated
## 1016   mostly vegetarian    socially      <NA>                law
## 1017   strictly anything       often      <NA>            dropped
## 1018     mostly anything    socially      <NA>          graduated
## 1019                <NA>    socially     never            working
## 1020                <NA>    socially sometimes          graduated
## 1021   strictly anything       often      <NA>          graduated
## 1022                <NA>    socially      <NA>          graduated
## 1023                <NA>    socially      <NA>               <NA>
## 1024                <NA>    socially sometimes            dropped
## 1025                <NA>        <NA>      <NA>          graduated
## 1026                <NA>    socially     never            dropped
## 1027            anything    socially     never          graduated
## 1028                <NA>    socially     never               <NA>
## 1029   mostly vegetarian    socially     never          graduated
## 1030            anything    socially     never          graduated
## 1031                <NA>        <NA>     never          graduated
## 1032                <NA>    socially     never          graduated
## 1033                <NA>    socially      <NA>          graduated
## 1034            anything    socially      <NA>          graduated
## 1035     mostly anything    socially      <NA>            dropped
## 1036   strictly anything    socially     never               <NA>
## 1037                <NA>      rarely      <NA>            working
## 1038   strictly anything    socially     never          graduated
## 1039                <NA>        <NA>      <NA>          graduated
## 1040                <NA>        <NA>     never          graduated
## 1041                <NA>      rarely     never               <NA>
## 1042                <NA>      rarely     never          graduated
## 1043     mostly anything    socially      <NA>          graduated
## 1044                <NA>    socially      <NA>          graduated
## 1045                <NA>      rarely      <NA>            dropped
## 1046     mostly anything    socially     never          graduated
## 1047     mostly anything    socially     never            dropped
## 1048                <NA>    socially sometimes          graduated
## 1049   strictly anything  not at all     never               <NA>
## 1050   strictly anything       often     never          graduated
## 1051                <NA>    socially sometimes            working
## 1052                <NA>    socially      <NA>          graduated
## 1053            anything    socially sometimes            working
## 1054     mostly anything    socially     never          graduated
## 1055   strictly anything        <NA>      <NA>               <NA>
## 1056                <NA>    socially     never          graduated
## 1057               other      rarely     never          graduated
## 1058     mostly anything    socially     never            working
## 1059     mostly anything       often sometimes          graduated
## 1060                <NA>       often sometimes          graduated
## 1061                <NA>        <NA>      <NA>               <NA>
## 1062 strictly vegetarian    socially sometimes          graduated
## 1063 strictly vegetarian    socially sometimes          graduated
## 1064   mostly vegetarian    socially     never          graduated
## 1065     mostly anything    socially     never          graduated
## 1066     mostly anything    socially     never          graduated
## 1067                <NA>    socially     never          graduated
## 1068   strictly anything    socially     never          graduated
## 1069     mostly anything    socially      <NA>          graduated
## 1070                <NA>    socially sometimes          graduated
## 1071            anything    socially      <NA>          graduated
## 1072                <NA>    socially     never            working
## 1073   strictly anything    socially     never          graduated
## 1074   mostly vegetarian        <NA>      <NA>          graduated
## 1075     mostly anything    socially      <NA>          graduated
## 1076                <NA>    socially     never          graduated
## 1077            anything    socially     never          graduated
## 1078   mostly vegetarian    socially     never          graduated
## 1079            anything       often      <NA>          graduated
## 1080     mostly anything    socially     never          graduated
## 1081   strictly anything       often      <NA>          graduated
## 1082            anything    socially     never          graduated
## 1083                <NA>    socially     never          graduated
## 1084                <NA>        <NA>     never                law
## 1085                <NA>       often sometimes          graduated
## 1086                <NA>    socially     never          graduated
## 1087   mostly vegetarian    socially     never            working
## 1088     mostly anything    socially      <NA>            dropped
## 1089     mostly anything    socially      <NA>            working
## 1090     mostly anything  not at all     never          graduated
## 1091                <NA>    socially     never college/university
## 1092                <NA>    socially sometimes college/university
## 1093                <NA>        <NA>      <NA>               <NA>
## 1094     mostly anything    socially     never          graduated
## 1095            anything    socially     never          graduated
## 1096     mostly anything    socially     never          graduated
## 1097     mostly anything    socially     never          graduated
## 1098                <NA>    socially      <NA>               <NA>
## 1099   strictly anything       often     never          graduated
## 1100                <NA>        <NA>     never               <NA>
## 1101                <NA>  not at all     never          graduated
## 1102     mostly anything    socially     never          graduated
## 1103     mostly anything    socially     never          graduated
## 1104            anything    socially      <NA>               <NA>
## 1105     mostly anything       often     never               <NA>
## 1106                <NA>      rarely     never            working
## 1107     mostly anything    socially      <NA>            dropped
## 1108     mostly anything    socially     never          graduated
## 1109                <NA>    socially     never          graduated
## 1110                <NA>    socially sometimes            working
## 1111     mostly anything    socially sometimes            working
## 1112     mostly anything  not at all     never          graduated
## 1113                <NA>      rarely     never          graduated
## 1114     mostly anything       often      <NA>          graduated
## 1115                <NA>    socially     never          graduated
## 1116            anything    socially     never          graduated
## 1117                <NA>      rarely      <NA>          graduated
## 1118     mostly anything    socially      <NA>          graduated
## 1119     mostly anything    socially      <NA>          graduated
## 1120                <NA>    socially     never          graduated
## 1121            anything    socially sometimes          graduated
## 1122                <NA>    socially     never          graduated
## 1123                <NA>    socially     never          graduated
## 1124                <NA>        <NA>     never          graduated
## 1125   mostly vegetarian    socially     never            working
## 1126   strictly anything    socially     never          graduated
## 1127                <NA>        <NA>     never               <NA>
## 1128     mostly anything        <NA>     never          graduated
## 1129     mostly anything    socially     never          graduated
## 1130     mostly anything    socially     never          graduated
## 1131        mostly halal      rarely     never            dropped
## 1132     mostly anything    socially     never          graduated
## 1133     mostly anything    socially      <NA>          graduated
## 1134          vegetarian    socially     often            working
## 1135   mostly vegetarian    socially      <NA>            working
## 1136                <NA>        <NA>     never               <NA>
## 1137   strictly anything    socially     never          graduated
## 1138                <NA>    socially sometimes          graduated
## 1139     mostly anything      rarely     never college/university
## 1140                <NA>    socially     never            masters
## 1141                <NA>      rarely      <NA>            working
## 1142   strictly anything    socially     never          graduated
## 1143            anything      rarely     never          graduated
## 1144                <NA>    socially      <NA>          graduated
## 1145            anything    socially sometimes            dropped
## 1146     mostly anything  not at all     never          graduated
## 1147   strictly anything    socially sometimes          graduated
## 1148                <NA>    socially     never          graduated
## 1149     mostly anything    socially     never            working
## 1150                <NA>    socially     never          graduated
## 1151                <NA>    socially      <NA>          graduated
## 1152     mostly anything       often sometimes            working
## 1153   strictly anything    socially     never          graduated
## 1154     mostly anything    socially sometimes            working
## 1155                <NA>    socially     never          graduated
## 1156                <NA>    socially     never          graduated
## 1157                <NA>    socially     never          graduated
## 1158     mostly anything      rarely     never            working
## 1159            anything    socially sometimes          graduated
## 1160     mostly anything    socially      <NA>            working
## 1161                <NA>      rarely     never            working
## 1162   mostly vegetarian  not at all     never          graduated
## 1163     mostly anything    socially     never            dropped
## 1164     mostly anything    socially     never          graduated
## 1165     mostly anything    socially     never               <NA>
## 1166                <NA>      rarely     never          graduated
## 1167     mostly anything    socially     never          graduated
## 1168     mostly anything    socially     never          graduated
## 1169   mostly vegetarian    socially      <NA>          graduated
## 1170   mostly vegetarian    socially     never college/university
## 1171   mostly vegetarian    socially     never          graduated
## 1172     mostly anything      rarely     never            working
## 1173     mostly anything    socially     never          graduated
## 1174                <NA>    socially     never               <NA>
## 1175                <NA>    socially      <NA>          graduated
## 1176     mostly anything    socially     never          graduated
## 1177                <NA>      rarely     never            dropped
## 1178     mostly anything      rarely     never          graduated
## 1179   mostly vegetarian    socially     never          graduated
## 1180                <NA>    socially      <NA>          graduated
## 1181     mostly anything    socially     never          graduated
## 1182                <NA>      rarely     never          graduated
## 1183     mostly anything    socially     never          graduated
## 1184     mostly anything    socially      <NA>          graduated
## 1185            anything    socially     never          graduated
## 1186                <NA>    socially     never          graduated
## 1187     mostly anything    socially     never          graduated
## 1188                <NA>    socially sometimes            working
## 1189                <NA>    socially sometimes          graduated
## 1190                <NA>    socially     never           two-year
## 1191                <NA>    socially sometimes          graduated
## 1192                <NA>  not at all     never          graduated
## 1193            anything    socially     never college/university
## 1194                <NA>    socially     never          graduated
## 1195                <NA>    socially     never            working
## 1196     mostly anything    socially     never          graduated
## 1197                <NA>    socially     never          graduated
## 1198   strictly anything       often     never          graduated
## 1199        mostly other      rarely      <NA>          graduated
## 1200                <NA>    socially     never               <NA>
## 1201     mostly anything    socially sometimes            working
## 1202      strictly other    socially      <NA>            working
## 1203                <NA>    socially     never            working
## 1204            anything    socially      <NA>          graduated
## 1205                <NA>        <NA>      <NA>          graduated
## 1206                <NA>    socially      <NA>               <NA>
## 1207        mostly other      rarely     never          graduated
## 1208                <NA>    socially     never            working
## 1209     mostly anything    socially     never               <NA>
## 1210                <NA>    socially      <NA>          graduated
## 1211   strictly anything    socially     never          graduated
## 1212        mostly other      rarely      <NA>          graduated
## 1213                <NA>    socially     never          graduated
## 1214            anything    socially      <NA>          graduated
## 1215                <NA>    socially     never          graduated
## 1216                <NA>    socially     never          graduated
## 1217     mostly anything    socially     never          graduated
## 1218     mostly anything    socially     never          graduated
## 1219            anything    socially      <NA>          graduated
## 1220   strictly anything    socially     never              space
## 1221   mostly vegetarian    socially sometimes          graduated
## 1222     mostly anything    socially     never          graduated
## 1223        mostly vegan      rarely      <NA>          graduated
## 1224            anything    socially     never               <NA>
## 1225                <NA>      rarely     never          graduated
## 1226                <NA>    socially sometimes          graduated
## 1227               vegan      rarely      <NA>               <NA>
## 1228                <NA>       often     never          graduated
## 1229                <NA>    socially      <NA>            working
## 1230                <NA>    socially     never            working
## 1231                <NA>       often     never          graduated
## 1232                <NA>        <NA>     never               <NA>
## 1233     mostly anything    socially      <NA>          graduated
## 1234                <NA>    socially      <NA>          graduated
## 1235   strictly anything    socially     never          graduated
## 1236     mostly anything    socially     never          graduated
## 1237                <NA>  not at all     never            working
## 1238            anything    socially     never          graduated
## 1239                <NA>    socially      <NA>          graduated
## 1240                <NA>    socially     never           two-year
## 1241   strictly anything    socially sometimes            working
## 1242     mostly anything    socially     never            dropped
## 1243                <NA>      rarely     never               <NA>
## 1244   strictly anything    socially      <NA>          graduated
## 1245   strictly anything      rarely sometimes          graduated
## 1246   strictly anything    socially sometimes          graduated
## 1247            anything  not at all     never            working
## 1248                <NA>    socially      <NA>          graduated
## 1249     mostly anything    socially     never          graduated
## 1250            anything    socially     never          graduated
## 1251                <NA>    socially     never            working
## 1252                <NA>    socially     never          graduated
## 1253                <NA>        <NA> sometimes               <NA>
## 1254     mostly anything    socially      <NA>            working
## 1255     mostly anything      rarely     never          graduated
## 1256                <NA>    socially      <NA>          graduated
## 1257                <NA>    socially     never          graduated
## 1258            anything    socially     never          graduated
## 1259                <NA>      rarely      <NA>            working
## 1260                <NA>    socially     never          graduated
## 1261                <NA>    socially     never          graduated
## 1262   mostly vegetarian    socially      <NA>          graduated
## 1263     mostly anything desperately     never          graduated
## 1264                <NA>    socially     never          graduated
## 1265     mostly anything       often sometimes          graduated
## 1266                <NA>    socially     never          graduated
## 1267   strictly anything        <NA>      <NA>          graduated
## 1268     mostly anything    socially      <NA>          graduated
## 1269   strictly anything    socially     never          graduated
## 1270                <NA>      rarely      <NA>          graduated
## 1271     mostly anything      rarely     never          graduated
## 1272     mostly anything    socially     never          graduated
## 1273          vegetarian    socially      <NA>          graduated
## 1274                <NA>       often sometimes          graduated
## 1275     mostly anything  not at all     never            working
## 1276     mostly anything       often      <NA>          graduated
## 1277                <NA>    socially     never          graduated
## 1278                <NA>      rarely     never            working
## 1279     mostly anything    socially      <NA>          graduated
## 1280     mostly anything    socially     never          graduated
## 1281                <NA>      rarely     never          graduated
## 1282     mostly anything    socially     never          graduated
## 1283   strictly anything    socially     never            working
## 1284   mostly vegetarian    socially     never            working
## 1285                <NA>       often     never          graduated
## 1286                <NA>  not at all     never          graduated
## 1287                <NA>    socially     never               <NA>
## 1288     mostly anything    socially     never            working
## 1289            anything        <NA>     never               <NA>
## 1290            anything    socially     never          graduated
## 1291   mostly vegetarian    socially     never               <NA>
## 1292                <NA>    socially     never          graduated
## 1293                <NA>    socially     never          graduated
## 1294                <NA>    socially     never            working
## 1295                <NA>      rarely     never          graduated
## 1296        mostly vegan    socially     never            working
## 1297                <NA>    socially     never          graduated
## 1298                <NA>      rarely     never          graduated
## 1299   strictly anything    socially     never          graduated
## 1300                <NA>  not at all     never            working
## 1301     mostly anything    socially     never          graduated
## 1302            anything    socially     never            working
## 1303      strictly other    socially     never          graduated
## 1304                <NA>    socially      <NA>          graduated
## 1305     mostly anything       often     never          graduated
## 1306                <NA>    socially      <NA>          graduated
## 1307                <NA>    socially     never          graduated
## 1308     mostly anything    socially     never college/university
## 1309     mostly anything    socially      <NA>          graduated
## 1310                <NA>    socially     never            working
## 1311            anything       often      <NA>          graduated
## 1312               other      rarely     never          graduated
## 1313                <NA>    socially     never               <NA>
## 1314     mostly anything  not at all     never            working
## 1315                <NA>        <NA>     never          graduated
## 1316            anything    socially     never          graduated
## 1317        mostly vegan      rarely      <NA>               <NA>
## 1318        mostly other  not at all      <NA>          graduated
## 1319     mostly anything      rarely     never college/university
## 1320     mostly anything    socially     never          graduated
## 1321   strictly anything  not at all sometimes          graduated
## 1322                <NA>    socially sometimes          graduated
## 1323     mostly anything    socially     never          graduated
## 1324   strictly anything    socially     never          graduated
## 1325   mostly vegetarian    socially     never          graduated
## 1326            anything    socially     never          graduated
## 1327                <NA>       often      <NA>          graduated
## 1328     mostly anything    socially     never            working
## 1329     mostly anything    socially     never          graduated
## 1330     mostly anything    socially     never          graduated
## 1331     mostly anything    socially     never          graduated
## 1332                <NA>  not at all     never          graduated
## 1333     mostly anything    socially     never          graduated
## 1334     mostly anything       often      <NA>          graduated
## 1335   mostly vegetarian    socially      <NA>          graduated
## 1336     mostly anything    socially     never          graduated
## 1337     mostly anything    socially     never          graduated
## 1338   mostly vegetarian    socially     never          graduated
## 1339                <NA>        <NA>      <NA>          graduated
## 1340     mostly anything    socially     never            dropped
## 1341     mostly anything    socially     never          graduated
## 1342     mostly anything    socially      <NA>          graduated
## 1343                <NA>    socially      <NA>          graduated
## 1344     mostly anything    socially     never               <NA>
## 1345                <NA>    socially      <NA>          graduated
## 1346 strictly vegetarian    socially      <NA>            working
## 1347   strictly anything    socially      <NA>          graduated
## 1348                <NA>  not at all     never               <NA>
## 1349   strictly anything       often sometimes            working
## 1350            anything    socially      <NA>            working
## 1351                <NA>    socially     never          graduated
## 1352            anything    socially     never          graduated
## 1353     mostly anything      rarely     never          graduated
## 1354     mostly anything    socially     never          graduated
## 1355                <NA>    socially     never          graduated
## 1356                <NA>    socially     never          graduated
## 1357                <NA>    socially     never            dropped
## 1358     mostly anything    socially      <NA>            working
## 1359                <NA>      rarely     never          graduated
## 1360     mostly anything    socially      <NA>          graduated
## 1361                <NA>  not at all     never            dropped
## 1362     mostly anything    socially sometimes          graduated
## 1363                <NA>      rarely     never          graduated
## 1364                <NA>    socially     never            working
## 1365            anything    socially     never            working
## 1366 strictly vegetarian  not at all     never               <NA>
## 1367      strictly halal       often sometimes            working
## 1368   mostly vegetarian    socially     never          graduated
## 1369                <NA>    socially     never          graduated
## 1370     mostly anything    socially      <NA>          graduated
## 1371                <NA>    socially     never          graduated
## 1372     mostly anything    socially      <NA>            working
## 1373                <NA>      rarely     never          graduated
## 1374                <NA>    socially     never          graduated
## 1375                <NA>      rarely     never            working
## 1376                <NA>    socially      <NA>          graduated
## 1377                <NA>    socially sometimes          graduated
## 1378   strictly anything desperately sometimes            working
## 1379                <NA>    socially      <NA>          graduated
## 1380   strictly anything       often sometimes          graduated
## 1381     mostly anything    socially     never          graduated
## 1382                <NA>        <NA>     never               <NA>
## 1383                <NA>       often      <NA>          graduated
## 1384      strictly vegan       often sometimes          graduated
## 1385     mostly anything    socially      <NA>            working
## 1386                <NA>    socially     never          graduated
## 1387                <NA>    socially     never            working
## 1388   mostly vegetarian    socially     never            dropped
## 1389     mostly anything desperately      <NA>          graduated
## 1390     mostly anything    socially     never          graduated
## 1391     mostly anything    socially     never          graduated
## 1392                <NA>    socially      <NA>          graduated
## 1393     mostly anything  not at all     never               <NA>
## 1394                <NA>    socially     never          graduated
## 1395                <NA>    socially      <NA>          graduated
## 1396                <NA>      rarely     never          graduated
## 1397     mostly anything    socially      <NA>          graduated
## 1398     mostly anything    socially     never          graduated
## 1399            anything    socially      <NA>          graduated
## 1400     mostly anything    socially      <NA>          graduated
## 1401     mostly anything    socially     never          graduated
## 1402   strictly anything    socially      <NA>               <NA>
## 1403                <NA>      rarely     never          graduated
## 1404     mostly anything      rarely     never            working
## 1405   strictly anything       often sometimes          graduated
## 1406     mostly anything    socially     never          graduated
## 1407                <NA>    socially sometimes          graduated
## 1408                <NA>    socially      <NA>          graduated
## 1409            anything    socially     never            working
## 1410     mostly anything    socially     never            working
## 1411                <NA>    socially     never            working
## 1412     mostly anything    socially     never          graduated
## 1413            anything    socially     never            working
## 1414            anything    socially      <NA>          graduated
## 1415                <NA>    socially     never          graduated
## 1416            anything    socially     never          graduated
## 1417                <NA>    socially     never          graduated
## 1418     mostly anything    socially     never          graduated
## 1419     mostly anything    socially     never          graduated
## 1420     mostly anything    socially      <NA>          graduated
## 1421   strictly anything    socially     never          graduated
## 1422   strictly anything       often      <NA>          graduated
## 1423                <NA>       often      <NA>          graduated
## 1424                <NA>        <NA>     never               <NA>
## 1425     mostly anything    socially sometimes          graduated
## 1426     mostly anything  not at all     never            working
## 1427                <NA>  not at all     never               <NA>
## 1428     mostly anything    socially     never          graduated
## 1429                <NA>    socially      <NA>          graduated
## 1430                <NA> desperately      <NA>          graduated
## 1431                <NA>    socially      <NA>          graduated
## 1432   strictly anything    socially sometimes          graduated
## 1433     mostly anything    socially     never            working
## 1434                <NA>        <NA>      <NA>          graduated
## 1435 strictly vegetarian  not at all     never            dropped
## 1436            anything    socially     never          graduated
## 1437                <NA>      rarely     never college/university
## 1438                <NA>    socially     never               <NA>
## 1439                <NA>       often     never          graduated
## 1440   strictly anything      rarely      <NA>               <NA>
## 1441                <NA>        <NA>      <NA>            working
## 1442            anything    socially      <NA>          graduated
## 1443            anything    socially     never          graduated
## 1444                <NA>    socially     never            working
## 1445                <NA>    socially      <NA>          graduated
## 1446                <NA>    socially sometimes          graduated
## 1447     mostly anything    socially     never          graduated
## 1448                <NA>    socially     never               <NA>
## 1449                <NA>    socially     never            working
## 1450     mostly anything    socially sometimes          graduated
## 1451     mostly anything    socially sometimes            working
## 1452   strictly anything  not at all     never              space
## 1453     mostly anything    socially     never            working
## 1454     mostly anything       often      <NA>          graduated
## 1455            anything  very often     never               <NA>
## 1456        mostly vegan    socially     never          graduated
## 1457   strictly anything    socially     never            working
## 1458     mostly anything      rarely     never            working
## 1459     mostly anything    socially     never          graduated
## 1460            anything      rarely sometimes          graduated
## 1461   strictly anything    socially     never          graduated
## 1462            anything    socially     never            working
## 1463   strictly anything    socially      <NA>            working
## 1464   mostly vegetarian    socially     never          graduated
## 1465     mostly anything    socially sometimes            working
## 1466                <NA>    socially sometimes            working
## 1467                <NA>    socially     never          graduated
## 1468                <NA>    socially     never            working
## 1469                <NA>    socially      <NA>          graduated
## 1470                <NA>    socially     never               <NA>
## 1471                <NA>       often     never               <NA>
## 1472   mostly vegetarian    socially sometimes          graduated
## 1473     mostly anything    socially     never          graduated
## 1474                <NA>    socially     never          graduated
## 1475   mostly vegetarian    socially     never          graduated
## 1476   strictly anything    socially     never          graduated
## 1477                <NA>    socially     never          graduated
## 1478                <NA>    socially     never          graduated
## 1479     mostly anything    socially     never          graduated
## 1480   strictly anything    socially      <NA> college/university
## 1481            anything    socially      <NA>          graduated
## 1482                <NA>        <NA>     never          graduated
## 1483            anything    socially     never          graduated
## 1484            anything       often      <NA>          graduated
## 1485            anything    socially     never            working
## 1486                <NA>        <NA>     never          graduated
## 1487     mostly anything    socially     never          graduated
## 1488                <NA>      rarely     never          graduated
## 1489     mostly anything    socially      <NA>               <NA>
## 1490            anything      rarely     never          graduated
## 1491            anything    socially      <NA>          graduated
## 1492                <NA>    socially     never          graduated
## 1493                <NA>    socially     never            working
## 1494                <NA>    socially     never            working
## 1495                <NA>    socially     never          graduated
## 1496          vegetarian    socially     never            working
## 1497     mostly anything    socially      <NA>            working
## 1498     mostly anything    socially     never          graduated
## 1499 strictly vegetarian       often     never          graduated
## 1500                <NA>      rarely     never          graduated
## 1501                <NA>    socially     never          graduated
## 1502   strictly anything    socially     never          graduated
## 1503                <NA>        <NA>      <NA>          graduated
## 1504                <NA>    socially     never          graduated
## 1505     mostly anything    socially     never          graduated
## 1506   mostly vegetarian      rarely     never          graduated
## 1507            anything      rarely     never           two-year
## 1508                <NA>    socially     never          graduated
## 1509                <NA>    socially     never          graduated
## 1510     mostly anything    socially     never          graduated
## 1511     mostly anything    socially     never          graduated
## 1512                <NA>    socially     never          graduated
## 1513   mostly vegetarian    socially      <NA>          graduated
## 1514     mostly anything    socially     never          graduated
## 1515            anything    socially     never          graduated
## 1516     mostly anything       often      <NA>          graduated
## 1517                <NA>    socially      <NA>               <NA>
## 1518        mostly other    socially      <NA>          graduated
## 1519                <NA>    socially     never          graduated
## 1520   strictly anything    socially sometimes              space
## 1521     mostly anything    socially     never          graduated
## 1522   strictly anything    socially     never          graduated
## 1523   mostly vegetarian    socially sometimes            working
## 1524     mostly anything        <NA>      <NA>          graduated
## 1525     mostly anything    socially     never          graduated
## 1526     mostly anything    socially     never          graduated
## 1527                <NA>    socially      <NA>          graduated
## 1528                <NA>    socially     never          graduated
## 1529   strictly anything    socially      <NA>               <NA>
## 1530                <NA>    socially     never          graduated
## 1531     mostly anything    socially      <NA>          graduated
## 1532   strictly anything  not at all     never          graduated
## 1533     mostly anything    socially     never          graduated
## 1534            anything    socially     never college/university
## 1535   strictly anything    socially     never               <NA>
## 1536   strictly anything    socially     never          graduated
## 1537     mostly anything       often      <NA>          graduated
## 1538                <NA>    socially     never          graduated
## 1539   mostly vegetarian       often sometimes               <NA>
## 1540                <NA>        <NA>     never               <NA>
## 1541     mostly anything    socially      <NA>          graduated
## 1542   strictly anything    socially     never          graduated
## 1543     mostly anything    socially     never          graduated
## 1544                <NA>    socially     never               <NA>
## 1545     mostly anything    socially sometimes          graduated
## 1546                <NA>  not at all     never            working
## 1547                <NA>    socially sometimes            dropped
## 1548     mostly anything    socially sometimes          graduated
## 1549            anything    socially      <NA>          graduated
## 1550     mostly anything    socially     never          graduated
## 1551                <NA>    socially     never          graduated
## 1552                <NA>    socially     never          graduated
## 1553     mostly anything    socially     never            working
## 1554   strictly anything    socially     never          graduated
## 1555            anything    socially     never          graduated
## 1556                <NA>    socially     never          graduated
## 1557                <NA>    socially      <NA>          graduated
## 1558                <NA>    socially sometimes            dropped
## 1559                <NA>    socially     never            working
## 1560                <NA>    socially      <NA> college/university
## 1561   strictly anything    socially sometimes            working
## 1562            anything       often      <NA>          graduated
## 1563            anything    socially     never          graduated
## 1564                <NA>    socially sometimes          graduated
## 1565                <NA>    socially     never            working
## 1566            anything    socially sometimes          graduated
## 1567                <NA>    socially     never          graduated
## 1568     mostly anything       often     never            working
## 1569     mostly anything    socially sometimes            working
## 1570   strictly anything    socially sometimes          graduated
## 1571                <NA>    socially     never            working
## 1572     mostly anything        <NA>      <NA>            dropped
## 1573   strictly anything    socially     never          graduated
## 1574      strictly other    socially     never college/university
## 1575            anything    socially     never          graduated
## 1576            anything       often      <NA>          graduated
## 1577                <NA>    socially      <NA>          graduated
## 1578     mostly anything    socially     never          graduated
## 1579          vegetarian    socially      <NA>          graduated
## 1580     mostly anything    socially     never          graduated
## 1581                <NA>    socially     never          graduated
## 1582            anything    socially sometimes          graduated
## 1583                <NA>    socially     never            working
## 1584   mostly vegetarian    socially     never            working
## 1585     mostly anything    socially     never          graduated
## 1586                <NA>       often     never          graduated
## 1587     mostly anything      rarely     never          graduated
## 1588   strictly anything    socially     never          graduated
## 1589                <NA>       often      <NA>          graduated
## 1590        mostly other      rarely      <NA>          graduated
## 1591        mostly other    socially sometimes          graduated
## 1592                <NA>    socially     never          graduated
## 1593   mostly vegetarian    socially      <NA>          graduated
## 1594                <NA>    socially     never          graduated
## 1595                <NA>      rarely     never               <NA>
## 1596                <NA>    socially      <NA>          graduated
## 1597                <NA>    socially sometimes          graduated
## 1598     mostly anything        <NA>     never          graduated
## 1599               other    socially     never          graduated
## 1600                <NA>  not at all     never          graduated
## 1601     mostly anything    socially     never          graduated
## 1602   strictly anything    socially     never          graduated
## 1603                <NA>    socially     never               <NA>
## 1604     mostly anything    socially     never          graduated
## 1605                <NA>    socially      <NA>          graduated
## 1606                <NA>      rarely sometimes            working
## 1607        mostly other    socially     never          graduated
## 1608                <NA>    socially     never          graduated
## 1609                <NA>    socially sometimes          graduated
## 1610            anything    socially     never          graduated
## 1611        mostly other  not at all     never          graduated
## 1612   mostly vegetarian    socially      <NA>          graduated
## 1613      strictly vegan    socially      <NA>          graduated
## 1614                <NA>    socially     never          graduated
## 1615     mostly anything    socially     never          graduated
## 1616   strictly anything    socially sometimes            working
## 1617     mostly anything desperately sometimes          graduated
## 1618      strictly other    socially      <NA>            working
## 1619   strictly anything    socially      <NA>            working
## 1620   mostly vegetarian    socially      <NA>          graduated
## 1621      strictly vegan       often      <NA>               <NA>
## 1622     mostly anything    socially     never          graduated
## 1623            anything    socially     never          graduated
## 1624     mostly anything    socially     never          graduated
## 1625     mostly anything    socially      <NA>          graduated
## 1626                <NA>    socially      <NA> college/university
## 1627     mostly anything        <NA>      <NA>            working
## 1628   mostly vegetarian      rarely     never          graduated
## 1629     mostly anything      rarely     never          graduated
## 1630                <NA>    socially sometimes          graduated
## 1631     mostly anything      rarely     never          graduated
## 1632                <NA>    socially     never          graduated
## 1633            anything    socially      <NA>          graduated
## 1634     mostly anything    socially      <NA>          graduated
## 1635                <NA>    socially     never          graduated
## 1636   mostly vegetarian    socially      <NA>            working
## 1637   mostly vegetarian  not at all     never          graduated
## 1638            anything    socially     never          graduated
## 1639     mostly anything      rarely     never          graduated
## 1640     mostly anything    socially     never          graduated
## 1641                <NA>    socially sometimes          graduated
## 1642     mostly anything      rarely     never          graduated
## 1643   mostly vegetarian      rarely     never            working
## 1644   strictly anything    socially     never            dropped
## 1645                <NA>    socially sometimes               <NA>
## 1646     mostly anything      rarely      <NA>          graduated
## 1647                <NA>  not at all sometimes            working
## 1648            anything    socially     never          graduated
## 1649                <NA>    socially     never          graduated
## 1650 strictly vegetarian    socially     never          graduated
## 1651                <NA>    socially      <NA>            working
## 1652                <NA>        <NA>      <NA>               <NA>
## 1653                <NA>    socially     never            working
## 1654                <NA>    socially     never          graduated
## 1655                <NA>  very often     never            working
## 1656     mostly anything    socially     never          graduated
## 1657     mostly anything    socially      <NA>          graduated
## 1658                <NA>    socially      <NA>          graduated
## 1659     mostly anything    socially     never          graduated
## 1660                <NA>    socially     never          graduated
## 1661                <NA>        <NA>     never               <NA>
## 1662                <NA>    socially      <NA>          graduated
## 1663                <NA>    socially     never            working
## 1664                <NA>       often     never            working
## 1665     mostly anything  very often     never          graduated
## 1666     mostly anything    socially     never          graduated
## 1667   mostly vegetarian    socially     never          graduated
## 1668   strictly anything    socially      <NA>          graduated
## 1669     mostly anything      rarely      <NA>            working
## 1670                <NA>    socially      <NA>               <NA>
## 1671                <NA>    socially     never               <NA>
## 1672   strictly anything    socially      <NA>            working
## 1673            anything    socially     never          graduated
## 1674                <NA>    socially     never          graduated
## 1675                <NA>       often sometimes          graduated
## 1676            anything    socially     never          graduated
## 1677   mostly vegetarian    socially     never            working
## 1678     mostly anything    socially     never            working
## 1679          vegetarian  not at all     never               <NA>
## 1680   strictly anything    socially     never          graduated
## 1681        mostly other    socially sometimes            working
## 1682      strictly vegan      rarely     never          graduated
## 1683                <NA>       often      <NA>          graduated
## 1684                <NA>      rarely     never          graduated
## 1685                <NA>      rarely     never               <NA>
## 1686                <NA>    socially     never          graduated
## 1687   strictly anything    socially     never          graduated
## 1688                <NA>    socially sometimes            dropped
## 1689     mostly anything    socially     never          graduated
## 1690            anything      rarely     never          graduated
## 1691            anything    socially      <NA>          graduated
## 1692   mostly vegetarian    socially     never          graduated
## 1693                <NA>    socially     never               <NA>
## 1694     mostly anything    socially     never          graduated
## 1695     mostly anything    socially     never            working
## 1696            anything       often      <NA>               <NA>
## 1697     mostly anything    socially sometimes            working
## 1698     mostly anything    socially     never          graduated
## 1699     mostly anything    socially     never          graduated
## 1700                <NA>    socially     never            working
## 1701                <NA>  not at all     never          graduated
## 1702   strictly anything       often     never            working
## 1703                <NA>    socially     never          graduated
## 1704                <NA>       often sometimes            working
## 1705                <NA>    socially      <NA>          graduated
## 1706                <NA>    socially     never          graduated
## 1707                <NA>    socially     never          graduated
## 1708     mostly anything       often     never          graduated
## 1709     mostly anything    socially     never            working
## 1710                <NA>      rarely      <NA>          graduated
## 1711                <NA>    socially     never          graduated
## 1712                <NA>    socially      <NA>          graduated
## 1713                <NA>    socially      <NA>            working
## 1714                <NA>       often sometimes               <NA>
## 1715     mostly anything    socially     never          graduated
## 1716     mostly anything       often     never          graduated
## 1717            anything    socially     never          graduated
## 1718                <NA>      rarely     never          graduated
## 1719                <NA>    socially      <NA>            working
## 1720     mostly anything    socially     never          graduated
## 1721                <NA>    socially      <NA>          graduated
## 1722                <NA>    socially      <NA>          graduated
## 1723                <NA>    socially     never          graduated
## 1724     mostly anything    socially     never          graduated
## 1725            anything    socially     never          graduated
## 1726                <NA>    socially     never          graduated
## 1727            anything      rarely     never          graduated
## 1728     mostly anything    socially sometimes               <NA>
## 1729     mostly anything    socially     never          graduated
## 1730                <NA>    socially     never          graduated
## 1731        mostly vegan      rarely     never          graduated
## 1732                <NA>        <NA>      <NA>               <NA>
## 1733     mostly anything    socially     never          graduated
## 1734                <NA>  not at all     never          graduated
## 1735                <NA>    socially sometimes          graduated
## 1736     mostly anything    socially     never          graduated
## 1737                <NA>    socially     never          graduated
## 1738                <NA>    socially sometimes               <NA>
## 1739      strictly other    socially sometimes          graduated
## 1740                <NA>    socially     never          graduated
## 1741     mostly anything    socially      <NA>          graduated
## 1742     mostly anything    socially     never          graduated
## 1743                <NA>        <NA>     never               <NA>
## 1744                <NA>    socially     never          graduated
## 1745   mostly vegetarian      rarely      <NA>          graduated
## 1746     mostly anything    socially     never          graduated
## 1747     mostly anything    socially     never          graduated
## 1748                <NA>    socially     never            working
## 1749     mostly anything    socially sometimes          graduated
## 1750       mostly kosher    socially     never          graduated
## 1751     mostly anything    socially     never          graduated
## 1752   strictly anything    socially     never          graduated
## 1753     mostly anything    socially     never          graduated
## 1754            anything    socially     never          graduated
## 1755                <NA>        <NA>      <NA>               <NA>
## 1756                <NA>    socially     never          graduated
## 1757        mostly other    socially     never          graduated
## 1758     mostly anything    socially     never          graduated
## 1759                <NA>    socially     never            masters
## 1760                <NA>    socially     never            working
## 1761                <NA>    socially      <NA>          graduated
## 1762            anything    socially     never            dropped
## 1763                <NA>    socially     never          graduated
## 1764     mostly anything    socially     never          graduated
## 1765                <NA>    socially     never          graduated
## 1766   mostly vegetarian       often      <NA>          graduated
## 1767     mostly anything    socially     never          graduated
## 1768     mostly anything        <NA>      <NA>          graduated
## 1769                <NA>  not at all     never          graduated
## 1770   mostly vegetarian  not at all     never          graduated
## 1771                <NA>       often     never          graduated
## 1772            anything       often      <NA>            working
## 1773   mostly vegetarian    socially     never          graduated
## 1774     mostly anything    socially     never          graduated
## 1775     mostly anything    socially      <NA>          graduated
## 1776            anything       often      <NA>            working
## 1777                <NA>      rarely     never          graduated
## 1778   mostly vegetarian       often     often          graduated
## 1779        mostly vegan    socially     never            dropped
## 1780                <NA>    socially     never          graduated
## 1781     mostly anything    socially     never          graduated
## 1782     mostly anything    socially     never          graduated
## 1783   mostly vegetarian    socially     never          graduated
## 1784                <NA>    socially      <NA>          graduated
## 1785     mostly anything    socially     never          graduated
## 1786                <NA>    socially     never          graduated
## 1787                <NA>    socially     never          graduated
## 1788     mostly anything    socially     never            working
## 1789   strictly anything    socially      <NA>          graduated
## 1790   strictly anything    socially     never          graduated
## 1791                <NA>        <NA>      <NA>               <NA>
## 1792            anything    socially sometimes            working
## 1793   strictly anything    socially      <NA>          graduated
## 1794     mostly anything    socially     never          graduated
## 1795   strictly anything    socially      <NA>          graduated
## 1796                <NA>        <NA>     never               <NA>
## 1797   strictly anything      rarely sometimes               <NA>
## 1798   strictly anything  not at all     never          graduated
## 1799                <NA>  not at all     never            working
## 1800      strictly other    socially sometimes            working
## 1801     mostly anything    socially      <NA>               <NA>
## 1802     mostly anything    socially     never            working
## 1803     mostly anything       often sometimes            working
## 1804                <NA>    socially sometimes          graduated
## 1805                <NA>    socially     never            working
## 1806     mostly anything    socially      <NA>          graduated
## 1807                <NA>    socially     never            working
## 1808                <NA>    socially     never          graduated
## 1809     mostly anything    socially     never          graduated
## 1810                <NA>    socially     never          graduated
## 1811     mostly anything       often     never          graduated
## 1812                <NA>    socially     never          graduated
## 1813   strictly anything    socially     never          graduated
## 1814   strictly anything desperately     never          graduated
## 1815            anything    socially sometimes            dropped
## 1816                <NA>    socially      <NA>          graduated
## 1817     mostly anything    socially      <NA>          graduated
## 1818     mostly anything  not at all     never          graduated
## 1819                <NA>    socially     never          graduated
## 1820   mostly vegetarian    socially      <NA>          graduated
## 1821                <NA>    socially     never          graduated
## 1822                <NA>    socially      <NA>          graduated
## 1823   strictly anything      rarely     never          graduated
## 1824            anything    socially     never            working
## 1825   strictly anything      rarely     never          graduated
## 1826     mostly anything    socially     never          graduated
## 1827            anything    socially sometimes          graduated
## 1828                <NA>      rarely      <NA>          graduated
## 1829            anything    socially      <NA>          graduated
## 1830                <NA>    socially sometimes          graduated
## 1831 strictly vegetarian        <NA>     never          graduated
## 1832     mostly anything    socially      <NA>               <NA>
## 1833     mostly anything       often     never               <NA>
## 1834     mostly anything  not at all     never          graduated
## 1835                <NA>      rarely sometimes               <NA>
## 1836   strictly anything  not at all     never            working
## 1837     mostly anything    socially      <NA>            working
## 1838                <NA>    socially     never            working
## 1839                <NA>      rarely     never          graduated
## 1840                <NA>    socially     never          graduated
## 1841            anything    socially     never          graduated
## 1842     mostly anything    socially     never          graduated
## 1843                <NA>       often     never          graduated
## 1844   strictly anything    socially sometimes          graduated
## 1845                <NA>    socially     never          graduated
## 1846     mostly anything      rarely     never          graduated
## 1847                <NA>       often     never          graduated
## 1848 strictly vegetarian    socially      <NA>          graduated
## 1849            anything    socially     never          graduated
## 1850            anything    socially     never          graduated
## 1851     mostly anything    socially     never          graduated
## 1852      strictly vegan    socially sometimes            working
## 1853   strictly anything       often sometimes          graduated
## 1854                <NA>    socially sometimes          graduated
## 1855     mostly anything    socially     never          graduated
## 1856        mostly other    socially     never          graduated
## 1857     mostly anything      rarely     never          graduated
## 1858                <NA>       often     never            working
## 1859                <NA>    socially      <NA>            working
## 1860                <NA>    socially     never          graduated
## 1861            anything    socially sometimes          graduated
## 1862     mostly anything       often sometimes            working
## 1863                <NA>    socially      <NA>          graduated
## 1864                <NA>      rarely     never            working
## 1865   strictly anything    socially     never          graduated
## 1866                <NA>    socially      <NA>          graduated
## 1867   strictly anything desperately     never          graduated
## 1868                <NA>      rarely     never            working
## 1869     mostly anything    socially     never            working
## 1870                <NA>    socially     never          graduated
## 1871     mostly anything    socially      <NA>            working
## 1872     mostly anything    socially      <NA>               <NA>
## 1873                <NA>  not at all     never          graduated
## 1874                <NA>        <NA>     never               <NA>
## 1875     mostly anything  not at all sometimes          graduated
## 1876                <NA>    socially     never          graduated
## 1877   mostly vegetarian    socially     never          graduated
## 1878     mostly anything    socially     never          graduated
## 1879          vegetarian      rarely     never          graduated
## 1880   mostly vegetarian    socially sometimes            working
## 1881                <NA>    socially     never               <NA>
## 1882     mostly anything       often sometimes          graduated
## 1883                <NA>    socially     never            working
## 1884     mostly anything    socially sometimes          graduated
## 1885     mostly anything    socially     never            working
## 1886                <NA>    socially     never          graduated
## 1887                <NA>    socially     never               <NA>
## 1888                <NA>    socially      <NA>          graduated
## 1889            anything    socially     never          graduated
## 1890                <NA>    socially     never          graduated
## 1891                <NA>    socially      <NA>          graduated
## 1892     mostly anything    socially     never          graduated
## 1893   mostly vegetarian    socially      <NA>            working
## 1894   mostly vegetarian    socially     never          graduated
## 1895     mostly anything    socially     never            working
## 1896   strictly anything      rarely     never          graduated
## 1897                <NA>    socially     never               <NA>
## 1898                <NA>    socially      <NA>            working
## 1899     mostly anything        <NA>     never          graduated
## 1900            anything    socially     never          graduated
## 1901        mostly vegan  not at all     never          graduated
## 1902     mostly anything    socially     never          graduated
## 1903                <NA>       often sometimes          graduated
## 1904     mostly anything    socially sometimes            working
## 1905     mostly anything      rarely     never          graduated
## 1906        mostly other    socially sometimes               <NA>
## 1907                <NA>       often     never               <NA>
## 1908                <NA>    socially     never            working
## 1909            anything    socially     never          graduated
## 1910                <NA>    socially      <NA>          graduated
## 1911     mostly anything    socially sometimes            working
## 1912                <NA>    socially      <NA>          graduated
## 1913     mostly anything    socially     never          graduated
## 1914     mostly anything    socially     never            working
## 1915                <NA>  not at all     never          graduated
## 1916   strictly anything    socially      <NA>          graduated
## 1917                <NA>      rarely     never          graduated
## 1918                <NA>    socially      <NA>          graduated
## 1919     mostly anything    socially      <NA>          graduated
## 1920                <NA>    socially      <NA>          graduated
## 1921   mostly vegetarian    socially     never          graduated
## 1922                <NA>    socially     never          graduated
## 1923                <NA>        <NA>     never            working
## 1924                <NA>       often      <NA>          graduated
## 1925                <NA>    socially      <NA>          graduated
## 1926                <NA>        <NA>     never               <NA>
## 1927   mostly vegetarian  not at all     never          graduated
## 1928                <NA>    socially     never          graduated
## 1929     mostly anything    socially     never          graduated
## 1930            anything      rarely     never            dropped
## 1931     mostly anything  not at all sometimes          graduated
## 1932                <NA>    socially      <NA>          graduated
## 1933                <NA>    socially     never          graduated
## 1934                <NA>      rarely     never          graduated
## 1935     mostly anything    socially     never            working
## 1936            anything        <NA>      <NA>          graduated
## 1937            anything      rarely     never            working
## 1938                <NA>  not at all sometimes            working
## 1939   strictly anything    socially     never          graduated
## 1940     mostly anything    socially sometimes          graduated
## 1941            anything  not at all     never          graduated
## 1942     mostly anything       often     never          graduated
## 1943                <NA>      rarely     never            dropped
## 1944     mostly anything  not at all     never            working
## 1945     mostly anything      rarely     never               <NA>
## 1946                <NA>       often      <NA>            working
## 1947   strictly anything    socially     never            working
## 1948     mostly anything    socially      <NA>            dropped
## 1949     mostly anything      rarely     never          graduated
## 1950                <NA>    socially     never          graduated
## 1951     mostly anything  not at all     never            working
## 1952                <NA>      rarely     never            working
## 1953                <NA>    socially     never          graduated
## 1954   mostly vegetarian    socially      <NA>          graduated
## 1955   strictly anything    socially     never            working
## 1956     mostly anything    socially     never          graduated
## 1957     mostly anything    socially sometimes            working
## 1958     mostly anything  not at all     never            working
## 1959     mostly anything       often sometimes          graduated
## 1960                <NA>    socially     never            working
## 1961   mostly vegetarian    socially      <NA>            dropped
## 1962   strictly anything    socially     never          graduated
## 1963     mostly anything    socially     never          graduated
## 1964   mostly vegetarian    socially      <NA>          graduated
## 1965   strictly anything    socially     never          graduated
## 1966               vegan        <NA>      <NA>               <NA>
## 1967     mostly anything    socially     never               <NA>
## 1968                <NA>    socially sometimes            working
## 1969     mostly anything    socially     never            working
## 1970     mostly anything      rarely     never            working
## 1971                <NA>  not at all     never               <NA>
## 1972                <NA>    socially     never            working
## 1973               halal  not at all     never            working
## 1974                <NA>        <NA>     never               <NA>
## 1975     mostly anything      rarely     never          graduated
## 1976                <NA>  not at all     never               <NA>
## 1977   strictly anything    socially     never          graduated
## 1978                <NA>    socially     never               <NA>
## 1979                <NA>        <NA>      <NA>               <NA>
## 1980            anything    socially      <NA>               <NA>
## 1981            anything      rarely     never          graduated
## 1982     mostly anything       often     never               <NA>
## 1983                <NA>      rarely     never            working
## 1984     mostly anything    socially     never            working
## 1985                <NA>       often sometimes          graduated
## 1986   strictly anything    socially     never          graduated
## 1987                <NA>    socially     never          graduated
## 1988   strictly anything    socially     never          graduated
## 1989                <NA>    socially sometimes          graduated
## 1990                <NA>    socially sometimes            dropped
## 1991     mostly anything    socially     never            working
## 1992            anything    socially     never            working
## 1993                <NA>  not at all     never          graduated
## 1994            anything       often     never          graduated
## 1995                <NA>       often     never          graduated
## 1996                <NA>    socially     never          graduated
## 1997                <NA>      rarely     never            working
## 1998                <NA>    socially     never            working
## 1999                <NA>    socially     never          graduated
## 2000                <NA>    socially      <NA>          graduated
## 2001                <NA>      rarely     never            working
## 2002   strictly anything    socially     never            working
## 2003                <NA>    socially     never          graduated
## 2004                <NA>      rarely     never          graduated
## 2005                <NA>    socially     never          graduated
## 2006                <NA>      rarely     never          graduated
## 2007                <NA>    socially      <NA>          graduated
## 2008                <NA>    socially     never            working
## 2009                <NA>      rarely     never               <NA>
## 2010                <NA>      rarely     never          graduated
## 2011            anything    socially      <NA>          graduated
## 2012     mostly anything    socially      <NA>          graduated
## 2013     mostly anything    socially     never          graduated
## 2014                <NA>    socially     never          graduated
## 2015            anything    socially     never          graduated
## 2016                <NA>    socially      <NA>            working
## 2017 strictly vegetarian  not at all     never          graduated
## 2018                <NA>      rarely     never          graduated
## 2019            anything    socially     never          graduated
## 2020          vegetarian    socially      <NA>          graduated
## 2021   strictly anything      rarely     never            working
## 2022                <NA>    socially     never               <NA>
## 2023     mostly anything        <NA>     never          graduated
## 2024            anything    socially     never          graduated
## 2025                <NA>    socially      <NA>            working
## 2026   strictly anything  very often sometimes          graduated
## 2027   mostly vegetarian    socially     never          graduated
## 2028     mostly anything    socially     never          graduated
## 2029     mostly anything    socially      <NA>          graduated
## 2030                <NA>    socially     never               <NA>
## 2031   mostly vegetarian    socially      <NA>          graduated
## 2032                <NA>        <NA> sometimes          graduated
## 2033            anything    socially     never          graduated
## 2034   strictly anything    socially sometimes          graduated
## 2035     mostly anything       often      <NA>          graduated
## 2036                <NA>    socially     never            working
## 2037                <NA>    socially      <NA>            working
## 2038                <NA>    socially     never          graduated
## 2039   mostly vegetarian    socially     never          graduated
## 2040   strictly anything       often      <NA>          graduated
## 2041               other    socially     never          graduated
## 2042   strictly anything        <NA>      <NA>          graduated
## 2043     mostly anything    socially     never            working
## 2044                <NA>      rarely     never          graduated
## 2045          vegetarian    socially     never            working
## 2046        mostly halal  not at all     never          graduated
## 2047                <NA>  not at all     never          graduated
## 2048   mostly vegetarian    socially sometimes            working
## 2049        mostly vegan      rarely      <NA>          graduated
## 2050                <NA>    socially sometimes            working
## 2051 strictly vegetarian    socially sometimes            working
## 2052                <NA>  not at all     never            dropped
## 2053                <NA>    socially     never          graduated
## 2054            anything    socially     never          graduated
## 2055                <NA>    socially     never          graduated
## 2056                <NA>    socially     never            working
## 2057            anything    socially     never          graduated
## 2058     mostly anything    socially     never          graduated
## 2059                <NA>    socially     never               <NA>
## 2060                <NA>       often sometimes          graduated
## 2061     mostly anything       often sometimes           two-year
## 2062                <NA>    socially     never          graduated
## 2063                <NA>  not at all     never            working
## 2064                <NA>    socially     never          graduated
## 2065     mostly anything    socially     never          graduated
## 2066   strictly anything    socially sometimes            working
## 2067                <NA>       often sometimes          graduated
## 2068                <NA>    socially     never               <NA>
## 2069     mostly anything    socially     never          graduated
## 2070     mostly anything    socially     never          graduated
## 2071   strictly anything  not at all     never          graduated
## 2072     mostly anything    socially      <NA>          graduated
## 2073                <NA>       often     never          graduated
## 2074                <NA>       often      <NA>            dropped
## 2075                <NA>    socially     never          graduated
## 2076     mostly anything    socially     never            working
## 2077     mostly anything    socially     never            working
## 2078     mostly anything    socially     never            dropped
## 2079     mostly anything  not at all     never            working
## 2080     mostly anything  not at all     never            dropped
## 2081            anything    socially     never          graduated
## 2082   strictly anything    socially sometimes          graduated
## 2083        mostly other       often      <NA>          graduated
## 2084                <NA>  not at all      <NA>          graduated
## 2085     mostly anything    socially     never          graduated
## 2086                <NA>    socially     never          graduated
## 2087            anything    socially     never          graduated
## 2088            anything    socially sometimes            working
## 2089     mostly anything    socially     never          graduated
## 2090                <NA>        <NA>      <NA>               <NA>
## 2091                <NA>    socially sometimes          graduated
## 2092     mostly anything    socially     never            working
## 2093     mostly anything    socially sometimes          graduated
## 2094   strictly anything    socially      <NA>           two-year
## 2095            anything    socially     never            working
## 2096     mostly anything    socially     never          graduated
## 2097     mostly anything    socially     never          graduated
## 2098   strictly anything    socially      <NA>          graduated
## 2099   strictly anything       often     never          graduated
## 2100            anything    socially     never          graduated
## 2101               other       often     never               <NA>
## 2102                <NA>    socially     never          graduated
## 2103                <NA>    socially     never          graduated
## 2104        mostly other    socially     never          graduated
## 2105                <NA>    socially      <NA>               <NA>
## 2106            anything    socially      <NA>          graduated
## 2107                <NA>        <NA>      <NA>          graduated
## 2108     mostly anything    socially     never            working
## 2109   strictly anything    socially     never            working
## 2110            anything    socially      <NA>          graduated
## 2111     mostly anything    socially sometimes            working
## 2112      strictly vegan  not at all     never          graduated
## 2113            anything  not at all     never          graduated
## 2114     mostly anything    socially     never          graduated
## 2115     mostly anything    socially     never          graduated
## 2116   mostly vegetarian    socially     never            working
## 2117     mostly anything    socially     never          graduated
## 2118            anything    socially     never          graduated
## 2119          vegetarian    socially     never          graduated
## 2120                <NA>    socially      <NA>          graduated
## 2121                <NA>      rarely     never          graduated
## 2122                <NA>    socially     never               <NA>
## 2123                <NA>    socially     never          graduated
## 2124                <NA>    socially     never          graduated
## 2125                <NA>       often sometimes          graduated
## 2126                <NA>    socially     never          graduated
## 2127                <NA>      rarely      <NA>          graduated
## 2128                <NA>    socially     never            working
## 2129            anything       often sometimes          graduated
## 2130     mostly anything    socially     never          graduated
## 2131     mostly anything      rarely     never          graduated
## 2132 strictly vegetarian      rarely     never          graduated
## 2133     mostly anything      rarely     never            working
## 2134                <NA>      rarely     never            working
## 2135                <NA>    socially     never            working
## 2136                <NA>    socially     never          graduated
## 2137     mostly anything    socially     never          graduated
## 2138                <NA>    socially      <NA>               <NA>
## 2139                <NA>  not at all     never          graduated
## 2140     mostly anything       often sometimes          graduated
## 2141      strictly vegan  not at all     never          graduated
## 2142                <NA>    socially      <NA>          graduated
## 2143                <NA>       often     never            dropped
## 2144            anything    socially      <NA>          graduated
## 2145     mostly anything    socially     never          graduated
## 2146 strictly vegetarian    socially     never          graduated
## 2147            anything    socially sometimes               <NA>
## 2148     mostly anything    socially     never          graduated
## 2149     mostly anything    socially     never          graduated
## 2150     mostly anything    socially     never          graduated
## 2151            anything    socially     never          graduated
## 2152     mostly anything    socially sometimes               <NA>
## 2153   strictly anything    socially      <NA>            working
## 2154            anything    socially      <NA>            working
## 2155                <NA>    socially      <NA>          graduated
## 2156     mostly anything    socially     never          graduated
## 2157          vegetarian    socially     never            working
## 2158                <NA>    socially     never          graduated
## 2159     mostly anything    socially     never          graduated
## 2160   mostly vegetarian    socially     never          graduated
## 2161                <NA>    socially     never college/university
## 2162                <NA>    socially     never            working
## 2163                <NA>    socially      <NA>          graduated
## 2164                <NA>    socially     never          graduated
## 2165                <NA>       often sometimes               <NA>
## 2166     mostly anything    socially     never          graduated
## 2167     mostly anything    socially     never          graduated
## 2168   strictly anything    socially     never            dropped
## 2169                <NA>    socially     never          graduated
## 2170   mostly vegetarian       often     never          graduated
## 2171                <NA>    socially     never          graduated
## 2172               other  not at all     never          graduated
## 2173                <NA>      rarely     never               <NA>
## 2174                <NA>      rarely     never            working
## 2175                <NA>    socially      <NA>          graduated
## 2176     mostly anything    socially     never          graduated
## 2177     mostly anything  not at all     never          graduated
## 2178                <NA>      rarely     never               <NA>
## 2179     mostly anything      rarely     never            working
## 2180     mostly anything    socially     never            working
## 2181     mostly anything    socially     never               <NA>
## 2182   strictly anything    socially      <NA>          graduated
## 2183   strictly anything    socially     never          graduated
## 2184     mostly anything    socially     never          graduated
## 2185     mostly anything    socially     never          graduated
## 2186            anything    socially sometimes               <NA>
## 2187   mostly vegetarian      rarely     never          graduated
## 2188                <NA>    socially     never            working
## 2189                <NA>    socially      <NA>          graduated
## 2190                <NA>    socially      <NA>          graduated
## 2191   strictly anything    socially     never          graduated
## 2192                <NA>        <NA>     never               <NA>
## 2193                <NA>    socially      <NA>          graduated
## 2194   strictly anything    socially     never          graduated
## 2195            anything       often     never          graduated
## 2196     mostly anything      rarely      <NA> college/university
## 2197   strictly anything    socially sometimes          graduated
## 2198            anything    socially sometimes               <NA>
## 2199            anything    socially     never          graduated
## 2200   mostly vegetarian    socially      <NA>            working
## 2201     mostly anything    socially      <NA>          graduated
## 2202                <NA>        <NA>      <NA>          graduated
## 2203          vegetarian        <NA>      <NA>          graduated
## 2204   strictly anything    socially     never            dropped
## 2205                <NA>        <NA>      <NA>          graduated
## 2206                <NA>    socially      <NA>          graduated
## 2207     mostly anything  not at all      <NA>          graduated
## 2208                <NA>    socially     never          graduated
## 2209                <NA>    socially     never          graduated
## 2210            anything    socially     never          graduated
## 2211                <NA>    socially     never               <NA>
## 2212                <NA>      rarely      <NA>          graduated
## 2213   mostly vegetarian        <NA>      <NA>            working
## 2214                <NA>    socially sometimes college/university
## 2215                <NA>    socially      <NA>               <NA>
## 2216            anything    socially      <NA>          graduated
## 2217            anything    socially      <NA>               <NA>
## 2218                <NA>        <NA>     never          graduated
## 2219     mostly anything    socially     never          graduated
## 2220                <NA>        <NA>     never            working
## 2221     mostly anything       often sometimes          graduated
## 2222            anything    socially sometimes               <NA>
## 2223     mostly anything    socially     never          graduated
## 2224   mostly vegetarian    socially     never          graduated
## 2225     mostly anything    socially     never          graduated
## 2226                <NA>       often      <NA>               <NA>
## 2227                <NA>    socially     never          graduated
## 2228     mostly anything    socially     never          graduated
## 2229                <NA>      rarely sometimes          graduated
## 2230     mostly anything       often     never          graduated
## 2231                <NA>      rarely      <NA>          graduated
## 2232   mostly vegetarian    socially     never          graduated
## 2233     mostly anything    socially     never          graduated
## 2234     mostly anything    socially     never          graduated
## 2235     mostly anything    socially sometimes            working
## 2236            anything       often sometimes            working
## 2237     mostly anything    socially     never            working
## 2238     mostly anything      rarely     never          graduated
## 2239                <NA>      rarely     never          graduated
## 2240            anything      rarely     never          graduated
## 2241                <NA>    socially     never            working
## 2242                <NA>    socially      <NA>          graduated
## 2243                <NA>    socially      <NA>            working
## 2244            anything    socially sometimes            working
## 2245                <NA>    socially     never               <NA>
## 2246                <NA>    socially     never          graduated
## 2247     mostly anything      rarely     never            working
## 2248            anything    socially     never            working
## 2249        mostly vegan    socially sometimes          graduated
## 2250     mostly anything    socially     never          graduated
## 2251                <NA>    socially sometimes college/university
## 2252 strictly vegetarian    socially sometimes            working
## 2253            anything    socially     never          graduated
## 2254            anything    socially sometimes          graduated
## 2255                <NA>    socially     never          graduated
## 2256            anything    socially      <NA>          graduated
## 2257       mostly kosher      rarely     never            working
## 2258                <NA>    socially     never          graduated
## 2259                <NA>    socially     never            working
## 2260     mostly anything    socially      <NA>          graduated
## 2261            anything    socially sometimes          graduated
## 2262     mostly anything    socially sometimes            dropped
## 2263   strictly anything    socially     never          graduated
## 2264                <NA>    socially     never          graduated
## 2265        mostly vegan  not at all     never          graduated
## 2266     mostly anything    socially     never          graduated
## 2267                <NA>    socially     never          graduated
## 2268                <NA>    socially      <NA>               <NA>
## 2269   mostly vegetarian    socially sometimes          graduated
## 2270            anything    socially     never          graduated
## 2271     mostly anything    socially     never          graduated
## 2272     mostly anything    socially     never          graduated
## 2273   strictly anything    socially     never          graduated
## 2274                <NA>    socially     never               <NA>
## 2275        mostly other    socially     never            working
## 2276   strictly anything    socially sometimes          graduated
## 2277            anything       often     never          graduated
## 2278                <NA>    socially     never               <NA>
## 2279                <NA>    socially     never          graduated
## 2280                <NA>       often     never          graduated
## 2281                <NA>    socially sometimes          graduated
## 2282      strictly other    socially     never            working
## 2283                <NA>    socially     never          graduated
## 2284                <NA>       often     never          graduated
## 2285     mostly anything    socially     never          graduated
## 2286   strictly anything    socially      <NA>          graduated
## 2287     mostly anything      rarely     never          graduated
## 2288 strictly vegetarian    socially      <NA>               <NA>
## 2289            anything    socially      <NA>          graduated
## 2290     mostly anything      rarely     never            working
## 2291            anything  not at all      <NA>            working
## 2292     mostly anything    socially     never          graduated
## 2293   strictly anything    socially     never          graduated
## 2294                <NA>    socially sometimes          graduated
## 2295                <NA>        <NA>     never               <NA>
## 2296     mostly anything    socially     never          graduated
## 2297                <NA>    socially     never          graduated
## 2298     mostly anything    socially      <NA>            working
## 2299                <NA>    socially     never               <NA>
## 2300            anything    socially     never          graduated
## 2301     mostly anything    socially sometimes          graduated
## 2302     mostly anything    socially     never          graduated
## 2303                <NA>    socially     never          graduated
## 2304                <NA>    socially     never            working
## 2305                <NA>  not at all     never               high
## 2306                <NA>    socially     never               <NA>
## 2307                <NA>    socially     never               <NA>
## 2308        mostly other    socially sometimes          graduated
## 2309     mostly anything  not at all     never            working
## 2310                <NA>       often      <NA>          graduated
## 2311     mostly anything    socially     never          graduated
## 2312     mostly anything    socially      <NA>            dropped
## 2313        mostly vegan      rarely      <NA>          graduated
## 2314                <NA>    socially     never               <NA>
## 2315            anything    socially sometimes          graduated
## 2316                <NA>        <NA>     never college/university
## 2317                <NA>    socially      <NA>            dropped
## 2318          vegetarian    socially      <NA>            dropped
## 2319     mostly anything    socially sometimes            working
## 2320                <NA>    socially     never          graduated
## 2321                <NA>    socially     never          graduated
## 2322     mostly anything        <NA>      <NA>          graduated
## 2323                <NA>    socially     never          graduated
## 2324     mostly anything    socially sometimes          graduated
## 2325                <NA>      rarely     never          graduated
## 2326                <NA>    socially     never          graduated
## 2327            anything    socially      <NA>            working
## 2328                <NA>    socially      <NA>               <NA>
## 2329   strictly anything    socially      <NA>            working
## 2330                <NA>    socially sometimes          graduated
## 2331                <NA>    socially     never            working
## 2332     mostly anything    socially sometimes          graduated
## 2333                <NA>    socially     never          graduated
## 2334                <NA>    socially     never           two-year
## 2335   strictly anything    socially     never               <NA>
## 2336     mostly anything    socially     never            working
## 2337            anything    socially     never          graduated
## 2338            anything    socially     never           two-year
## 2339                <NA>    socially     never            working
## 2340     mostly anything    socially      <NA>            working
## 2341                <NA>    socially     never               <NA>
## 2342     mostly anything    socially     never          graduated
## 2343        mostly other    socially     never          graduated
## 2344      strictly vegan    socially sometimes            working
## 2345     mostly anything    socially     never            working
## 2346            anything       often sometimes            dropped
## 2347            anything    socially     never          graduated
## 2348                <NA>    socially     never               <NA>
## 2349     mostly anything    socially     never            working
## 2350     mostly anything    socially     never            dropped
## 2351     mostly anything    socially     never            working
## 2352                <NA>    socially     never          graduated
## 2353                <NA>      rarely     never          graduated
## 2354                <NA>    socially     never          graduated
## 2355     mostly anything        <NA>      <NA>          graduated
## 2356     mostly anything    socially      <NA>            working
## 2357        mostly other      rarely      <NA>            working
## 2358                <NA>    socially     never college/university
## 2359     mostly anything    socially     never          graduated
## 2360                <NA>    socially sometimes          graduated
## 2361            anything       often sometimes            working
## 2362                <NA>    socially sometimes          graduated
## 2363   strictly anything  very often sometimes            working
## 2364                <NA>    socially     never college/university
## 2365     mostly anything    socially sometimes          graduated
## 2366     mostly anything    socially     never          graduated
## 2367   strictly anything    socially     never          graduated
## 2368                <NA>    socially      <NA>          graduated
## 2369                <NA>    socially      <NA>          graduated
## 2370                <NA>    socially sometimes          graduated
## 2371                <NA>      rarely     never            dropped
## 2372            anything  not at all     never          graduated
## 2373                <NA>    socially     never            working
## 2374                <NA>    socially      <NA>          graduated
## 2375                <NA>    socially     never          graduated
## 2376   mostly vegetarian    socially      <NA>          graduated
## 2377            anything  not at all     never          graduated
## 2378 strictly vegetarian    socially     never          graduated
## 2379                <NA>    socially      <NA>          graduated
## 2380                <NA>    socially     never               <NA>
## 2381                <NA>    socially sometimes            working
## 2382                <NA>    socially     never          graduated
## 2383                <NA>    socially     never               <NA>
## 2384                <NA>    socially     never            working
## 2385            anything    socially     never               <NA>
## 2386     mostly anything    socially     never            working
## 2387     mostly anything    socially     never          graduated
## 2388                <NA>    socially      <NA>          graduated
## 2389                <NA>    socially     never          graduated
## 2390                <NA>    socially     never               <NA>
## 2391                <NA>    socially      <NA>          graduated
## 2392            anything    socially      <NA>            masters
## 2393               other    socially sometimes            working
## 2394   strictly anything      rarely     never          graduated
## 2395     mostly anything    socially     never          graduated
## 2396     mostly anything    socially     never            dropped
## 2397     mostly anything    socially     never          graduated
## 2398     mostly anything  not at all     never          graduated
## 2399     mostly anything    socially     never          graduated
## 2400                <NA>        <NA>      <NA>          graduated
## 2401                <NA>    socially     never            working
## 2402                <NA>    socially sometimes          graduated
## 2403                <NA>      rarely     never            working
## 2404     mostly anything    socially      <NA>          graduated
## 2405     mostly anything    socially sometimes          graduated
## 2406     mostly anything       often sometimes          graduated
## 2407   mostly vegetarian    socially     never            working
## 2408            anything    socially     never            working
## 2409   strictly anything    socially     never            working
## 2410                <NA>    socially     never            working
## 2411                <NA>  not at all     never            working
## 2412                <NA>    socially     never            working
## 2413                <NA>    socially sometimes          graduated
## 2414   strictly anything    socially     never          graduated
## 2415                <NA>    socially sometimes          graduated
## 2416                <NA>    socially     never          graduated
## 2417            anything    socially     never college/university
## 2418     mostly anything    socially      <NA>          graduated
## 2419     mostly anything       often     never          graduated
## 2420                <NA>    socially      <NA>          graduated
## 2421   strictly anything    socially     never          graduated
## 2422                <NA>    socially     never          graduated
## 2423                <NA>    socially     never            working
## 2424     mostly anything    socially      <NA>            working
## 2425     mostly anything    socially     never          graduated
## 2426 strictly vegetarian    socially     never          graduated
## 2427                <NA>    socially     never          graduated
## 2428                <NA>        <NA>     never               <NA>
## 2429                <NA>    socially      <NA>          graduated
## 2430            anything    socially     never            working
## 2431                <NA>    socially      <NA>          graduated
## 2432                <NA>       often     never          graduated
## 2433                <NA>       often     never          graduated
## 2434                <NA>    socially sometimes            dropped
## 2435     mostly anything    socially sometimes          graduated
## 2436     mostly anything    socially     never          graduated
## 2437            anything       often      <NA>          graduated
## 2438   strictly anything  not at all sometimes            dropped
## 2439                <NA>    socially     never          graduated
## 2440                <NA>    socially     never          graduated
## 2441   strictly anything    socially     never          graduated
## 2442 strictly vegetarian       often      <NA>          graduated
## 2443   strictly anything    socially      <NA>            working
## 2444     mostly anything    socially     never          graduated
## 2445                <NA>        <NA>     never               <NA>
## 2446                <NA>    socially     never          graduated
## 2447                <NA>    socially     never            working
## 2448                <NA>    socially     never          graduated
## 2449                <NA>       often sometimes          graduated
## 2450     mostly anything    socially     never            working
## 2451                <NA>    socially     never          graduated
## 2452                <NA>    socially     never            working
## 2453                <NA>        <NA>      <NA>               <NA>
## 2454                <NA>    socially      <NA>               <NA>
## 2455                <NA>      rarely     never          graduated
## 2456            anything       often sometimes          graduated
## 2457            anything  not at all     never               <NA>
## 2458            anything    socially     never          graduated
## 2459                <NA>      rarely     never               <NA>
## 2460                <NA>    socially sometimes            working
## 2461                <NA>    socially     never            working
## 2462     mostly anything    socially     never          graduated
## 2463            anything       often     never college/university
## 2464                <NA>    socially      <NA>          graduated
## 2465                <NA>    socially     never          graduated
## 2466   mostly vegetarian      rarely     never            working
## 2467                <NA>    socially     never               <NA>
## 2468                <NA>    socially      <NA>          graduated
## 2469   strictly anything    socially     never          graduated
## 2470     mostly anything    socially     never            working
## 2471                <NA>       often      <NA>          graduated
## 2472     mostly anything    socially     never          graduated
## 2473     mostly anything    socially     never          graduated
## 2474     mostly anything    socially     never          graduated
## 2475 strictly vegetarian    socially      <NA>            working
## 2476                <NA>       often      <NA>          graduated
## 2477   mostly vegetarian    socially     never               <NA>
## 2478     mostly anything    socially     never            working
## 2479        mostly halal      rarely     never            working
## 2480   strictly anything    socially sometimes          graduated
## 2481   strictly anything    socially      <NA>          graduated
## 2482                <NA>    socially     never            working
## 2483                <NA>    socially sometimes            working
## 2484     mostly anything    socially     never          graduated
## 2485                <NA>      rarely     never          graduated
## 2486                <NA>    socially     never          graduated
## 2487                <NA>    socially     never          graduated
## 2488   strictly anything    socially      <NA>               <NA>
## 2489     mostly anything    socially     never            working
## 2490                <NA>    socially     never          graduated
## 2491                <NA>    socially     never          graduated
## 2492                <NA>    socially      <NA>          graduated
## 2493                <NA>    socially      <NA>          graduated
## 2494                <NA>        <NA>      <NA>               <NA>
## 2495                <NA>    socially     never          graduated
## 2496                <NA>        <NA>      <NA>          graduated
## 2497     mostly anything    socially     never          graduated
## 2498            anything    socially     never            working
## 2499                <NA>    socially     never          graduated
## 2500            anything    socially     never          graduated
## 2501                <NA>    socially sometimes          graduated
## 2502     mostly anything    socially      <NA>          graduated
## 2503                <NA>    socially     never          graduated
## 2504     mostly anything desperately     never          graduated
## 2505     mostly anything    socially sometimes            working
## 2506     mostly anything      rarely sometimes            working
## 2507                <NA>        <NA>     never          graduated
## 2508                <NA>      rarely     never          graduated
## 2509                <NA>    socially     never          graduated
## 2510   strictly anything    socially      <NA>               <NA>
## 2511      strictly other       often     never          graduated
## 2512   mostly vegetarian    socially     never            working
## 2513                <NA>        <NA>      <NA>               <NA>
## 2514            anything  not at all     never          graduated
## 2515                <NA>    socially      <NA>            working
## 2516                <NA>    socially sometimes          graduated
## 2517     mostly anything       often     never            working
## 2518            anything        <NA>     never          graduated
## 2519     mostly anything        <NA>      <NA>          graduated
## 2520     mostly anything    socially     never          graduated
## 2521            anything    socially     never          graduated
## 2522   strictly anything    socially     never            working
## 2523                <NA>    socially     never               <NA>
## 2524                <NA>        <NA>      <NA>               <NA>
## 2525                <NA>    socially     never            dropped
## 2526   strictly anything    socially sometimes          graduated
## 2527            anything  very often sometimes college/university
## 2528   strictly anything    socially     never            dropped
## 2529                <NA>  not at all     never               <NA>
## 2530                <NA>    socially     never            working
## 2531                <NA>    socially     never          graduated
## 2532                <NA>        <NA>      <NA>               <NA>
## 2533     mostly anything    socially     never          graduated
## 2534   mostly vegetarian    socially     never          graduated
## 2535                <NA>        <NA>      <NA>          graduated
## 2536     mostly anything    socially     never            working
## 2537                <NA>    socially     never               <NA>
## 2538            anything  not at all     never            working
## 2539                <NA>  not at all     never          graduated
## 2540                <NA>    socially      <NA>          graduated
## 2541     mostly anything      rarely     never          graduated
## 2542     mostly anything    socially sometimes          graduated
## 2543     mostly anything    socially      <NA>          graduated
## 2544   mostly vegetarian    socially     never          graduated
## 2545                <NA>    socially sometimes            working
## 2546                <NA>    socially sometimes          graduated
## 2547                <NA>  very often     never          graduated
## 2548                <NA>    socially sometimes            working
## 2549                <NA>    socially     never          graduated
## 2550                <NA>    socially     never          graduated
## 2551                <NA>    socially     never               <NA>
## 2552     mostly anything    socially      <NA>          graduated
## 2553                <NA>      rarely     never          graduated
## 2554            anything      rarely     never            working
## 2555     mostly anything  not at all     never            working
## 2556     mostly anything desperately      <NA>          graduated
## 2557     mostly anything  not at all     never          graduated
## 2558   mostly vegetarian    socially     never          graduated
## 2559            anything    socially sometimes          graduated
## 2560                <NA>      rarely     never          graduated
## 2561                <NA>    socially     never            working
## 2562     mostly anything    socially     never          graduated
## 2563     mostly anything    socially     never          graduated
## 2564                <NA>    socially sometimes          graduated
## 2565   strictly anything       often      <NA>          graduated
## 2566     mostly anything    socially      <NA>               <NA>
## 2567                <NA>    socially     never          graduated
## 2568                <NA>      rarely     never          graduated
## 2569   mostly vegetarian    socially     never          graduated
## 2570      strictly other        <NA>      <NA>          graduated
## 2571                <NA>    socially      <NA>          graduated
## 2572                <NA>       often      <NA>          graduated
## 2573                <NA>    socially     never               <NA>
## 2574                <NA>        <NA>     never          graduated
## 2575   strictly anything    socially      <NA>          graduated
## 2576        mostly vegan    socially     never          graduated
## 2577                <NA>    socially     never          graduated
## 2578                <NA>       often sometimes          graduated
## 2579            anything    socially     never               <NA>
## 2580                <NA>    socially     never          graduated
## 2581                <NA>    socially      <NA>          graduated
## 2582                <NA>    socially     never          graduated
## 2583                <NA>    socially      <NA>          graduated
## 2584                <NA>    socially sometimes          graduated
## 2585            anything    socially     never               <NA>
## 2586            anything    socially     never          graduated
## 2587     mostly anything    socially     never          graduated
## 2588     mostly anything    socially     never          graduated
## 2589                <NA>    socially     never          graduated
## 2590                <NA>    socially     never          graduated
## 2591            anything    socially     never            working
## 2592            anything    socially     never               <NA>
## 2593                <NA>    socially      <NA>          graduated
## 2594     mostly anything    socially     never          graduated
## 2595     mostly anything       often     never          graduated
## 2596      strictly halal    socially      <NA>          graduated
## 2597        mostly other    socially     never          graduated
## 2598                <NA>    socially     never               <NA>
## 2599                <NA>        <NA>     never               <NA>
## 2600     mostly anything    socially     never          graduated
## 2601          vegetarian       often     never          graduated
## 2602     mostly anything    socially     never            working
## 2603     mostly anything       often     never          graduated
## 2604                <NA>    socially      <NA>            working
## 2605                <NA>    socially     never          graduated
## 2606     mostly anything    socially     never          graduated
## 2607                <NA>       often     never               <NA>
## 2608                <NA>        <NA>      <NA>               <NA>
## 2609            anything        <NA>      <NA>          graduated
## 2610                <NA>    socially     never          graduated
## 2611                <NA>    socially      <NA>            working
## 2612                <NA>       often sometimes          graduated
## 2613                <NA>      rarely      <NA>          graduated
## 2614                <NA>       often      <NA>          graduated
## 2615                <NA>    socially sometimes          graduated
## 2616                <NA>    socially     never          graduated
## 2617                <NA>    socially     never          graduated
## 2618            anything      rarely     never           two-year
## 2619     mostly anything    socially     never          graduated
## 2620     mostly anything    socially      <NA>            working
## 2621                <NA>        <NA> sometimes               <NA>
## 2622   strictly anything  not at all     never          graduated
## 2623                <NA>    socially      <NA>          graduated
## 2624                <NA>    socially     never          graduated
## 2625                <NA>    socially     never          graduated
## 2626                <NA>  not at all     never          graduated
## 2627     mostly anything      rarely     never          graduated
## 2628                <NA>    socially sometimes          graduated
## 2629                <NA>    socially      <NA>          graduated
## 2630     mostly anything    socially     never          graduated
## 2631   strictly anything    socially      <NA>          graduated
## 2632   strictly anything    socially      <NA>          graduated
## 2633     mostly anything    socially     never            dropped
## 2634                <NA>    socially     never            working
## 2635          vegetarian    socially     never          graduated
## 2636     mostly anything    socially     never          graduated
## 2637     mostly anything    socially     never          graduated
## 2638     mostly anything    socially      <NA>          graduated
## 2639     mostly anything    socially     never            working
## 2640   strictly anything      rarely     never            working
## 2641                <NA>    socially sometimes               <NA>
## 2642                <NA>    socially sometimes          graduated
## 2643   strictly anything    socially     never            dropped
## 2644     mostly anything    socially     never          graduated
## 2645     mostly anything    socially     never            working
## 2646        mostly vegan    socially     never          graduated
## 2647                <NA>    socially     never          graduated
## 2648                <NA>    socially     never          graduated
## 2649     mostly anything    socially     never          graduated
## 2650               other    socially      <NA>          graduated
## 2651                <NA>    socially     never          graduated
## 2652 strictly vegetarian    socially sometimes          graduated
## 2653                <NA>  not at all     never               <NA>
## 2654     mostly anything    socially     never            working
## 2655                <NA>        <NA>     never               <NA>
## 2656                <NA>    socially     never          graduated
## 2657   mostly vegetarian    socially sometimes          graduated
## 2658   mostly vegetarian    socially     never          graduated
## 2659     mostly anything    socially     never          graduated
## 2660            anything    socially     never          graduated
## 2661   strictly anything       often      <NA>            working
## 2662                <NA>  not at all     never            working
## 2663     mostly anything    socially     never          graduated
## 2664     mostly anything        <NA>     never               <NA>
## 2665                <NA>        <NA>      <NA>          graduated
## 2666   strictly anything    socially      <NA>          graduated
## 2667     mostly anything    socially     never          graduated
## 2668            anything    socially     never            working
## 2669            anything    socially     never            working
## 2670     mostly anything    socially     never            working
## 2671     mostly anything      rarely     never            working
## 2672                <NA>    socially     never            working
## 2673     mostly anything       often     never          graduated
## 2674   strictly anything       often sometimes          graduated
## 2675     mostly anything    socially     never          graduated
## 2676                <NA>    socially     never          graduated
## 2677            anything    socially     never            masters
## 2678                <NA>    socially      <NA>          graduated
## 2679                <NA>      rarely     never          graduated
## 2680            anything  not at all     never          graduated
## 2681                <NA>       often      <NA>            working
## 2682                <NA>    socially      <NA>          graduated
## 2683     mostly anything    socially sometimes          graduated
## 2684                <NA>    socially sometimes          graduated
## 2685     mostly anything    socially      <NA>          graduated
## 2686      strictly other  not at all sometimes            dropped
## 2687                <NA>    socially     never          graduated
## 2688     mostly anything       often     never          graduated
## 2689     mostly anything      rarely     never          graduated
## 2690                <NA>    socially     never            working
## 2691                <NA>        <NA>      <NA>               <NA>
## 2692                <NA>       often     never            working
## 2693     mostly anything    socially sometimes          graduated
## 2694                <NA>    socially     never          graduated
## 2695                <NA>        <NA>      <NA>          graduated
## 2696            anything    socially     never          graduated
## 2697     mostly anything    socially     never               <NA>
## 2698                <NA>    socially     never          graduated
## 2699            anything    socially     never            working
## 2700                <NA>    socially      <NA>            working
## 2701   strictly anything    socially     never               <NA>
## 2702     mostly anything        <NA>      <NA>          graduated
## 2703     mostly anything      rarely     never          graduated
## 2704                <NA>    socially     never            working
## 2705                <NA>        <NA>     never               <NA>
## 2706   mostly vegetarian    socially     never            working
## 2707                <NA>    socially     never          graduated
## 2708     mostly anything    socially     never          graduated
## 2709            anything    socially     never          graduated
## 2710   mostly vegetarian    socially     never          graduated
## 2711 strictly vegetarian    socially sometimes            working
## 2712                <NA>       often     never          graduated
## 2713            anything    socially     never           two-year
## 2714     mostly anything    socially     never          graduated
## 2715     mostly anything       often     never          graduated
## 2716     mostly anything    socially     never          graduated
## 2717   mostly vegetarian    socially      <NA>          graduated
## 2718                <NA>    socially     never            working
## 2719     mostly anything    socially     never          graduated
## 2720                <NA>    socially     never          graduated
## 2721     mostly anything    socially     never          graduated
## 2722            anything    socially     never college/university
## 2723                <NA>    socially     never          graduated
## 2724   strictly anything       often     never          graduated
## 2725     mostly anything    socially     never          graduated
## 2726                <NA>    socially     never          graduated
## 2727            anything    socially     never          graduated
## 2728                <NA>    socially      <NA>          graduated
## 2729     mostly anything  not at all     never               <NA>
## 2730                <NA>        <NA>      <NA>          graduated
## 2731   strictly anything    socially      <NA>          graduated
## 2732   strictly anything    socially      <NA>          graduated
## 2733      strictly other    socially      <NA>          graduated
## 2734   strictly anything    socially      <NA>          graduated
## 2735                <NA>       often      <NA>          graduated
## 2736   mostly vegetarian    socially     never          graduated
## 2737                <NA>    socially     never          graduated
## 2738                <NA>    socially     never          graduated
## 2739     mostly anything        <NA>     never               <NA>
## 2740                <NA>    socially sometimes            working
## 2741     mostly anything    socially      <NA>            working
## 2742     mostly anything      rarely     never          graduated
## 2743   mostly vegetarian  not at all      <NA>          graduated
## 2744     mostly anything    socially     never          graduated
## 2745     mostly anything    socially      <NA>          graduated
## 2746     mostly anything    socially     never          graduated
## 2747     mostly anything    socially     never          graduated
## 2748     mostly anything      rarely     never          graduated
## 2749                <NA>    socially sometimes          graduated
## 2750     mostly anything    socially     never          graduated
## 2751                <NA>    socially sometimes          graduated
## 2752   mostly vegetarian      rarely     never          graduated
## 2753                <NA>    socially     never          graduated
## 2754   mostly vegetarian    socially     never          graduated
## 2755          vegetarian    socially     never          graduated
## 2756            anything    socially      <NA>          graduated
## 2757     mostly anything    socially     never          graduated
## 2758                <NA>    socially      <NA>            working
## 2759   strictly anything    socially      <NA>            working
## 2760     mostly anything    socially     never          graduated
## 2761            anything    socially sometimes          graduated
## 2762 strictly vegetarian    socially     never          graduated
## 2763     mostly anything       often     never          graduated
## 2764                <NA>      rarely     never          graduated
## 2765   strictly anything    socially      <NA>               <NA>
## 2766            anything    socially     never          graduated
## 2767        mostly vegan    socially      <NA>          graduated
## 2768     mostly anything    socially     never          graduated
## 2769                <NA>       often      <NA>          graduated
## 2770                <NA>    socially     never            working
## 2771     mostly anything    socially     never          graduated
## 2772     mostly anything    socially     often          graduated
## 2773                <NA>    socially sometimes          graduated
## 2774                <NA>    socially     never          graduated
## 2775   strictly anything      rarely     never              space
## 2776   strictly anything    socially     never          graduated
## 2777                <NA>  not at all     never            working
## 2778     mostly anything       often      <NA>          graduated
## 2779                <NA>        <NA>      <NA>            masters
## 2780                <NA>    socially     never          graduated
## 2781     mostly anything    socially      <NA>            working
## 2782            anything    socially     never          graduated
## 2783                <NA>       often     never            dropped
## 2784                <NA>       often sometimes          graduated
## 2785     mostly anything    socially      <NA>          graduated
## 2786   strictly anything    socially      <NA>          graduated
## 2787                <NA>      rarely     never          graduated
## 2788                <NA>    socially     never          graduated
## 2789     mostly anything    socially     never               <NA>
## 2790            anything    socially      <NA>          graduated
## 2791            anything    socially     never          graduated
## 2792                <NA>    socially sometimes            working
## 2793     mostly anything    socially     never          graduated
## 2794     mostly anything    socially     never          graduated
## 2795                <NA>       often     never            dropped
## 2796                <NA>    socially     never               <NA>
## 2797     mostly anything        <NA>      <NA>            working
## 2798                <NA>    socially      <NA>          graduated
## 2799                <NA>    socially     never          graduated
## 2800     mostly anything    socially     never          graduated
## 2801     mostly anything    socially     never          graduated
## 2802            anything       often     never            dropped
## 2803                <NA>    socially      <NA>               <NA>
## 2804                <NA>    socially     never          graduated
## 2805   strictly anything    socially     never          graduated
## 2806                <NA>  not at all     never          graduated
## 2807   strictly anything    socially     never          graduated
## 2808                <NA>    socially     never          graduated
## 2809                <NA>    socially     never          graduated
## 2810   strictly anything    socially     never          graduated
## 2811          vegetarian       often sometimes            working
## 2812                <NA>    socially sometimes          graduated
## 2813            anything    socially     never            working
## 2814                <NA>      rarely     never          graduated
## 2815     mostly anything      rarely     never          graduated
## 2816     mostly anything    socially     never          graduated
## 2817     mostly anything    socially      <NA>          graduated
## 2818     mostly anything    socially      <NA>          graduated
## 2819                <NA>        <NA>     never               <NA>
## 2820      strictly other    socially     never          graduated
## 2821                <NA>        <NA>     never               <NA>
## 2822                <NA>    socially sometimes          graduated
## 2823   mostly vegetarian    socially     never          graduated
## 2824     mostly anything    socially     never          graduated
## 2825                <NA>    socially     never          graduated
## 2826   strictly anything    socially      <NA>          graduated
## 2827     mostly anything        <NA>     never          graduated
## 2828     mostly anything    socially sometimes          graduated
## 2829   strictly anything    socially     never            dropped
## 2830     mostly anything  not at all     never          graduated
## 2831            anything    socially     never          graduated
## 2832   strictly anything    socially      <NA>          graduated
## 2833                <NA>    socially     never          graduated
## 2834            anything    socially     never          graduated
## 2835            anything    socially      <NA>          graduated
## 2836        mostly halal    socially sometimes            working
## 2837                <NA>    socially sometimes               <NA>
## 2838                <NA>    socially     never          graduated
## 2839                <NA>    socially sometimes          graduated
## 2840     mostly anything    socially     never               <NA>
## 2841     mostly anything    socially     never          graduated
## 2842     mostly anything    socially     never            working
## 2843            anything    socially      <NA>          graduated
## 2844     mostly anything    socially      <NA>            working
## 2845                <NA>    socially     never          graduated
## 2846     mostly anything    socially      <NA>          graduated
## 2847   mostly vegetarian    socially     never          graduated
## 2848            anything    socially     never          graduated
## 2849     mostly anything      rarely     never          graduated
## 2850     mostly anything    socially     never          graduated
## 2851        mostly other    socially     never          graduated
## 2852     mostly anything    socially     never          graduated
## 2853                <NA>       often sometimes          graduated
## 2854            anything       often      <NA>            working
## 2855                <NA>    socially     never          graduated
## 2856                <NA>    socially     never          graduated
## 2857                <NA>      rarely     never          graduated
## 2858                <NA>    socially     never               <NA>
## 2859                <NA>    socially sometimes            working
## 2860                <NA>  not at all     never          graduated
## 2861     mostly anything    socially     never            working
## 2862                <NA>      rarely     never college/university
## 2863   strictly anything    socially      <NA>          graduated
## 2864                <NA>       often     never          graduated
## 2865     mostly anything    socially      <NA>          graduated
## 2866                <NA>    socially     never          graduated
## 2867                <NA>        <NA>     never          graduated
## 2868                <NA>    socially     never          graduated
## 2869          vegetarian    socially      <NA>          graduated
## 2870     mostly anything    socially     never          graduated
## 2871                <NA>      rarely     never            working
## 2872     mostly anything    socially      <NA>            working
## 2873                <NA>    socially     never          graduated
## 2874   mostly vegetarian    socially     never          graduated
## 2875                <NA>    socially      <NA>          graduated
## 2876            anything    socially      <NA>          graduated
## 2877                <NA>      rarely     never            working
## 2878   mostly vegetarian    socially     never            working
## 2879        mostly other      rarely     never          graduated
## 2880     mostly anything    socially     never          graduated
## 2881     mostly anything    socially     never          graduated
## 2882     mostly anything    socially     never          graduated
## 2883                <NA>        <NA>     never            working
## 2884     mostly anything    socially      <NA>          graduated
## 2885 strictly vegetarian    socially     never          graduated
## 2886     mostly anything    socially      <NA>          graduated
## 2887                <NA>  not at all     never            working
## 2888     mostly anything    socially sometimes            dropped
## 2889                <NA>       often      <NA>          graduated
## 2890        mostly halal  not at all     never          graduated
## 2891     mostly anything    socially sometimes          graduated
## 2892   mostly vegetarian    socially      <NA>          graduated
## 2893            anything       often sometimes            working
## 2894     mostly anything    socially     never          graduated
## 2895   strictly anything    socially      <NA>          graduated
## 2896   strictly anything       often     never          graduated
## 2897                <NA>    socially     never          graduated
## 2898                <NA>    socially     never          graduated
## 2899                <NA>    socially     never          graduated
## 2900        mostly other    socially     never          graduated
## 2901     mostly anything      rarely     never            dropped
## 2902                <NA>    socially     never          graduated
## 2903   mostly vegetarian    socially     never          graduated
## 2904   strictly anything    socially     never          graduated
## 2905            anything    socially      <NA>          graduated
## 2906                <NA>    socially sometimes          graduated
## 2907   mostly vegetarian    socially      <NA>            working
## 2908     mostly anything    socially     never          graduated
## 2909          vegetarian    socially     never               <NA>
## 2910            anything    socially     never          graduated
## 2911                <NA>       often     never          graduated
## 2912     mostly anything    socially     never          graduated
## 2913                <NA>        <NA>      <NA>          graduated
## 2914                <NA>    socially      <NA>          graduated
## 2915   mostly vegetarian    socially     never            working
## 2916     mostly anything    socially     never            working
## 2917                <NA>    socially sometimes            working
## 2918                <NA>    socially     never          graduated
## 2919   strictly anything    socially sometimes          graduated
## 2920                <NA>    socially     never            working
## 2921            anything  not at all     never            working
## 2922                <NA>    socially      <NA>            working
## 2923     mostly anything    socially     never               <NA>
## 2924     mostly anything       often     never          graduated
## 2925   mostly vegetarian        <NA>      <NA>            working
## 2926                <NA>    socially      <NA>            working
## 2927     mostly anything    socially     never          graduated
## 2928     mostly anything    socially     never            working
## 2929        mostly halal    socially sometimes            working
## 2930     mostly anything    socially     never          graduated
## 2931                <NA>        <NA>     never               <NA>
## 2932   strictly anything    socially      <NA>          graduated
## 2933                <NA>    socially     never               <NA>
## 2934                <NA>    socially     never          graduated
## 2935            anything        <NA>     never          graduated
## 2936                <NA>    socially      <NA>          graduated
## 2937     mostly anything    socially     never          graduated
## 2938            anything    socially sometimes            working
## 2939        mostly other      rarely      <NA>            working
## 2940                <NA>    socially      <NA>               <NA>
## 2941   strictly anything  not at all     never            dropped
## 2942     mostly anything      rarely     never          graduated
## 2943                <NA>        <NA>     never college/university
## 2944                <NA>    socially     never            working
## 2945   mostly vegetarian    socially     never          graduated
## 2946                <NA>  not at all     never            working
## 2947            anything    socially     never            working
## 2948                <NA>    socially     never               <NA>
## 2949   strictly anything    socially     never          graduated
## 2950                <NA>       often     never          graduated
## 2951   strictly anything       often     never          graduated
## 2952     mostly anything    socially      <NA>            working
## 2953     mostly anything      rarely     never               <NA>
## 2954                <NA>    socially      <NA>               <NA>
## 2955            anything    socially     never            working
## 2956     mostly anything       often sometimes            working
## 2957            anything    socially     never          graduated
## 2958                <NA>    socially      <NA>          graduated
## 2959     mostly anything    socially     never            working
## 2960   strictly anything    socially      <NA>          graduated
## 2961   mostly vegetarian    socially      <NA>            working
## 2962   mostly vegetarian    socially      <NA>            dropped
## 2963   strictly anything       often     often            working
## 2964                <NA>  not at all     never          graduated
## 2965     mostly anything    socially sometimes          graduated
## 2966            anything       often sometimes          graduated
## 2967                <NA>    socially     never            working
## 2968        mostly other    socially      <NA>          graduated
## 2969   strictly anything    socially sometimes          graduated
## 2970     mostly anything    socially     never               <NA>
## 2971     mostly anything    socially sometimes          graduated
## 2972     mostly anything    socially      <NA>          graduated
## 2973     mostly anything    socially sometimes            dropped
## 2974   mostly vegetarian      rarely      <NA>            dropped
## 2975                <NA>    socially sometimes          graduated
## 2976            anything    socially      <NA>          graduated
## 2977     mostly anything    socially sometimes          graduated
## 2978          vegetarian    socially     never          graduated
## 2979            anything      rarely     never            working
## 2980     mostly anything    socially      <NA> college/university
## 2981     mostly anything    socially     never          graduated
## 2982     mostly anything      rarely      <NA>          graduated
## 2983     mostly anything      rarely      <NA>          graduated
## 2984        mostly other    socially sometimes          graduated
## 2985                <NA>    socially      <NA>          graduated
## 2986                <NA>    socially sometimes            dropped
## 2987                <NA>       often      <NA>          graduated
## 2988                <NA>    socially     never            working
## 2989               vegan  not at all     never          graduated
## 2990     mostly anything    socially     never          graduated
## 2991                <NA>    socially     never          graduated
## 2992     mostly anything    socially      <NA>          graduated
## 2993                <NA>    socially     never          graduated
## 2994                <NA>    socially      <NA>          graduated
## 2995     mostly anything    socially     never          graduated
## 2996   mostly vegetarian    socially     never          graduated
## 2997                <NA>    socially sometimes               <NA>
## 2998     mostly anything    socially      <NA>          graduated
## 2999   mostly vegetarian    socially      <NA>          graduated
## 3000     mostly anything    socially     never          graduated
## 3001   mostly vegetarian    socially      <NA>          graduated
## 3002                <NA>    socially      <NA>            dropped
## 3003     mostly anything       often     never          graduated
## 3004     mostly anything    socially      <NA>            working
## 3005                <NA>       often sometimes            dropped
## 3006   mostly vegetarian    socially      <NA>               <NA>
## 3007     mostly anything    socially      <NA>          graduated
## 3008     mostly anything    socially     never          graduated
## 3009   strictly anything       often     never          graduated
## 3010                <NA>    socially      <NA>          graduated
## 3011                <NA>    socially     never          graduated
## 3012                <NA>    socially     never          graduated
## 3013     mostly anything  not at all     never            working
## 3014     mostly anything    socially     never          graduated
## 3015     mostly anything    socially sometimes          graduated
## 3016                <NA>    socially      <NA>            working
## 3017                <NA>    socially     never          graduated
## 3018            anything    socially     never               <NA>
## 3019                <NA>    socially      <NA>               <NA>
## 3020                <NA>    socially     never          graduated
## 3021            anything    socially      <NA>          graduated
## 3022                <NA>    socially     never          graduated
## 3023                <NA>    socially     never            working
## 3024            anything    socially     never          graduated
## 3025                <NA>    socially      <NA>          graduated
## 3026                <NA>    socially     never          graduated
## 3027     mostly anything    socially sometimes          graduated
## 3028                <NA>    socially      <NA>          graduated
## 3029                <NA>    socially      <NA>          graduated
## 3030                <NA>        <NA>     never          graduated
## 3031                <NA>    socially     never          graduated
## 3032            anything    socially      <NA>               <NA>
## 3033                <NA>       often sometimes            working
## 3034                <NA>    socially     never          graduated
## 3035   strictly anything    socially     never college/university
## 3036            anything    socially      <NA>          graduated
## 3037     mostly anything    socially     never          graduated
## 3038     mostly anything       often     never          graduated
## 3039            anything    socially     never          graduated
## 3040                <NA>    socially     never          graduated
## 3041     mostly anything    socially     never          graduated
## 3042                <NA>      rarely     never            working
## 3043   mostly vegetarian    socially     never          graduated
## 3044                <NA>      rarely     never          graduated
## 3045                <NA>      rarely     never          graduated
## 3046                <NA>        <NA>     never          graduated
## 3047   strictly anything  not at all     never            working
## 3048   mostly vegetarian      rarely     never            masters
## 3049            anything    socially     never            working
## 3050          vegetarian    socially     never          graduated
## 3051                <NA>    socially      <NA>          graduated
## 3052                <NA>    socially     never            working
## 3053        mostly halal    socially     never          graduated
## 3054                <NA>    socially sometimes          graduated
## 3055                <NA>    socially     never          graduated
## 3056     mostly anything    socially     never          graduated
## 3057                <NA>    socially     never            dropped
## 3058                <NA>    socially     never            working
## 3059                <NA>    socially      <NA>               <NA>
## 3060     mostly anything    socially     never            working
## 3061     mostly anything  not at all     never               <NA>
## 3062     mostly anything    socially     never          graduated
## 3063     mostly anything    socially     never          graduated
## 3064     mostly anything    socially     never          graduated
## 3065     mostly anything    socially     never            working
## 3066                <NA>    socially      <NA>               <NA>
## 3067   strictly anything    socially     never          graduated
## 3068                <NA>      rarely     never          graduated
## 3069     mostly anything    socially     never          graduated
## 3070            anything    socially     never               <NA>
## 3071                <NA>    socially      <NA>          graduated
## 3072     mostly anything    socially     never          graduated
## 3073   strictly anything    socially     never            working
## 3074               vegan  not at all     never               <NA>
## 3075                <NA>    socially     never          graduated
## 3076     mostly anything       often     never          graduated
## 3077                <NA>    socially     never            working
## 3078     mostly anything  not at all     never          graduated
## 3079               vegan    socially      <NA>          graduated
## 3080     mostly anything    socially      <NA>          graduated
## 3081     mostly anything    socially      <NA>          graduated
## 3082               other      rarely      <NA>            working
## 3083                <NA>    socially      <NA>          graduated
## 3084   strictly anything    socially      <NA>            working
## 3085   strictly anything      rarely     never            working
## 3086                <NA>  not at all     never          graduated
## 3087                <NA>       often     never          graduated
## 3088                <NA>       often     never            working
## 3089     mostly anything    socially sometimes          graduated
## 3090                <NA>    socially sometimes          graduated
## 3091                <NA>    socially      <NA>               <NA>
## 3092                <NA>      rarely     never          graduated
## 3093                <NA>    socially     never          graduated
## 3094                <NA>    socially     never          graduated
## 3095                <NA>    socially     never          graduated
## 3096     mostly anything    socially      <NA>          graduated
## 3097     mostly anything  not at all     never          graduated
## 3098     mostly anything    socially     never          graduated
## 3099   strictly anything      rarely     never          graduated
## 3100                <NA>  not at all     never          graduated
## 3101     mostly anything    socially sometimes            working
## 3102     mostly anything    socially     never               <NA>
## 3103   mostly vegetarian      rarely sometimes          graduated
## 3104                <NA>    socially     never          graduated
## 3105     mostly anything    socially     never          graduated
## 3106      strictly halal  not at all     never          graduated
## 3107   strictly anything       often     never          graduated
## 3108     mostly anything      rarely     never          graduated
## 3109                <NA>    socially     never          graduated
## 3110     mostly anything    socially     never          graduated
## 3111 strictly vegetarian    socially     never            working
## 3112     mostly anything    socially     never          graduated
## 3113                <NA>  not at all     never          graduated
## 3114     mostly anything    socially sometimes          graduated
## 3115     mostly anything       often      <NA>               <NA>
## 3116                <NA>        <NA>     never          graduated
## 3117                <NA>  not at all sometimes          graduated
## 3118                <NA>  not at all     never            dropped
## 3119            anything    socially     never college/university
## 3120     mostly anything    socially      <NA>               <NA>
## 3121     mostly anything    socially      <NA>          graduated
## 3122     mostly anything    socially      <NA>          graduated
## 3123     mostly anything    socially     never            working
## 3124     mostly anything  not at all     never          graduated
## 3125                <NA>    socially     never          graduated
## 3126     mostly anything    socially     never          graduated
## 3127                <NA>    socially     never           two-year
## 3128     mostly anything    socially     never          graduated
## 3129     mostly anything    socially      <NA>          graduated
## 3130     mostly anything  not at all      <NA>            working
## 3131     mostly anything    socially     never          graduated
## 3132            anything    socially     never          graduated
## 3133                <NA>    socially     never          graduated
## 3134     mostly anything    socially     never          graduated
## 3135                <NA>    socially     never          graduated
## 3136                <NA>  not at all     never          graduated
## 3137                <NA>    socially sometimes               <NA>
## 3138   mostly vegetarian    socially     never          graduated
## 3139 strictly vegetarian  very often     never          graduated
## 3140            anything      rarely     never            dropped
## 3141                <NA>    socially     never          graduated
## 3142            anything    socially     never          graduated
## 3143     mostly anything  not at all     never          graduated
## 3144   strictly anything    socially     never          graduated
## 3145     mostly anything    socially     never            working
## 3146            anything    socially      <NA>          graduated
## 3147            anything    socially sometimes          graduated
## 3148     mostly anything      rarely     never          graduated
## 3149                <NA>    socially     never          graduated
## 3150                <NA>    socially      <NA>          graduated
## 3151                <NA>    socially     never          graduated
## 3152     mostly anything    socially     never          graduated
## 3153                <NA>        <NA>      <NA>          graduated
## 3154            anything      rarely     never          graduated
## 3155                <NA>    socially      <NA>          graduated
## 3156   mostly vegetarian       often     never          graduated
## 3157 strictly vegetarian       often     often          graduated
## 3158   mostly vegetarian    socially     never          graduated
## 3159     mostly anything       often sometimes          graduated
## 3160                <NA>    socially     never college/university
## 3161     mostly anything       often sometimes          graduated
## 3162     mostly anything       often     never          graduated
## 3163                <NA>    socially     never          graduated
## 3164     mostly anything    socially     never          graduated
## 3165   mostly vegetarian    socially     never            working
## 3166                <NA>    socially      <NA>          graduated
## 3167                <NA>    socially sometimes            working
## 3168                <NA>       often     never          graduated
## 3169   strictly anything    socially     never          graduated
## 3170     mostly anything    socially      <NA>          graduated
## 3171   strictly anything  not at all     never          graduated
## 3172                <NA>    socially     never          graduated
## 3173                <NA>    socially      <NA>          graduated
## 3174                <NA>    socially sometimes          graduated
## 3175                <NA>      rarely     never          graduated
## 3176     mostly anything    socially     never          graduated
## 3177   mostly vegetarian    socially sometimes          graduated
## 3178            anything       often      <NA>          graduated
## 3179 strictly vegetarian      rarely     never          graduated
## 3180                <NA>    socially      <NA>               <NA>
## 3181                <NA>       often     never            working
## 3182                <NA>    socially      <NA>          graduated
## 3183                <NA>        <NA>      <NA>          graduated
## 3184 strictly vegetarian        <NA>     never               <NA>
## 3185                <NA>    socially     never            working
## 3186                <NA>    socially     never          graduated
## 3187                <NA>  not at all     never          graduated
## 3188   mostly vegetarian    socially      <NA>          graduated
## 3189      strictly other       often      <NA>          graduated
## 3190                <NA>    socially     never          graduated
## 3191                <NA>    socially     never          graduated
## 3192     mostly anything    socially     never          graduated
## 3193                <NA>    socially      <NA>          graduated
## 3194   mostly vegetarian      rarely      <NA>          graduated
## 3195                <NA>  not at all     never               <NA>
## 3196     mostly anything    socially     never            working
## 3197               other    socially     never            working
## 3198                <NA>    socially     never            working
## 3199     mostly anything  not at all     never            working
## 3200     mostly anything       often     never          graduated
## 3201     mostly anything    socially      <NA>          graduated
## 3202   strictly anything    socially sometimes          graduated
## 3203   mostly vegetarian    socially sometimes          graduated
## 3204                <NA>    socially     never          graduated
## 3205                <NA>    socially     never          graduated
## 3206   mostly vegetarian    socially     never            working
## 3207   mostly vegetarian    socially      <NA>               <NA>
## 3208               other        <NA>      <NA>          graduated
## 3209                <NA>    socially      <NA>          graduated
## 3210     mostly anything    socially     never               <NA>
## 3211   mostly vegetarian    socially      <NA>          graduated
## 3212   strictly anything    socially sometimes          graduated
## 3213     mostly anything  not at all     never          graduated
## 3214   mostly vegetarian    socially     never          graduated
## 3215     mostly anything  not at all     never          graduated
## 3216   mostly vegetarian    socially     never          graduated
## 3217                <NA>        <NA>      <NA>               <NA>
## 3218                <NA>    socially     never          graduated
## 3219            anything    socially      <NA>          graduated
## 3220                <NA>    socially     never          graduated
## 3221   strictly anything    socially     never            working
## 3222        mostly other    socially     never          graduated
## 3223            anything    socially sometimes            dropped
## 3224                <NA>    socially      <NA>               <NA>
## 3225            anything    socially     never          graduated
## 3226            anything    socially      <NA>          graduated
## 3227     mostly anything    socially     never          graduated
## 3228     mostly anything    socially     never          graduated
## 3229     mostly anything    socially sometimes          graduated
## 3230            anything    socially      <NA>          graduated
## 3231   strictly anything    socially      <NA>               <NA>
## 3232                <NA>        <NA>      <NA>               <NA>
## 3233                <NA>    socially     never          graduated
## 3234            anything    socially     never          graduated
## 3235                <NA>    socially      <NA>               <NA>
## 3236                <NA>        <NA>     never            working
## 3237     mostly anything      rarely     never          graduated
## 3238                <NA>    socially     never          graduated
## 3239                <NA>      rarely      <NA>            dropped
## 3240     mostly anything    socially     never          graduated
## 3241     mostly anything    socially      <NA>          graduated
## 3242            anything    socially     never               <NA>
## 3243                <NA> desperately sometimes          graduated
## 3244                <NA>      rarely     never            working
## 3245            anything    socially     never            working
## 3246     mostly anything    socially     never          graduated
## 3247 strictly vegetarian    socially     never          graduated
## 3248                <NA>    socially     never            dropped
## 3249     mostly anything    socially sometimes            working
## 3250     mostly anything  not at all     never          graduated
## 3251                <NA>    socially     never               <NA>
## 3252                <NA>       often      <NA>          graduated
## 3253   strictly anything    socially sometimes            working
## 3254   mostly vegetarian    socially     never            working
## 3255            anything      rarely      <NA>               <NA>
## 3256            anything       often sometimes          graduated
## 3257     mostly anything  very often sometimes          graduated
## 3258     mostly anything    socially     never               <NA>
## 3259     mostly anything    socially     never          graduated
## 3260   strictly anything    socially      <NA>          graduated
## 3261     mostly anything    socially     never            working
## 3262                <NA>  not at all     never          graduated
## 3263     mostly anything      rarely     never          graduated
## 3264     mostly anything    socially     never          graduated
## 3265     mostly anything    socially sometimes          graduated
## 3266   mostly vegetarian      rarely     never          graduated
## 3267                <NA>      rarely     never            working
## 3268     mostly anything    socially      <NA>          graduated
## 3269   strictly anything    socially sometimes          graduated
## 3270   mostly vegetarian    socially     never          graduated
## 3271   mostly vegetarian        <NA>      <NA>            working
## 3272                <NA>    socially      <NA>            working
## 3273                <NA>    socially     never          graduated
## 3274                <NA>        <NA>      <NA>          graduated
## 3275            anything    socially     never               ph.d
## 3276          vegetarian       often sometimes          graduated
## 3277     mostly anything    socially     never          graduated
## 3278                <NA>        <NA>     never          graduated
## 3279   strictly anything    socially      <NA>          graduated
## 3280                <NA>    socially     never            working
## 3281            anything    socially      <NA>          graduated
## 3282            anything    socially     never          graduated
## 3283                <NA>    socially     never          graduated
## 3284                <NA>    socially      <NA>          graduated
## 3285     mostly anything  not at all      <NA>          graduated
## 3286     mostly anything    socially sometimes          graduated
## 3287               other    socially     never            working
## 3288            anything    socially     never          graduated
## 3289     mostly anything    socially     never          graduated
## 3290          vegetarian    socially     never          graduated
## 3291     mostly anything    socially      <NA>          graduated
## 3292            anything    socially     never            working
## 3293                <NA>    socially      <NA>            working
## 3294            anything    socially     never          graduated
## 3295                <NA>    socially     never          graduated
## 3296                <NA>    socially     never          graduated
## 3297            anything    socially     never          graduated
## 3298     mostly anything    socially     never          graduated
## 3299     mostly anything      rarely     never          graduated
## 3300                <NA>    socially     never          graduated
## 3301   strictly anything    socially     never               <NA>
## 3302                <NA>        <NA>     never               <NA>
## 3303                <NA>      rarely     never college/university
## 3304                <NA>    socially     never            dropped
## 3305        mostly other      rarely     never               <NA>
## 3306     mostly anything  not at all     never          graduated
## 3307          vegetarian    socially     never            working
## 3308                <NA>    socially     never               <NA>
## 3309   mostly vegetarian    socially     never          graduated
## 3310     mostly anything    socially     never          graduated
## 3311     mostly anything  not at all     never          graduated
## 3312        mostly other    socially sometimes            working
## 3313     mostly anything      rarely     never          graduated
## 3314   strictly anything    socially     never          graduated
## 3315     mostly anything    socially     never          graduated
## 3316     mostly anything    socially     never            working
## 3317     mostly anything    socially      <NA>          graduated
## 3318     mostly anything    socially     never          graduated
## 3319     mostly anything    socially sometimes          graduated
## 3320   strictly anything    socially     never            working
## 3321                <NA>       often      <NA>          graduated
## 3322                <NA>    socially     never            working
## 3323            anything    socially     never            working
## 3324   mostly vegetarian        <NA>      <NA>          graduated
## 3325                <NA>    socially      <NA>          graduated
## 3326                <NA>    socially sometimes          graduated
## 3327                <NA>        <NA>     never            working
## 3328                <NA>       often     never          graduated
## 3329                <NA>    socially     never               <NA>
## 3330                <NA>  very often sometimes               <NA>
## 3331                <NA>    socially     never               <NA>
## 3332                <NA>       often      <NA>               <NA>
## 3333                <NA>    socially      <NA>          graduated
## 3334                <NA>       often      <NA>          graduated
## 3335   mostly vegetarian        <NA>      <NA>          graduated
## 3336   strictly anything       often      <NA>          graduated
## 3337   mostly vegetarian    socially sometimes          graduated
## 3338     mostly anything      rarely sometimes            working
## 3339                <NA>      rarely     never            working
## 3340     mostly anything      rarely     never            working
## 3341     mostly anything    socially      <NA>          graduated
## 3342                <NA>    socially      <NA>          graduated
## 3343                <NA>    socially     never            working
## 3344   strictly anything      rarely     never          graduated
## 3345   strictly anything desperately     never          graduated
## 3346                <NA>    socially     never          graduated
## 3347   mostly vegetarian       often sometimes          graduated
## 3348                <NA>        <NA>      <NA>          graduated
## 3349                <NA>    socially     never          graduated
## 3350     mostly anything    socially     never            working
## 3351                <NA>    socially     never            working
## 3352                <NA>    socially     never            working
## 3353   mostly vegetarian      rarely      <NA>          graduated
## 3354                <NA>       often      <NA>          graduated
## 3355     mostly anything  very often     never            working
## 3356            anything    socially     never          graduated
## 3357 strictly vegetarian       often sometimes            working
## 3358   mostly vegetarian    socially     never          graduated
## 3359   strictly anything    socially      <NA>            working
## 3360     mostly anything       often     never            working
## 3361                <NA>    socially      <NA>          graduated
## 3362            anything    socially     never          graduated
## 3363   strictly anything    socially      <NA>            working
## 3364     mostly anything    socially     never          graduated
## 3365            anything  not at all     never          graduated
## 3366     mostly anything    socially      <NA>          graduated
## 3367                <NA>    socially     never            working
## 3368                <NA>    socially      <NA>          graduated
## 3369   strictly anything    socially     never          graduated
## 3370                <NA>        <NA>     never               <NA>
## 3371     mostly anything    socially     never            working
## 3372                <NA>    socially     never               <NA>
## 3373                <NA>    socially     never          graduated
## 3374      strictly other    socially sometimes          graduated
## 3375      strictly other    socially     often            working
## 3376                <NA>    socially     never          graduated
## 3377                <NA>    socially     never               <NA>
## 3378        mostly vegan    socially sometimes            working
## 3379                <NA>    socially     never          graduated
## 3380   mostly vegetarian    socially      <NA>          graduated
## 3381     mostly anything    socially     never          graduated
## 3382     mostly anything       often sometimes          graduated
## 3383   strictly anything    socially      <NA>            working
## 3384   strictly anything    socially      <NA>          graduated
## 3385   strictly anything       often      <NA>          graduated
## 3386            anything       often     never            working
## 3387                <NA>  not at all     never            working
## 3388     mostly anything    socially     never            dropped
## 3389                <NA>      rarely     never          graduated
## 3390     mostly anything    socially     never          graduated
## 3391            anything    socially     never          graduated
## 3392     mostly anything    socially      <NA>          graduated
## 3393                <NA>    socially      <NA>          graduated
## 3394   mostly vegetarian    socially      <NA>          graduated
## 3395                <NA>       often sometimes          graduated
## 3396   strictly anything    socially     never          graduated
## 3397                <NA>    socially     never          graduated
## 3398                <NA>    socially      <NA>            working
## 3399                <NA>       often     never          graduated
## 3400   mostly vegetarian       often      <NA>               <NA>
## 3401                <NA>  not at all     never          graduated
## 3402            anything    socially      <NA>          graduated
## 3403     mostly anything    socially     never               <NA>
## 3404            anything    socially     never            working
## 3405                <NA>    socially      <NA>          graduated
## 3406            anything    socially sometimes            working
## 3407     mostly anything    socially     often               <NA>
## 3408   strictly anything    socially     never               <NA>
## 3409     mostly anything    socially      <NA>          graduated
## 3410                <NA>    socially     never            working
## 3411                <NA>    socially     never          graduated
## 3412   mostly vegetarian    socially      <NA>          graduated
## 3413     mostly anything    socially     never          graduated
## 3414     mostly anything    socially     never          graduated
## 3415                <NA>    socially sometimes          graduated
## 3416     mostly anything    socially     never            working
## 3417            anything    socially     never            working
## 3418                <NA>    socially     never          graduated
## 3419     mostly anything    socially     never          graduated
## 3420                <NA>      rarely     never            dropped
## 3421     mostly anything    socially     never          graduated
## 3422                <NA>       often      <NA>               <NA>
## 3423        mostly other    socially      <NA>            working
## 3424     mostly anything  not at all     never          graduated
## 3425                <NA>        <NA>     never          graduated
## 3426     mostly anything    socially     never          graduated
## 3427        mostly other    socially      <NA>            working
## 3428            anything    socially     never          graduated
## 3429     mostly anything    socially sometimes          graduated
## 3430     mostly anything    socially      <NA>               <NA>
## 3431                <NA>    socially     never          graduated
## 3432            anything    socially     never               <NA>
## 3433     mostly anything  not at all     never          graduated
## 3434          vegetarian    socially      <NA>          graduated
## 3435     mostly anything    socially     never            working
## 3436                <NA>    socially     never               <NA>
## 3437   strictly anything    socially sometimes            working
## 3438     mostly anything      rarely sometimes          graduated
## 3439   strictly anything       often sometimes          graduated
## 3440            anything    socially     never          graduated
## 3441     mostly anything    socially     never          graduated
## 3442     mostly anything      rarely     never            working
## 3443                <NA>    socially     never          graduated
## 3444            anything    socially      <NA> college/university
## 3445                <NA>    socially     never          graduated
## 3446     mostly anything    socially     never          graduated
## 3447            anything    socially     never college/university
## 3448            anything    socially      <NA>          graduated
## 3449   mostly vegetarian    socially sometimes          graduated
## 3450            anything      rarely     never          graduated
## 3451                <NA>    socially      <NA>          graduated
## 3452                <NA>    socially     never          graduated
## 3453            anything      rarely     never          graduated
## 3454   mostly vegetarian    socially     never          graduated
## 3455     mostly anything    socially     never            working
## 3456     mostly anything       often     often          graduated
## 3457                <NA>      rarely     never            dropped
## 3458     mostly anything    socially     never          graduated
## 3459   mostly vegetarian    socially      <NA>               <NA>
## 3460     mostly anything    socially     never          graduated
## 3461                <NA>    socially     never          graduated
## 3462                <NA>       often     never            working
## 3463                <NA>    socially      <NA>          graduated
## 3464     mostly anything    socially      <NA>               <NA>
## 3465            anything    socially      <NA>          graduated
## 3466                <NA>      rarely     never            working
## 3467            anything    socially     never          graduated
## 3468                <NA>    socially     never               <NA>
## 3469     mostly anything      rarely     never          graduated
## 3470                <NA>      rarely     never          graduated
## 3471                <NA>    socially     never          graduated
## 3472                <NA>    socially     never               <NA>
## 3473     mostly anything    socially     never            working
## 3474   mostly vegetarian    socially     never               <NA>
## 3475                <NA>    socially     never               <NA>
## 3476     mostly anything    socially      <NA>               <NA>
## 3477     mostly anything    socially     never               <NA>
## 3478     mostly anything    socially      <NA>          graduated
## 3479        mostly other    socially      <NA>          graduated
## 3480                <NA>    socially     never          graduated
## 3481                <NA>        <NA>     never          graduated
## 3482                <NA>    socially     never          graduated
## 3483                <NA>    socially     never               <NA>
## 3484                <NA>      rarely     never          graduated
## 3485            anything    socially      <NA>          graduated
## 3486                <NA>    socially      <NA>          graduated
## 3487            anything    socially     never          graduated
## 3488     mostly anything    socially     never          graduated
## 3489     mostly anything    socially     never               <NA>
## 3490                <NA>    socially sometimes              space
## 3491                <NA>    socially      <NA>               <NA>
## 3492 strictly vegetarian  not at all     never          graduated
## 3493     mostly anything      rarely     never            working
## 3494     mostly anything    socially     never          graduated
## 3495            anything    socially     never          graduated
## 3496                <NA>    socially      <NA>            working
## 3497   mostly vegetarian  not at all     never          graduated
## 3498     mostly anything  not at all     never          graduated
## 3499                <NA>    socially     never           two-year
## 3500                <NA>    socially      <NA>            working
## 3501     mostly anything      rarely     never          graduated
## 3502                <NA>    socially     never          graduated
## 3503            anything        <NA>     never college/university
## 3504                <NA>      rarely     never          graduated
## 3505     mostly anything    socially     never          graduated
## 3506                <NA>       often     never            working
## 3507     mostly anything    socially     never          graduated
## 3508   strictly anything    socially     never          graduated
## 3509     mostly anything    socially     never            working
## 3510     mostly anything      rarely     never            working
## 3511     mostly anything      rarely     never               <NA>
## 3512               other    socially     never          graduated
## 3513   mostly vegetarian  not at all     never          graduated
## 3514                <NA>        <NA>      <NA>               <NA>
## 3515     mostly anything    socially     never          graduated
## 3516     mostly anything    socially     never          graduated
## 3517     mostly anything    socially     never            working
## 3518        mostly vegan    socially     never            working
## 3519                <NA>      rarely     never               <NA>
## 3520   strictly anything    socially      <NA>          graduated
## 3521                <NA>    socially      <NA>            dropped
## 3522               other    socially      <NA> college/university
## 3523                <NA>       often sometimes               <NA>
## 3524     mostly anything        <NA>     never               <NA>
## 3525            anything    socially      <NA>          graduated
## 3526            anything    socially sometimes            working
## 3527                <NA>    socially     never          graduated
## 3528   mostly vegetarian       often sometimes          graduated
## 3529     mostly anything    socially     never          graduated
## 3530            anything    socially     never          graduated
## 3531        mostly other    socially     never          graduated
## 3532   strictly anything    socially      <NA>            working
## 3533                <NA>    socially     never          graduated
## 3534     mostly anything    socially      <NA>          graduated
## 3535     mostly anything    socially      <NA>               <NA>
## 3536                <NA>    socially      <NA>          graduated
## 3537      strictly other      rarely     never            working
## 3538     mostly anything    socially     never          graduated
## 3539               other    socially     never          graduated
## 3540          vegetarian      rarely     never          graduated
## 3541   strictly anything       often sometimes            working
## 3542     mostly anything    socially     never          graduated
## 3543     mostly anything      rarely     never          graduated
## 3544            anything  not at all     often          graduated
## 3545                <NA>    socially     never            working
## 3546                <NA>    socially     never          graduated
## 3547                <NA>    socially     never          graduated
## 3548        mostly other    socially      <NA>            working
## 3549     mostly anything    socially     never          graduated
## 3550     mostly anything      rarely     never          graduated
## 3551     mostly anything    socially     never          graduated
## 3552            anything    socially     never          graduated
## 3553     mostly anything    socially      <NA>            working
## 3554                <NA>      rarely     never            working
## 3555     mostly anything    socially     never          graduated
## 3556                <NA>    socially     never          graduated
## 3557                <NA>    socially      <NA>               <NA>
## 3558                <NA>      rarely     never               <NA>
## 3559     mostly anything    socially     never            working
## 3560     mostly anything    socially     never          graduated
## 3561            anything    socially     never          graduated
## 3562   strictly anything    socially     never            working
## 3563     mostly anything    socially      <NA>          graduated
## 3564            anything    socially sometimes            working
## 3565                <NA>      rarely     never          graduated
## 3566                <NA>    socially     never          graduated
## 3567     mostly anything    socially     never          graduated
## 3568                <NA>    socially     never          graduated
## 3569                <NA>    socially     never            working
## 3570     mostly anything    socially     never          graduated
## 3571                <NA>  not at all     never          graduated
## 3572      strictly other        <NA>     never            working
## 3573            anything    socially sometimes          graduated
## 3574                <NA>    socially     never          graduated
## 3575   strictly anything       often sometimes          graduated
## 3576     mostly anything    socially     never               <NA>
## 3577                <NA>        <NA>     never               <NA>
## 3578     mostly anything       often     never            dropped
## 3579                <NA>    socially     never            working
## 3580   strictly anything    socially     never            dropped
## 3581        mostly other       often sometimes          graduated
## 3582     mostly anything    socially      <NA>          graduated
## 3583                <NA>      rarely     never          graduated
## 3584     mostly anything    socially     never          graduated
## 3585     mostly anything    socially     never          graduated
## 3586        mostly other    socially     never          graduated
## 3587                <NA>    socially     never          graduated
## 3588                <NA>    socially     never            working
## 3589                <NA>      rarely     never          graduated
## 3590                <NA>    socially     never          graduated
## 3591            anything      rarely     never            working
## 3592                <NA>    socially     never          graduated
## 3593   mostly vegetarian    socially      <NA>          graduated
## 3594   mostly vegetarian    socially      <NA>          graduated
## 3595     mostly anything    socially     never          graduated
## 3596     mostly anything      rarely     never          graduated
## 3597     mostly anything    socially     never          graduated
## 3598     mostly anything      rarely     never          graduated
## 3599   mostly vegetarian      rarely      <NA>          graduated
## 3600     mostly anything    socially      <NA>          graduated
## 3601     mostly anything       often      <NA>          graduated
## 3602                <NA>      rarely     never               <NA>
## 3603            anything    socially     never          graduated
## 3604     mostly anything    socially      <NA>            working
## 3605     mostly anything    socially     never          graduated
## 3606        mostly other    socially     never          graduated
## 3607                <NA>        <NA>     never               <NA>
## 3608                <NA>    socially      <NA>          graduated
## 3609            anything    socially      <NA>          graduated
## 3610     mostly anything    socially     never          graduated
## 3611     mostly anything    socially     never          graduated
## 3612   mostly vegetarian    socially sometimes          graduated
## 3613            anything       often sometimes          graduated
## 3614     mostly anything  not at all     never            working
## 3615     mostly anything    socially     never          graduated
## 3616                <NA>    socially     never          graduated
## 3617                <NA>       often sometimes          graduated
## 3618            anything    socially     never          graduated
## 3619            anything    socially     never          graduated
## 3620                <NA>    socially     never          graduated
## 3621   strictly anything    socially     never          graduated
## 3622                <NA>    socially sometimes          graduated
## 3623   mostly vegetarian    socially      <NA>          graduated
## 3624            anything      rarely     never          graduated
## 3625                <NA>    socially     never          graduated
## 3626 strictly vegetarian    socially      <NA>          graduated
## 3627     mostly anything    socially     never          graduated
## 3628     mostly anything    socially     never          graduated
## 3629                <NA>  not at all     never          graduated
## 3630                <NA>    socially     never          graduated
## 3631     mostly anything        <NA>     never          graduated
## 3632                <NA>    socially     never               <NA>
## 3633               other    socially      <NA>            working
## 3634                <NA>       often      <NA>          graduated
## 3635            anything    socially     never          graduated
## 3636                <NA>    socially      <NA>          graduated
## 3637                <NA>        <NA>     never               <NA>
## 3638   strictly anything    socially      <NA>            working
## 3639                <NA>        <NA> sometimes          graduated
## 3640                <NA>    socially     never          graduated
## 3641          vegetarian    socially     never          graduated
## 3642                <NA>    socially     never          graduated
## 3643     mostly anything    socially     never          graduated
## 3644   mostly vegetarian    socially     never          graduated
## 3645                <NA>    socially sometimes            dropped
## 3646                <NA>    socially     never          graduated
## 3647                <NA>    socially     never          graduated
## 3648                <NA>    socially     never          graduated
## 3649                <NA>    socially      <NA>          graduated
## 3650   mostly vegetarian    socially     never               <NA>
## 3651                <NA>       often sometimes          graduated
## 3652                <NA>    socially sometimes          graduated
## 3653       mostly kosher    socially      <NA>          graduated
## 3654   mostly vegetarian    socially     never          graduated
## 3655     mostly anything      rarely     never          graduated
## 3656                <NA>    socially      <NA>          graduated
## 3657            anything    socially     never          graduated
## 3658     mostly anything    socially     never            working
## 3659                <NA>  not at all     never          graduated
## 3660                <NA>    socially     never          graduated
## 3661                <NA>      rarely     never          graduated
## 3662   mostly vegetarian    socially      <NA>            working
## 3663                <NA>        <NA>      <NA>            working
## 3664   mostly vegetarian    socially      <NA>          graduated
## 3665            anything    socially     never          graduated
## 3666     mostly anything    socially      <NA>          graduated
## 3667   strictly anything    socially sometimes            working
## 3668     mostly anything    socially      <NA>          graduated
## 3669                <NA>      rarely     never          graduated
## 3670                <NA>       often sometimes          graduated
## 3671                <NA>    socially      <NA>          graduated
## 3672                <NA>      rarely     never          graduated
## 3673     mostly anything    socially     never          graduated
## 3674                <NA>    socially     never          graduated
## 3675     mostly anything    socially     never            dropped
## 3676                <NA>      rarely     never          graduated
## 3677                <NA>      rarely     never          graduated
## 3678   strictly anything    socially sometimes          graduated
## 3679            anything    socially     never          graduated
## 3680        mostly other      rarely      <NA>              space
## 3681                <NA>    socially     never          graduated
## 3682     mostly anything    socially     never          graduated
## 3683        mostly vegan    socially      <NA>               <NA>
## 3684               other    socially     never          graduated
## 3685                <NA>      rarely     never          graduated
## 3686                <NA>    socially     never          graduated
## 3687            anything    socially      <NA>          graduated
## 3688   strictly anything    socially      <NA>          graduated
## 3689     mostly anything       often      <NA>          graduated
## 3690   strictly anything    socially sometimes          graduated
## 3691                <NA>    socially     never          graduated
## 3692                <NA>  not at all     never            dropped
## 3693                <NA>        <NA>     never          graduated
## 3694                <NA>    socially     never          graduated
## 3695     mostly anything    socially     never          graduated
## 3696   strictly anything    socially sometimes            dropped
## 3697   strictly anything    socially     never          graduated
## 3698                <NA>      rarely     never          graduated
## 3699                <NA>       often     never          graduated
## 3700   mostly vegetarian    socially     never            working
## 3701     mostly anything    socially     never          graduated
## 3702   mostly vegetarian  not at all     never          graduated
## 3703     mostly anything    socially     never          graduated
## 3704                <NA>      rarely sometimes college/university
## 3705                <NA>    socially      <NA>               <NA>
## 3706   mostly vegetarian  not at all     never            working
## 3707                <NA>    socially sometimes               <NA>
## 3708   strictly anything    socially sometimes            working
## 3709     mostly anything      rarely     never          graduated
## 3710                <NA>    socially     never          graduated
## 3711                <NA> desperately     never          graduated
## 3712     mostly anything    socially      <NA>            working
## 3713                <NA>    socially      <NA>          graduated
## 3714                <NA>    socially      <NA> college/university
## 3715                <NA>  not at all     never            working
## 3716   mostly vegetarian       often sometimes               <NA>
## 3717                <NA>      rarely     never          graduated
## 3718                <NA>        <NA>      <NA>          graduated
## 3719                <NA>    socially     never          graduated
## 3720   strictly anything       often sometimes          graduated
## 3721     mostly anything       often sometimes          graduated
## 3722          vegetarian    socially      <NA>          graduated
## 3723     mostly anything    socially     never          graduated
## 3724   strictly anything    socially     never          graduated
## 3725     mostly anything      rarely     never            working
## 3726            anything  not at all     never            working
## 3727                <NA> desperately      <NA>               <NA>
## 3728                <NA>        <NA>     never               <NA>
## 3729                <NA>        <NA>      <NA>               <NA>
## 3730     mostly anything    socially     never               <NA>
## 3731                <NA>    socially     never          graduated
## 3732 strictly vegetarian    socially sometimes          graduated
## 3733     mostly anything        <NA>      <NA>               <NA>
## 3734     mostly anything    socially sometimes          graduated
## 3735                <NA>       often      <NA>               <NA>
## 3736     mostly anything    socially     never          graduated
## 3737        mostly vegan  not at all sometimes          graduated
## 3738      strictly other      rarely      <NA>            working
## 3739                <NA>    socially     never            dropped
## 3740                <NA>    socially     never            working
## 3741                <NA>    socially sometimes            working
## 3742                <NA>    socially     never            working
## 3743   strictly anything    socially     never            working
## 3744     mostly anything    socially     never               <NA>
## 3745                <NA>      rarely      <NA>               <NA>
## 3746     mostly anything    socially     never            working
## 3747                <NA>      rarely      <NA>            working
## 3748                <NA>    socially      <NA>          graduated
## 3749   strictly anything    socially      <NA>            working
## 3750     mostly anything    socially     never          graduated
## 3751                <NA>    socially      <NA>          graduated
## 3752     mostly anything    socially     never          graduated
## 3753     mostly anything    socially      <NA>          graduated
## 3754     mostly anything    socially      <NA>          graduated
## 3755   strictly anything desperately     never            working
## 3756   strictly anything    socially     never            working
## 3757                <NA>    socially      <NA>            working
## 3758            anything        <NA>     never               <NA>
## 3759   strictly anything    socially     never            dropped
## 3760            anything    socially      <NA>          graduated
## 3761                <NA>       often     never          graduated
## 3762            anything    socially     never          graduated
## 3763   mostly vegetarian    socially sometimes          graduated
## 3764                <NA>      rarely     never          graduated
## 3765            anything    socially      <NA>          graduated
## 3766      strictly other    socially     never            working
## 3767     mostly anything    socially sometimes          graduated
## 3768     mostly anything    socially     never          graduated
## 3769   mostly vegetarian    socially      <NA>          graduated
## 3770   strictly anything       often sometimes          graduated
## 3771            anything    socially     never            working
## 3772     mostly anything    socially     never          graduated
## 3773     mostly anything    socially     never            working
## 3774        mostly other    socially sometimes               <NA>
## 3775            anything  not at all     never          graduated
## 3776                <NA>    socially     never          graduated
## 3777   mostly vegetarian        <NA>      <NA>            dropped
## 3778     mostly anything    socially     never          graduated
## 3779                <NA>    socially     never          graduated
## 3780                <NA>    socially     never college/university
## 3781                <NA>  not at all     never            working
## 3782            anything      rarely     never               <NA>
## 3783                <NA>    socially      <NA>            working
## 3784     mostly anything    socially sometimes          graduated
## 3785            anything       often sometimes          graduated
## 3786     mostly anything       often     never          graduated
## 3787   strictly anything       often      <NA>          graduated
## 3788                <NA>      rarely     never          graduated
## 3789                <NA>    socially     never          graduated
## 3790                <NA>    socially     never          graduated
## 3791 strictly vegetarian    socially     never          graduated
## 3792                <NA>  not at all     never               <NA>
## 3793                <NA>  not at all     never          graduated
## 3794                <NA>        <NA>     never          graduated
## 3795   strictly anything    socially sometimes            working
## 3796                <NA>       often      <NA>          graduated
## 3797   strictly anything    socially sometimes          graduated
## 3798                <NA>    socially     never          graduated
## 3799   mostly vegetarian      rarely      <NA>            working
## 3800   strictly anything       often     never          graduated
## 3801     mostly anything       often sometimes          graduated
## 3802     mostly anything    socially     never          graduated
## 3803   strictly anything    socially sometimes          graduated
## 3804   mostly vegetarian    socially     never          graduated
## 3805   strictly anything    socially sometimes          graduated
## 3806          vegetarian  not at all     never          graduated
## 3807                <NA>    socially     never          graduated
## 3808                <NA>    socially     never               <NA>
## 3809                <NA>    socially sometimes          graduated
## 3810                <NA>    socially     never college/university
## 3811                <NA>    socially     never            working
## 3812     mostly anything    socially     never            working
## 3813                <NA>        <NA>     never               <NA>
## 3814                <NA>    socially     never          graduated
## 3815     mostly anything    socially     never          graduated
## 3816   strictly anything    socially     never            working
## 3817     mostly anything    socially     never            working
## 3818            anything  very often     never            working
## 3819                <NA>        <NA>     never            working
## 3820                <NA>    socially     never          graduated
## 3821                <NA>    socially sometimes          graduated
## 3822                <NA>    socially      <NA>          graduated
## 3823     mostly anything    socially     never          graduated
## 3824   strictly anything    socially sometimes          graduated
## 3825   strictly anything       often     never            working
## 3826            anything    socially      <NA>               <NA>
## 3827                <NA>    socially     never            working
## 3828     mostly anything  not at all     never            working
## 3829            anything    socially     never          graduated
## 3830            anything    socially      <NA>          graduated
## 3831   strictly anything    socially      <NA>            working
## 3832     mostly anything    socially     never          graduated
## 3833                <NA>    socially     never            working
## 3834                <NA>    socially     never          graduated
## 3835            anything  not at all     never          graduated
## 3836                <NA>      rarely     never            working
## 3837     mostly anything    socially     never          graduated
## 3838   strictly anything      rarely     never          graduated
## 3839                <NA>  not at all     never          graduated
## 3840                <NA>    socially     never            working
## 3841        mostly other    socially     never          graduated
## 3842                <NA>    socially     never          graduated
## 3843                <NA>       often sometimes          graduated
## 3844     mostly anything    socially     never          graduated
## 3845     mostly anything    socially     never            working
## 3846   mostly vegetarian    socially     never            working
## 3847                <NA>    socially      <NA>            working
## 3848     mostly anything    socially sometimes          graduated
## 3849                <NA>        <NA>     never               <NA>
## 3850            anything    socially     never            working
## 3851                <NA>        <NA>     never               <NA>
## 3852 strictly vegetarian    socially     never            working
## 3853                <NA>      rarely     never          graduated
## 3854     mostly anything    socially sometimes          graduated
## 3855        mostly other    socially     never          graduated
## 3856                <NA>    socially     never          graduated
## 3857                <NA>    socially      <NA>          graduated
## 3858     mostly anything    socially     never          graduated
## 3859     mostly anything    socially     never          graduated
## 3860                <NA>       often      <NA>          graduated
## 3861                <NA>    socially      <NA>          graduated
## 3862     mostly anything    socially     never          graduated
## 3863          vegetarian        <NA>     never          graduated
## 3864                <NA>      rarely     never            working
## 3865   strictly anything    socially     never          graduated
## 3866     mostly anything    socially     never          graduated
## 3867                <NA>        <NA>     never          graduated
## 3868                <NA>    socially      <NA>            working
## 3869     mostly anything    socially     never          graduated
## 3870            anything    socially     never               <NA>
## 3871        mostly other    socially     never          graduated
## 3872     mostly anything  not at all     never          graduated
## 3873   mostly vegetarian    socially     never          graduated
## 3874   mostly vegetarian    socially     never          graduated
## 3875 strictly vegetarian       often      <NA>            working
## 3876                <NA>    socially      <NA>          graduated
## 3877                <NA>        <NA>     never               <NA>
## 3878            anything    socially sometimes            working
## 3879     mostly anything       often     never          graduated
## 3880                <NA>      rarely     never          graduated
## 3881   strictly anything    socially      <NA>          graduated
## 3882   mostly vegetarian  not at all     never               <NA>
## 3883                <NA>    socially      <NA>          graduated
## 3884                <NA>    socially     never          graduated
## 3885     mostly anything        <NA>     never               <NA>
## 3886            anything    socially     never          graduated
## 3887      strictly other    socially     never              space
## 3888   strictly anything    socially      <NA>            working
## 3889      strictly vegan      rarely     never          graduated
## 3890                <NA>       often     never          graduated
## 3891                <NA>    socially sometimes          graduated
## 3892                <NA>    socially      <NA>          graduated
## 3893            anything       often     never          graduated
## 3894     mostly anything    socially     never          graduated
## 3895                <NA>    socially     never            working
## 3896                <NA>       often     never            working
## 3897        mostly other  not at all     never          graduated
## 3898                <NA>    socially     never          graduated
## 3899   strictly anything       often sometimes          graduated
## 3900                <NA>       often     never               <NA>
## 3901     mostly anything    socially     never            working
## 3902            anything    socially      <NA>               <NA>
## 3903                <NA>  not at all     never               <NA>
## 3904            anything    socially      <NA>            working
## 3905     mostly anything    socially     never            working
## 3906                <NA>    socially     never          graduated
## 3907                <NA>    socially      <NA>          graduated
## 3908            anything      rarely     never          graduated
## 3909   mostly vegetarian        <NA>      <NA>          graduated
## 3910        mostly other    socially     never          graduated
## 3911                <NA>    socially sometimes           two-year
## 3912               other        <NA>     never          graduated
## 3913            anything    socially      <NA>          graduated
## 3914     mostly anything    socially sometimes            working
## 3915                <NA>      rarely     never          graduated
## 3916                <NA>  not at all     never          graduated
## 3917     mostly anything    socially      <NA>            working
## 3918                <NA>  not at all     often            dropped
## 3919     mostly anything    socially     never          graduated
## 3920          vegetarian    socially     never               <NA>
## 3921     mostly anything    socially      <NA>          graduated
## 3922            anything    socially      <NA>          graduated
## 3923                <NA>      rarely      <NA>            dropped
## 3924                <NA>      rarely     never          graduated
## 3925                <NA>    socially sometimes          graduated
## 3926                <NA>    socially      <NA>            working
## 3927     mostly anything    socially     never            working
## 3928                <NA>    socially     never          graduated
## 3929     mostly anything    socially     never          graduated
## 3930     mostly anything      rarely     never          graduated
## 3931     mostly anything       often     never          graduated
## 3932     mostly anything    socially     never          graduated
## 3933     mostly anything    socially     never            working
## 3934     mostly anything    socially     never          graduated
## 3935 strictly vegetarian    socially     never          graduated
## 3936   strictly anything    socially     never          graduated
## 3937                <NA>    socially      <NA>               <NA>
## 3938      strictly other    socially     never               <NA>
## 3939                <NA>        <NA>      <NA>          graduated
## 3940                <NA>    socially      <NA>          graduated
## 3941   mostly vegetarian    socially     never          graduated
## 3942     mostly anything    socially     never          graduated
## 3943            anything    socially     never          graduated
## 3944        mostly other       often      <NA>            working
## 3945   strictly anything      rarely sometimes               <NA>
## 3946     mostly anything    socially     never            working
## 3947   mostly vegetarian    socially      <NA>          graduated
## 3948     mostly anything        <NA>     never          graduated
## 3949     mostly anything    socially sometimes            working
## 3950     mostly anything    socially     never          graduated
## 3951     mostly anything    socially     never          graduated
## 3952     mostly anything    socially     never            working
## 3953               other      rarely     never          graduated
## 3954                <NA>    socially     never          graduated
## 3955                <NA>    socially     never          graduated
## 3956          vegetarian    socially      <NA>            working
## 3957     mostly anything    socially      <NA>          graduated
## 3958     mostly anything  not at all     never          graduated
## 3959     mostly anything      rarely     never          graduated
## 3960     mostly anything    socially sometimes               <NA>
## 3961        mostly vegan    socially      <NA>               <NA>
## 3962 strictly vegetarian      rarely     never          graduated
## 3963          vegetarian  not at all sometimes            working
## 3964                <NA>    socially     never          graduated
## 3965     mostly anything    socially     never          graduated
## 3966   strictly anything    socially     never            dropped
## 3967            anything    socially     never          graduated
## 3968   mostly vegetarian       often      <NA>            working
## 3969            anything    socially      <NA>          graduated
## 3970     mostly anything    socially     never          graduated
## 3971     mostly anything    socially     never          graduated
## 3972     mostly anything    socially     never          graduated
## 3973     mostly anything      rarely     never          graduated
## 3974     mostly anything    socially      <NA>          graduated
## 3975   strictly anything      rarely     never            working
## 3976                <NA>    socially      <NA>          graduated
## 3977                <NA>    socially      <NA>          graduated
## 3978                <NA>    socially sometimes          graduated
## 3979                <NA>  not at all     never               <NA>
## 3980            anything    socially     never                law
## 3981     mostly anything    socially     never          graduated
## 3982                <NA>    socially     never          graduated
## 3983        mostly vegan    socially      <NA>            working
## 3984            anything  not at all     never          graduated
## 3985                <NA>    socially      <NA>            working
## 3986   strictly anything    socially sometimes          graduated
## 3987   mostly vegetarian    socially     never          graduated
## 3988   strictly anything    socially      <NA>          graduated
## 3989            anything    socially     never               <NA>
## 3990                <NA>    socially     never          graduated
## 3991                <NA>    socially     never          graduated
## 3992   strictly anything    socially     never          graduated
## 3993     mostly anything  not at all     never          graduated
## 3994     mostly anything    socially     never          graduated
## 3995     mostly anything    socially     never          graduated
## 3996     mostly anything    socially sometimes          graduated
## 3997     mostly anything    socially      <NA>          graduated
## 3998                <NA>    socially     never          graduated
## 3999                <NA>    socially sometimes          graduated
## 4000                <NA>  not at all     never          graduated
## 4001     mostly anything    socially     never          graduated
## 4002                <NA>    socially      <NA>          graduated
## 4003     mostly anything    socially      <NA>          graduated
## 4004                <NA>       often      <NA>          graduated
## 4005                <NA>    socially     never          graduated
## 4006                <NA>    socially     never          graduated
## 4007     mostly anything    socially     never          graduated
## 4008                <NA> desperately     never          graduated
## 4009   strictly anything    socially     never          graduated
## 4010     mostly anything    socially     never          graduated
## 4011                <NA>    socially     never          graduated
## 4012            anything  not at all     never          graduated
## 4013                <NA>    socially      <NA>          graduated
## 4014   strictly anything    socially      <NA>          graduated
## 4015                <NA>    socially     never          graduated
## 4016                <NA>    socially      <NA>          graduated
## 4017     mostly anything      rarely     never          graduated
## 4018                <NA>       often sometimes            working
## 4019                <NA>    socially sometimes            working
## 4020        mostly other      rarely      <NA>            dropped
## 4021     mostly anything    socially      <NA>          graduated
## 4022                <NA>    socially     never          graduated
## 4023     mostly anything    socially      <NA>          graduated
## 4024            anything    socially sometimes          graduated
## 4025     mostly anything    socially     never          graduated
## 4026   mostly vegetarian    socially      <NA>          graduated
## 4027     mostly anything    socially sometimes            working
## 4028     mostly anything      rarely     never            working
## 4029     mostly anything      rarely sometimes          graduated
## 4030        mostly vegan      rarely sometimes          graduated
## 4031                <NA>    socially     never               <NA>
## 4032                <NA>  not at all     never          graduated
## 4033     mostly anything       often     never            working
## 4034                <NA>    socially      <NA>          graduated
## 4035     mostly anything    socially sometimes            working
## 4036   mostly vegetarian    socially     never          graduated
## 4037            anything    socially     never          graduated
## 4038   strictly anything  not at all     never          graduated
## 4039                <NA>        <NA>     never            working
## 4040                <NA>    socially     never            working
## 4041   strictly anything    socially sometimes          graduated
## 4042       mostly kosher    socially     never          graduated
## 4043               other  not at all     never           two-year
## 4044     mostly anything    socially      <NA>          graduated
## 4045   strictly anything    socially     never          graduated
## 4046   mostly vegetarian    socially     never          graduated
## 4047     mostly anything    socially      <NA>          graduated
## 4048   strictly anything        <NA>      <NA>          graduated
## 4049                <NA>    socially sometimes            working
## 4050                <NA>    socially     never          graduated
## 4051     mostly anything    socially      <NA>          graduated
## 4052   strictly anything    socially     never          graduated
## 4053     mostly anything    socially      <NA>          graduated
## 4054     mostly anything  not at all     never            working
## 4055     mostly anything    socially      <NA>               <NA>
## 4056                <NA>    socially sometimes          graduated
## 4057                <NA>    socially      <NA>          graduated
## 4058   mostly vegetarian    socially     never          graduated
## 4059                <NA>    socially     never          graduated
## 4060                <NA>       often     never          graduated
## 4061   strictly anything    socially     never               <NA>
## 4062                <NA>  very often sometimes               <NA>
## 4063     mostly anything    socially sometimes            working
## 4064               vegan        <NA>      <NA>            working
## 4065                <NA>    socially     never          graduated
## 4066                <NA>    socially      <NA>          graduated
## 4067                <NA>    socially     never               high
## 4068   mostly vegetarian    socially sometimes          graduated
## 4069                <NA>    socially sometimes          graduated
## 4070     mostly anything    socially     never          graduated
## 4071     mostly anything    socially      <NA>               <NA>
## 4072                <NA>    socially     never          graduated
## 4073     mostly anything    socially     never            working
## 4074                <NA>    socially     never college/university
## 4075     mostly anything    socially     never          graduated
## 4076                <NA>    socially     never            working
## 4077     mostly anything    socially sometimes            working
## 4078                <NA>  not at all     never               <NA>
## 4079                <NA>    socially     never          graduated
## 4080                <NA>        <NA>     never               <NA>
## 4081                <NA>    socially      <NA>          graduated
## 4082        mostly other      rarely     never          graduated
## 4083     mostly anything    socially     never          graduated
## 4084     mostly anything    socially sometimes            working
## 4085                <NA>       often     never          graduated
## 4086     mostly anything    socially      <NA>          graduated
## 4087            anything      rarely     never          graduated
## 4088            anything    socially sometimes college/university
## 4089   mostly vegetarian    socially     never            working
## 4090            anything    socially     never          graduated
## 4091                <NA>        <NA>     never          graduated
## 4092                <NA>        <NA>      <NA>               <NA>
## 4093                <NA>    socially     never          graduated
## 4094     mostly anything    socially      <NA>          graduated
## 4095     mostly anything    socially     never          graduated
## 4096                <NA>      rarely sometimes          graduated
## 4097     mostly anything    socially     never          graduated
## 4098   strictly anything    socially      <NA>          graduated
## 4099                <NA>    socially      <NA>          graduated
## 4100                <NA>        <NA>     never          graduated
## 4101                <NA>    socially sometimes          graduated
## 4102     mostly anything    socially sometimes          graduated
## 4103     mostly anything    socially sometimes            working
## 4104   strictly anything    socially      <NA>            working
## 4105                <NA>    socially     never            working
## 4106   strictly anything    socially      <NA>          graduated
## 4107                <NA>    socially     never          graduated
## 4108                <NA>    socially     never            working
## 4109     mostly anything    socially sometimes          graduated
## 4110   mostly vegetarian    socially     never          graduated
## 4111                <NA>    socially      <NA>          graduated
## 4112                <NA>  not at all     never          graduated
## 4113     mostly anything    socially     never          graduated
## 4114                <NA>    socially     never            dropped
## 4115                <NA>    socially     never          graduated
## 4116                <NA>       often sometimes          graduated
## 4117     mostly anything    socially     never          graduated
## 4118                <NA>       often      <NA>               <NA>
## 4119                <NA>    socially      <NA>            working
## 4120     mostly anything    socially     never            working
## 4121     mostly anything    socially     never          graduated
## 4122     mostly anything    socially     never            working
## 4123                <NA>    socially      <NA>               <NA>
## 4124     mostly anything    socially     never            working
## 4125                <NA>    socially     never          graduated
## 4126                <NA>    socially     never               <NA>
## 4127                <NA>      rarely     never          graduated
## 4128     mostly anything      rarely     never            working
## 4129     mostly anything    socially     never          graduated
## 4130                <NA>    socially     never            working
## 4131   mostly vegetarian  not at all      <NA>          graduated
## 4132     mostly anything    socially     never            working
## 4133   strictly anything    socially     never          graduated
## 4134     mostly anything    socially     never            working
## 4135            anything    socially      <NA>          graduated
## 4136       mostly kosher    socially      <NA>          graduated
## 4137   strictly anything    socially     never            working
## 4138                <NA>    socially      <NA>          graduated
## 4139      strictly other    socially     never          graduated
## 4140     mostly anything    socially     never               <NA>
## 4141   strictly anything    socially     never          graduated
## 4142            anything    socially     never          graduated
## 4143                <NA>    socially      <NA>          graduated
## 4144     mostly anything    socially     never            working
## 4145            anything    socially sometimes            working
## 4146     mostly anything    socially     never            working
## 4147                <NA>    socially     never            working
## 4148            anything    socially     never            working
## 4149     mostly anything    socially     never               <NA>
## 4150                <NA>    socially      <NA>          graduated
## 4151                <NA>    socially     never          graduated
## 4152            anything    socially     never          graduated
## 4153            anything       often     never          graduated
## 4154                <NA>      rarely sometimes            working
## 4155            anything    socially     never          graduated
## 4156   strictly anything    socially      <NA>          graduated
## 4157   strictly anything    socially     never          graduated
## 4158                <NA>    socially      <NA>          graduated
## 4159   strictly anything    socially     never          graduated
## 4160   mostly vegetarian      rarely     never          graduated
## 4161                <NA>    socially     never          graduated
## 4162     mostly anything    socially     never          graduated
## 4163                <NA>       often sometimes          graduated
## 4164     mostly anything    socially      <NA>          graduated
## 4165            anything    socially      <NA>          graduated
## 4166                <NA>    socially sometimes          graduated
##                                                                                                    ethnicity
## 1                                                                                               asian, white
## 2                                                                                                      white
## 3                                                                                                       <NA>
## 4                                                                                                      white
## 5                                                                                        asian, black, other
## 6                                                                                                      white
## 7                                                                                               white, other
## 8                                                                                                      white
## 9                                                                                                      white
## 10                                                                                                     white
## 11                                                                                                     white
## 12                                                                                                     white
## 13                                                                                                     white
## 14                                                                                                     white
## 15                                                                                   hispanic / latin, white
## 16                                                                                                     white
## 17                                                                                                     white
## 18                                                                                          hispanic / latin
## 19                                                                                                     white
## 20                                                                                                     white
## 21                                                                                                     white
## 22                                                                                                      <NA>
## 23                                                                                                     white
## 24                                                                                                     white
## 25                                                                                                     white
## 26                                                                                              asian, white
## 27                                                                                   pacific islander, white
## 28                                                                                                     asian
## 29                                                                                                      <NA>
## 30                                                                                                     white
## 31                                                                                                     white
## 32                                                                                                      <NA>
## 33                                                                                                     white
## 34                                                                                                      <NA>
## 35                                                                                                     white
## 36                                                                                                     white
## 37                                                                                                     white
## 38                                                                                   hispanic / latin, white
## 39                                                                                                      <NA>
## 40                                                                                                     white
## 41                                                                                                      <NA>
## 42                                                                                              black, white
## 43                                                                                                     white
## 44                                                                                                     white
## 45                                                                                                     white
## 46                                                                                          pacific islander
## 47                                                                                                      <NA>
## 48                                                                                                     white
## 49                                                                                                      <NA>
## 50                                                                                                     white
## 51                                                                                                     white
## 52                                                                                                      <NA>
## 53                                                                                                     white
## 54                                                                                    asian, native american
## 55                                                                                                     white
## 56                                                                                                     white
## 57                                                                                                     white
## 58                                                                                                     white
## 59                                                                                   hispanic / latin, white
## 60                                                                                                      <NA>
## 61                                                                                   asian, pacific islander
## 62                                                                                                     white
## 63                                                                                                     white
## 64                                                                                                     white
## 65                                                                                          hispanic / latin
## 66                                                                                                     white
## 67                                                                                                     asian
## 68                                                                             black, native american, white
## 69                                                                                     middle eastern, other
## 70                                                                                                     white
## 71                                                                                                     white
## 72                                                                                                     white
## 73                                                                                    native american, white
## 74                                                                                                    indian
## 75                                                                                                     white
## 76                                                                                                      <NA>
## 77                                                                                                     white
## 78                                                                                                     white
## 79                                                                                                     white
## 80                                                                                                     white
## 81                                                                                                     white
## 82                                                                                                     white
## 83                                                                                                     white
## 84                                                                                              asian, white
## 85                                                                                                      <NA>
## 86                                                                                                     white
## 87                                                                                                      <NA>
## 88                                                                                                      <NA>
## 89                                                                                                      <NA>
## 90                                                                                                      <NA>
## 91                                                                                                     black
## 92                                                                                                     white
## 93                                                                                                     white
## 94                                                                                   hispanic / latin, white
## 95                                                                                                     white
## 96                                                                                                     white
## 97                                                                                                     white
## 98                                                                                                     asian
## 99                                                                                                     white
## 100                                                                                                    black
## 101                                                                                                    white
## 102                                                                                                     <NA>
## 103                                                                                                    white
## 104                                                                                                    white
## 105                                                                                                    white
## 106                                                                                                    white
## 107                                                                                                    asian
## 108                                                                                                    white
## 109                                                                                         pacific islander
## 110                                                                                                    white
## 111                                                                                                     <NA>
## 112                                                                                                    white
## 113                                                          black, native american, hispanic / latin, other
## 114                                                                 black, native american, hispanic / latin
## 115                                                                                                    white
## 116                                                                                                    white
## 117                                                                           asian, black, pacific islander
## 118                                                                                                    white
## 119                                                                                             white, other
## 120                                                                                                    white
## 121                                                                                                    white
## 122                                                                                                    white
## 123                                                                                                    white
## 124                                                                                  hispanic / latin, white
## 125                                                                                                    white
## 126                                                                                                    asian
## 127                                                                                                    white
## 128                                                                                                    asian
## 129                                                                                                    white
## 130                                                                                                     <NA>
## 131                                                                                                    white
## 132                                                                                                    white
## 133                                                                                                    white
## 134                                                                                                    white
## 135                                                                                                    white
## 136                                                                                                    white
## 137                                                                                                    white
## 138                                                                                                    white
## 139                                                                                                    asian
## 140                                                                                                    white
## 141                                                                                                     <NA>
## 142                                                                                                    white
## 143                                                                                                    white
## 144                                                                                                     <NA>
## 145                                                                                                    white
## 146                                                                                  hispanic / latin, white
## 147                                                                                                    asian
## 148                                                                                                    asian
## 149                                                                                                    white
## 150                                                                                                    white
## 151  asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 152                                                                                                    white
## 153                                                                                                    white
## 154                                                                                                     <NA>
## 155                                                                                             black, white
## 156                                                                                                    white
## 157                                                                                                    other
## 158                                                                                                    white
## 159                                                                                                    white
## 160                                                                                                    white
## 161                                                                                                    asian
## 162                                                                                                     <NA>
## 163                                                                                                    asian
## 164                                                                                                     <NA>
## 165                                                                                                    white
## 166                                                                                                    white
## 167                                                                                                    white
## 168                                                                                  hispanic / latin, white
## 169                                                                                                    white
## 170                                                                                                     <NA>
## 171                                                                                                    white
## 172                                                                                                     <NA>
## 173                                                                                                    white
## 174                                                                                                    white
## 175                                                                                         hispanic / latin
## 176                                                                                  hispanic / latin, other
## 177                                                                                                    white
## 178                                                                                                    white
## 179                                                                                                     <NA>
## 180                                                                                                    white
## 181                                                                                                    white
## 182                                                                                         hispanic / latin
## 183                                                                                                    white
## 184                                                                                                    white
## 185                                                                                                    white
## 186                                                                                                     <NA>
## 187                                                                                                    white
## 188                                                                                                    white
## 189                                                                                                    asian
## 190                                                                                                    white
## 191                                                                                                   indian
## 192                                                                                         hispanic / latin
## 193                                                                                  hispanic / latin, white
## 194                                                                                                    white
## 195                                                                                                    asian
## 196                                                                                                    white
## 197                                                                                         hispanic / latin
## 198                                                                                                    white
## 199                                                                                                    asian
## 200                                                                                                    asian
## 201                                                                                                    asian
## 202                                                                                                    asian
## 203                                                                                                    white
## 204                                                                                                    white
## 205                                                                                                     <NA>
## 206                                                                                                    white
## 207                                                                                                    white
## 208                                                                                  hispanic / latin, white
## 209                                                                                                    white
## 210                                                                                                    white
## 211                                                                                                    white
## 212                                                                                                    white
## 213                                                                                                    asian
## 214                                                                                                     <NA>
## 215                                                                                                    white
## 216                                                                                             asian, white
## 217                                                                                                    white
## 218                                                                                                   indian
## 219                                                                                  hispanic / latin, white
## 220                                                                                                    white
## 221                                                                                                    white
## 222                                                                                                    asian
## 223                                                                                                    white
## 224                                                                                                    white
## 225                                                                                                    white
## 226                                                                                                    white
## 227                                                                                             white, other
## 228                                                                                                    white
## 229                                                                                                    white
## 230                                                                                                    white
## 231                                                                                             asian, white
## 232                                                                                         hispanic / latin
## 233                                                                                                    white
## 234                                                                                                    white
## 235                                                                                             white, other
## 236                                                                                                    white
## 237                                                                                                    white
## 238                                                                                                    other
## 239                                                                                                    white
## 240                                                                                                    white
## 241                                                                                                    asian
## 242                                                                                             white, other
## 243                                                                                                    asian
## 244                                                                                                     <NA>
## 245                                                                                                    white
## 246                                                                                                    black
## 247                                                                                                    white
## 248                                                                                                    white
## 249                                                                                         hispanic / latin
## 250                                                                                                    asian
## 251                                                                                             black, white
## 252                                                                                                    white
## 253                                                                                                   indian
## 254                                                                                                     <NA>
## 255                                                                                         hispanic / latin
## 256                                                                                                    white
## 257                                                                                                    black
## 258                                                                                                    white
## 259                                                                                  hispanic / latin, white
## 260                                                                                             asian, black
## 261                                                                                                    white
## 262                                                                                         hispanic / latin
## 263                                                                                         hispanic / latin
## 264                                                                                                    white
## 265                                                                                  asian, pacific islander
## 266                                                                                    middle eastern, white
## 267                                                                                                    white
## 268                                                                                                    white
## 269                                                                                                    white
## 270                                                                                  hispanic / latin, white
## 271                                                                                                    asian
## 272                                                                                                     <NA>
## 273                                                                                                    white
## 274                                                                                                    white
## 275                                                                                                    white
## 276                                                                                                    asian
## 277                                                                                                     <NA>
## 278                                                                                                    white
## 279                                                                                                    white
## 280                                                                                                     <NA>
## 281                                                                                                    black
## 282                                                                                                    white
## 283                                                                                                    white
## 284                                                                                                    white
## 285                                                                                                    black
## 286                                                                                                    white
## 287                                                                                    middle eastern, white
## 288                                                                                                    white
## 289                                                                                                    white
## 290                                                                                         hispanic / latin
## 291                                                                                                    white
## 292                                                                                                    other
## 293                                                                                                    white
## 294                                                                                                    asian
## 295                                                                                                     <NA>
## 296                                                                                                    white
## 297                                                                                                    white
## 298                                                                                                    white
## 299                                                                                         hispanic / latin
## 300                                                                                         hispanic / latin
## 301                                                                                                    white
## 302                                                                                                    white
## 303                                                                                                    other
## 304                                                                            native american, white, other
## 305                                                                                         hispanic / latin
## 306                                                                                                    white
## 307                                                                                                    black
## 308                                                                                                    white
## 309                                                                            black, native american, white
## 310                                                                                                    white
## 311                                                                                                    white
## 312                                                                                                    other
## 313                                                                                                    asian
## 314                                                                                                    white
## 315                                                                                                    white
## 316                                                                                         hispanic / latin
## 317                                                                                                    white
## 318                                                                                   black, native american
## 319                                                                                                    white
## 320                                                                                                    white
## 321                                                                                                    white
## 322                                                                                                    asian
## 323                                                                                                    white
## 324                                                                                                    white
## 325                                                                                             white, other
## 326                                                                                                     <NA>
## 327                                                                                                     <NA>
## 328                                                                                                    white
## 329                                                                                                    white
## 330                                                                                                    white
## 331                                                                                         hispanic / latin
## 332                                                                                                    white
## 333                                                                                                    white
## 334                                                                                                    white
## 335                                                                                                     <NA>
## 336                                                                                                    white
## 337                                                                                                     <NA>
## 338                                                                                                    white
## 339                                                                                                    white
## 340                                                                                                    white
## 341                                                                                                    white
## 342                                                                                                    white
## 343                                                                                                    white
## 344                                                                                         hispanic / latin
## 345                                                                                                    white
## 346                                                                                      black, white, other
## 347                                                                                                    white
## 348                                                                                                    white
## 349                                                                                                    white
## 350                                                                                                    white
## 351                                                                                                    white
## 352                                                                                                    white
## 353                                                                                             white, other
## 354                                                                                                    white
## 355                                                                                                    white
## 356                                                                                                     <NA>
## 357                                                                                                    white
## 358                                                                                                    white
## 359                                                                                                    white
## 360                                                                           hispanic / latin, white, other
## 361                                                                                                     <NA>
## 362                                                                                                    white
## 363                                                                                                    white
## 364                                                                                         pacific islander
## 365                                                                                           middle eastern
## 366                                                                                                    white
## 367                                                                                                    asian
## 368                                                                                                    white
## 369                                                                                                   indian
## 370                                                                                                    white
## 371                                                                                                     <NA>
## 372                                                                                                    white
## 373                                                                                                    asian
## 374                                                                                                     <NA>
## 375                                                                                                    white
## 376                                                                                                    white
## 377                                                                                                    white
## 378                                                                                                    white
## 379                                                                                                    white
## 380                                                                                         hispanic / latin
## 381                                                                                                    white
## 382                                                                                                    white
## 383                                                                                                    white
## 384                                                                                                    white
## 385                                                                                                    white
## 386                                                                                                    white
## 387                                                                                                    white
## 388                                                                                                     <NA>
## 389                                                                                  asian, pacific islander
## 390                                                                                                    white
## 391                                                                                                    white
## 392                                                                                                    white
## 393                                                                                                    white
## 394                                                                                                    white
## 395                                                                                                    black
## 396                                                                                                    white
## 397                                                                                                    white
## 398                                                                                                    white
## 399                                                                                                    white
## 400                                                                                                     <NA>
## 401                                                                                                    white
## 402                                                                                                    other
## 403                                                                                                    white
## 404                                                                                         hispanic / latin
## 405                                                                                                    white
## 406                                                                                                    white
## 407                                                                                                    black
## 408                                                                                                    white
## 409                                                                                    middle eastern, white
## 410                                                                                                    white
## 411                                                                                                    white
## 412                                                                                   native american, white
## 413                                                                                   native american, white
## 414                                                                                                    white
## 415                                                                                                    white
## 416                                                                                                    other
## 417                                                                                                     <NA>
## 418                                                                                                    asian
## 419                                                                                                    white
## 420                                                                                                    white
## 421                                                                                                    white
## 422                                                                                                     <NA>
## 423                                                                                                    other
## 424                                                                                                    white
## 425                                                                                                    asian
## 426                                                                                                    white
## 427                                                                                                     <NA>
## 428                                                                                                    white
## 429                                                                                                     <NA>
## 430                                                                                                    white
## 431                                                                                                    other
## 432                                                                                  hispanic / latin, white
## 433                                                                                                    other
## 434                                                                                             black, other
## 435                                                                            black, native american, white
## 436                                                                                         hispanic / latin
## 437                                                                                                    white
## 438                                                                                                    asian
## 439                                                                                                    white
## 440                                                                                                    black
## 441                                                                                                    black
## 442                                                                                                     <NA>
## 443                                                                                                     <NA>
## 444                                                                                                    white
## 445                                                                                                    white
## 446                                                                                                    white
## 447                                                                                                     <NA>
## 448                                                                                                    white
## 449                                                                                           middle eastern
## 450                                                                                                    white
## 451                                                                                                    white
## 452                                                                                         hispanic / latin
## 453                                                                                                    white
## 454                                                                                                    white
## 455                                                                                                    asian
## 456                                                                                                    asian
## 457                                                                                                     <NA>
## 458                                                                                                   indian
## 459                                                                 native american, hispanic / latin, white
## 460                                                                                                    white
## 461                                                                                  asian, pacific islander
## 462                                                                                                    white
## 463                                                                                                    asian
## 464                                                                                                    white
## 465                                                                                         hispanic / latin
## 466                                                                                         hispanic / latin
## 467                                                                                                     <NA>
## 468                                                                                                    white
## 469                                                                                                    white
## 470                                                                                                    white
## 471                                                                                         pacific islander
## 472                                                                                             white, other
## 473                                                                                                    white
## 474                                                                                                    asian
## 475                                                                                         hispanic / latin
## 476                                                                                                    asian
## 477                                                                                                    white
## 478                                                                                                    white
## 479                                                                                             white, other
## 480                                                                                                    white
## 481                                                                                             asian, white
## 482                                                                                                    white
## 483                                                                                                    white
## 484                                                                                             white, other
## 485                                                                                                     <NA>
## 486                                                                                  hispanic / latin, white
## 487                                                                                                    asian
## 488                                                                                                     <NA>
## 489                                                                                                    white
## 490                                                                                                    white
## 491                                                                                                    white
## 492                                                                                                    white
## 493                                                                                                     <NA>
## 494                                                                                                    white
## 495                                                                                                    white
## 496                                                                                  hispanic / latin, other
## 497                                                                                                    asian
## 498                                                                                                    asian
## 499                                                                                                    white
## 500                                                                                                     <NA>
## 501                                                                                                    white
## 502                                                                                                     <NA>
## 503                                                                                                    white
## 504                                                                                                    white
## 505                                                                                                    white
## 506                                                                                                     <NA>
## 507                                                                                                    white
## 508                                                                                                    white
## 509                                                                                                    white
## 510                                                                                                    black
## 511                                                                                    middle eastern, white
## 512                                                                                                    other
## 513                                                                                                    white
## 514                                                                                                    asian
## 515                                                                                                    asian
## 516                                                                                                    white
## 517                                                                                                     <NA>
## 518                                                                                                    asian
## 519                                                                                                    white
## 520                                                                                                    white
## 521                                                                                                    asian
## 522                                                                                                    white
## 523                                                                                                    white
## 524                                                                                                    white
## 525                                                                                         hispanic / latin
## 526                                                                                                    white
## 527                                                                                         hispanic / latin
## 528                                                                                  hispanic / latin, other
## 529                                                                                                    white
## 530                                                                                                    white
## 531                                                                                                    white
## 532                                                                                  hispanic / latin, white
## 533                                                                                                    black
## 534                                                                                                    asian
## 535                                                                                         hispanic / latin
## 536                                                                                                    white
## 537                                                                                             black, other
## 538                                                                                  hispanic / latin, white
## 539                                                                                                    white
## 540                                                                                                    white
## 541                                                                                  hispanic / latin, white
## 542                                                                                                     <NA>
## 543                                                                                             white, other
## 544                                                                                                    white
## 545                                                                                         hispanic / latin
## 546                                                                                                    white
## 547                                                                                  hispanic / latin, white
## 548                                                                                                     <NA>
## 549                                                                                                    other
## 550                                                                                                    asian
## 551                                                                                                    white
## 552                                                                                                    white
## 553                                                                            native american, white, other
## 554                                                                                                    white
## 555                                                                                                    white
## 556                                                                                                    white
## 557                                                                                                    white
## 558                                                                                                    white
## 559                                                                                            black, indian
## 560                                                                                                     <NA>
## 561                                                                                                    white
## 562                                                                                  hispanic / latin, other
## 563                                                                                                     <NA>
## 564                                                                                                    white
## 565                                                                                                    white
## 566                                                                                         hispanic / latin
## 567                                                                                         hispanic / latin
## 568                                                                                                    white
## 569                                                                                                    white
## 570                                                                                                    other
## 571                                                                                                    white
## 572                                                                                                    white
## 573                                                                                                    white
## 574                                                                                         hispanic / latin
## 575                                                                                         hispanic / latin
## 576                                                                                                    white
## 577                                                                                                    white
## 578                                                                                                    white
## 579                                                                                           middle eastern
## 580                                                                                                    white
## 581                                                                                                    black
## 582                                                                                                    white
## 583                                                                                                    white
## 584                                                                                                    white
## 585                                                                                                    asian
## 586                                                                                                    white
## 587                                                                                                    white
## 588                                                                                                   indian
## 589                                                                                                   indian
## 590                                                                                                   indian
## 591                                                                                                    white
## 592                                                                                                     <NA>
## 593                                                                                                    white
## 594                                                                                                    white
## 595                                                                                                    white
## 596                                                                                                    white
## 597                                                                                                    white
## 598                                                                                     indian, white, other
## 599                                                                                  hispanic / latin, white
## 600                                                                                                   indian
## 601                                                                                                    white
## 602                                                                                                    white
## 603                                                                                                    white
## 604                                                                                                    black
## 605                                                                                                     <NA>
## 606                                                                                                    white
## 607                                                                                                    white
## 608                                                                                                    white
## 609                                                                                                     <NA>
## 610                                                                                                    white
## 611                                                                                                    white
## 612                                                                                                    white
## 613                                                                                             black, white
## 614                                                                                                    white
## 615                                                                                                    white
## 616                                                                                                    white
## 617                                                                                                    white
## 618                                                                                                    white
## 619                                                                                                    white
## 620                                                                                                    white
## 621                                                                                                     <NA>
## 622                                                                                                    white
## 623                                                                                                    white
## 624                                                                                                    white
## 625                                                                                                    other
## 626                                                                                                    white
## 627                                                                                                    white
## 628                                                                                                    white
## 629                                                                                                    white
## 630                                                                                  hispanic / latin, white
## 631                                                                                                    white
## 632                                                                                                    white
## 633                                                                                                    white
## 634                                                                                         hispanic / latin
## 635                                                                                  hispanic / latin, white
## 636                                                                                                    white
## 637                                                                                                    white
## 638                                                                                                    white
## 639                                                                                                    white
## 640                                                                                                    white
## 641                                                                                         pacific islander
## 642                                                                                         hispanic / latin
## 643                                                                                                    white
## 644                                                                                                    other
## 645                                                                                             black, white
## 646                                                                                         hispanic / latin
## 647                                                                                         hispanic / latin
## 648                                                                                                    white
## 649                                                                                         hispanic / latin
## 650                                                                                             white, other
## 651                                                                            middle eastern, indian, other
## 652                                                                                                    white
## 653                                                                                                    asian
## 654                                                                                                    white
## 655                                                                                                    white
## 656                                                                                                    white
## 657                                                                                                    white
## 658                                                                                         hispanic / latin
## 659                                                                                                    asian
## 660                                                                                                    white
## 661                                                                                                    white
## 662                                                                                                    white
## 663                                                                                                    white
## 664                                                                                                    white
## 665                                                                                         hispanic / latin
## 666                                                                                                    white
## 667                                                                                                    white
## 668                                                                                                    white
## 669                                                                                                    white
## 670                                                                                                    white
## 671                                                                                                    white
## 672                                                                                                    white
## 673                                                                                                    asian
## 674                                                                                                    white
## 675                                                                                                    white
## 676                                                                                                    white
## 677                                                                                                    white
## 678                                                                                             white, other
## 679                                                                                                    asian
## 680                                                                                  hispanic / latin, white
## 681                                                                                                    other
## 682                                                                                                     <NA>
## 683                                                                                                    white
## 684                                                                                                    asian
## 685                                                                                                    white
## 686                                                                                                     <NA>
## 687                                                                                                    white
## 688                                                                                                    white
## 689                                                                                                    asian
## 690                                                                                                    white
## 691                                                                                                    white
## 692                                                                                                    white
## 693                                                                                                    white
## 694                                                                                                    white
## 695                                                                                                    asian
## 696                                                                                                     <NA>
## 697                                                                                                    white
## 698                                                                                                    asian
## 699                                                                                         pacific islander
## 700                                                                                                    white
## 701                                                                                             black, white
## 702                                                                                                    asian
## 703                                                                                                     <NA>
## 704                                                                                                     <NA>
## 705                                                                                                    white
## 706                                                                                                    white
## 707                                                                                                    black
## 708                                                                                                    white
## 709                                                                           hispanic / latin, white, other
## 710                                                                                             asian, white
## 711                                                                                         hispanic / latin
## 712                                                                                  asian, pacific islander
## 713                                                                                                    black
## 714                                                                                                    white
## 715                                                                                                     <NA>
## 716                                                                                                    white
## 717                                                                                                    white
## 718                                                                                                    white
## 719                                                                                         hispanic / latin
## 720                                                                                                    white
## 721                                                                                         hispanic / latin
## 722                                                                                                    white
## 723                                                   black, native american, hispanic / latin, white, other
## 724                                                                                                    asian
## 725                                                                                         hispanic / latin
## 726                                                                                         hispanic / latin
## 727                                                                                                    white
## 728                                                                                                    white
## 729                                                                                                     <NA>
## 730                                                                                                    white
## 731                                                                                                    white
## 732                                                                                                    other
## 733                                                                                                    white
## 734                                                                                                    white
## 735                                                                                                    white
## 736                                                                                                     <NA>
## 737                                                                                                    black
## 738                                                                                                    white
## 739                                                                                                    white
## 740                                                                                             asian, white
## 741                                                                                                    black
## 742                                                                                                    white
## 743                                                                                                    white
## 744                                                                                                    white
## 745                                                                                         hispanic / latin
## 746                                                                                                    white
## 747                                                                                                     <NA>
## 748                                                                                                     <NA>
## 749                                                                                                    asian
## 750                                                                                           middle eastern
## 751                                                                                  hispanic / latin, white
## 752                                                                                             asian, white
## 753                                                                                         hispanic / latin
## 754                                                                                         pacific islander
## 755                                                                                                    white
## 756                                                                                                    white
## 757                                                                                                    white
## 758                                                                                                    white
## 759                                                                                                    white
## 760                                                                                                    white
## 761                                                                                                    black
## 762                                                                                                    white
## 763                                                                                                    white
## 764                                                                                  hispanic / latin, white
## 765                                                                                                    white
## 766                                                                                                    black
## 767                                                                                                     <NA>
## 768                                                                                                    white
## 769                                                                                                    white
## 770                                                                                  asian, pacific islander
## 771                                                                                                    white
## 772                                                                                                    white
## 773                                                                                                    white
## 774                                                                                                    white
## 775                                                                                                    white
## 776                                                                                                    white
## 777                                                                                                    white
## 778                                                                                                    white
## 779                                                                       pacific islander, hispanic / latin
## 780                                                                                                    asian
## 781                                                                                                     <NA>
## 782                                                                                         hispanic / latin
## 783                                                                                         hispanic / latin
## 784                                                                                                    white
## 785                                                                                                    white
## 786                                                                                                    white
## 787                                                                                                    white
## 788                                                                                                    white
## 789                                                                           black, hispanic / latin, white
## 790                                                                                         pacific islander
## 791                                                                                                    white
## 792                                                                                                    white
## 793                                                                                         hispanic / latin
## 794                                                                                                    white
## 795                                                                                                    white
## 796                                                                                                    white
## 797                                                                                                   indian
## 798                                                                                                    asian
## 799                                                                                                    black
## 800                                                                                                    white
## 801                                                                                   native american, white
## 802                                                                                                     <NA>
## 803                                                                                                    white
## 804                                                                                                    white
## 805                                                                                    middle eastern, white
## 806                                                                                         hispanic / latin
## 807                                                                                                    white
## 808                                                                                                    white
## 809                                                                                                     <NA>
## 810                                                                                                    white
## 811                                                                                                    white
## 812                                                                                             asian, white
## 813                                                                                                    asian
## 814                                                                                         hispanic / latin
## 815                                                                                                   indian
## 816                                                                                                    white
## 817                                                                                                     <NA>
## 818                                                                                                    white
## 819                                                                                                    white
## 820                                                                                                    black
## 821                                                                                                     <NA>
## 822                                                                                                    white
## 823                                                                                                    white
## 824                                                                                                    white
## 825                                                                                                    white
## 826                                                                                                    white
## 827                                                                                                    asian
## 828                                                                                  hispanic / latin, white
## 829                                                                                                     <NA>
## 830                                                                                                   indian
## 831                                                                                                    white
## 832                                                                                                    white
## 833                                                                                  hispanic / latin, white
## 834                                                                                                    asian
## 835                                                                                                    white
## 836                                                                                                   indian
## 837                                                                                                     <NA>
## 838                                                                                                    white
## 839                                                                                                     <NA>
## 840                                                                                                    white
## 841                                                                                   native american, white
## 842                                                                                  hispanic / latin, white
## 843                                                                                                    white
## 844                                                                                                    white
## 845                                                                                                    white
## 846                                                                                                    white
## 847                                                                                                    white
## 848                                                                                                    white
## 849                                                                                                    white
## 850                                                                                                    white
## 851                                                                                                    white
## 852                                                                                             white, other
## 853                                                                                                    white
## 854                                                                                                    other
## 855                                                                                                    white
## 856                                                                                                    white
## 857                                                                                                    asian
## 858                                                                                                    white
## 859                                                                                                    white
## 860                                                                                                    white
## 861                                                                                  hispanic / latin, white
## 862                                                                                                    white
## 863                                                                                                    white
## 864                                                                                                    white
## 865                                                                                  hispanic / latin, white
## 866                                                                                                    white
## 867                                                                                    middle eastern, white
## 868                                                                                                    white
## 869                                                                                                    white
## 870                                                                                                    white
## 871                                                                                                    other
## 872                                                                                                    white
## 873                                                                                                    white
## 874                                                                                                    white
## 875                                                                                                    white
## 876                                                                                                    black
## 877                                                                                                    asian
## 878                                                                                                    white
## 879                                                                                                    white
## 880                                                                                                    white
## 881                                                                                                    other
## 882                                                                                                    asian
## 883                                                                                          native american
## 884                                                                                                    white
## 885                                                                                                    white
## 886                                                                                                    white
## 887                                                                                                    white
## 888                                                                                                    white
## 889                                                                                                    white
## 890                                                                                            indian, white
## 891                                                                                                    white
## 892                                                                                                    white
## 893                                                                                                    white
## 894                                                                                                    white
## 895  asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 896                                                                                                    white
## 897                                                                                                     <NA>
## 898                                                                                             asian, white
## 899                                                                                                     <NA>
## 900                                                                                                    white
## 901                                                                                             asian, black
## 902                                                                                                    white
## 903                                                                                                    white
## 904                                                                                                    white
## 905                                                                                  hispanic / latin, white
## 906                                                                                                    white
## 907                                                                                                     <NA>
## 908                                                                                                    white
## 909                                                                                                    white
## 910                                                                                  hispanic / latin, white
## 911                                                                                                    white
## 912                                                                                                    white
## 913                                                                                                    white
## 914                                                                                                    white
## 915                                                                                                    white
## 916                                                                                                    white
## 917                                                                                                     <NA>
## 918                                                                                                     <NA>
## 919                                                                                                    white
## 920                                                                                         hispanic / latin
## 921                                                                                                    white
## 922                                                                                                    white
## 923                                                                                         hispanic / latin
## 924                                                                                                    white
## 925                                                                                                    white
## 926                                                                                                     <NA>
## 927                                                                                                     <NA>
## 928                                                                                             asian, white
## 929                                                                                                     <NA>
## 930                                                                                                   indian
## 931                                                                                                    white
## 932                                                                                                    white
## 933                                                                                                     <NA>
## 934                                                                                                     <NA>
## 935                                                                                             white, other
## 936                                                                                                    white
## 937                                                                                                    asian
## 938                                                                                                    white
## 939                                                                                         hispanic / latin
## 940                                                                                                    white
## 941                                                                                                    asian
## 942                                                                                                    white
## 943                                                                                                    white
## 944                                                                                                    white
## 945                                                                                                     <NA>
## 946                                                                                                    white
## 947                                                                                                     <NA>
## 948                                                                                                    white
## 949                                                                                                    asian
## 950                                                                                                     <NA>
## 951                                                                                                    other
## 952                                                                                                    white
## 953                                                                                                    asian
## 954                                                                                             asian, white
## 955                                                                                                    white
## 956                                                                                                     <NA>
## 957                                                                                                    white
## 958                                                                                                    white
## 959                                                                                                     <NA>
## 960                                                                                           middle eastern
## 961                                                                                                     <NA>
## 962                                                                                                    white
## 963                                                                                                    white
## 964                                                                                                    white
## 965                                                                                                    white
## 966                                                                                                    asian
## 967                                                                                                    white
## 968                                                                                                    white
## 969                                                                                                    white
## 970                                                                                                    white
## 971                                                                                                    white
## 972                                                                                                    white
## 973                                                                                                    white
## 974                                                                                                     <NA>
## 975                                                                                                    white
## 976                                                                                                    white
## 977                                                                                                    white
## 978                                                                                                    white
## 979                                                                                                    white
## 980                                                                                                    white
## 981                                                                                                    white
## 982                                                                                                    white
## 983                                                                                                     <NA>
## 984                                                                                                    white
## 985                                                                                                    white
## 986                                                                                                    white
## 987                                                                                                    white
## 988                                                                                  hispanic / latin, white
## 989                                                                                                    white
## 990                                                                                                    white
## 991                                                                                                    black
## 992                                                                                                    white
## 993                                                                                                    white
## 994                                                                                                    white
## 995                                                                                                    black
## 996                                                                                                    white
## 997                                                                                                    white
## 998                                                                                    middle eastern, white
## 999                                                                                                    white
## 1000                                                                                                   white
## 1001                                                                                                   white
## 1002                                                                                                   white
## 1003                                                                                 hispanic / latin, white
## 1004                                                                                                   white
## 1005                                                                                  native american, white
## 1006                                                                                                   asian
## 1007                                                                                                   white
## 1008                                                                                                    <NA>
## 1009                                                                                                   white
## 1010                                                                                                   white
## 1011                                                                                                   white
## 1012                                                                                                   white
## 1013                                                                                                   asian
## 1014                                                                           black, native american, white
## 1015                                                                                                   asian
## 1016                                                                                 hispanic / latin, white
## 1017                                                                                 hispanic / latin, white
## 1018                                                                                                   white
## 1019                                                                                                   white
## 1020                                                                                                   white
## 1021                                                                                                   other
## 1022                                                                                                   white
## 1023                                                                                                   white
## 1024                                                                                                   white
## 1025                                                                                                   white
## 1026                                                                                                   white
## 1027                                                                                                   asian
## 1028                                                                                                   white
## 1029                                                                                                   white
## 1030                                                                                                   white
## 1031                                                                                                    <NA>
## 1032                                                                                                  indian
## 1033                                                                                     asian, white, other
## 1034                                                                                                   white
## 1035                                                                                                    <NA>
## 1036                                                                                                   white
## 1037                                                                                            white, other
## 1038                                                                                                   white
## 1039                                                                                                   white
## 1040                                                                                   middle eastern, white
## 1041                                                                                 hispanic / latin, white
## 1042                                                                                                   asian
## 1043                                                                                                    <NA>
## 1044                                                                                                   white
## 1045                                                                                 hispanic / latin, white
## 1046                                                                                                   white
## 1047                                                                                                    <NA>
## 1048                                                                                                   asian
## 1049                                                                                            white, other
## 1050                                                                                                   white
## 1051                                                                                                   white
## 1052                                                                                                   asian
## 1053                                                                                                   white
## 1054                                                                                                   white
## 1055                                                                                                   white
## 1056                                                                                                   white
## 1057                                                                                 hispanic / latin, white
## 1058                                                                                 hispanic / latin, white
## 1059                                                                                                   white
## 1060                                                                                                    <NA>
## 1061                                                                                                    <NA>
## 1062                                                                                                   white
## 1063                                                                                                   white
## 1064                                                                                                   white
## 1065                                                                                                   white
## 1066                                                                                                   white
## 1067                                                                                                   asian
## 1068                                                                                                   white
## 1069                                                                                                   white
## 1070                                                                                                   white
## 1071                                                                                                   white
## 1072                                                                                                   asian
## 1073                                                                                                   white
## 1074                                                                                                    <NA>
## 1075                                                                                                   white
## 1076                                                                                                   white
## 1077                                                                                                   asian
## 1078                                                                                                   white
## 1079                                                                                                   white
## 1080                                                                                                   white
## 1081                                                                                                    <NA>
## 1082                                                                                                   white
## 1083                                                                                                   white
## 1084                                                                                   middle eastern, white
## 1085                                                                                                   white
## 1086                                                                                                    <NA>
## 1087                                                                                  native american, white
## 1088                                                                                 hispanic / latin, white
## 1089                                                                                            white, other
## 1090                                                                                                   asian
## 1091                                                                                                    <NA>
## 1092                                                                                                    <NA>
## 1093                                                                                            asian, white
## 1094                                                                                                   asian
## 1095                                                                                                   white
## 1096                                                                                                   white
## 1097                                                                                        hispanic / latin
## 1098                                                                                                   white
## 1099                                                                                                    <NA>
## 1100                                                                                                   other
## 1101                                                                                                   white
## 1102                                                                                                   white
## 1103                                                                                                   other
## 1104                                                                                                    <NA>
## 1105                                                                                                    <NA>
## 1106                                                                                 black, hispanic / latin
## 1107                                                                                                   white
## 1108                                                                                                   asian
## 1109                                                                                                   other
## 1110                                                                                            asian, white
## 1111                                                                                                   white
## 1112                                                                                                   asian
## 1113                                                                                                    <NA>
## 1114                                                                                                   white
## 1115                                                                                                   white
## 1116                                                                                                  indian
## 1117                                                                                                   white
## 1118                                                                          asian, hispanic / latin, white
## 1119                                                                                                   white
## 1120                                                                                                   white
## 1121                                                                                                   white
## 1122                                                                                                   white
## 1123                                                                                                   white
## 1124                                                                                           indian, white
## 1125                                                                                                    <NA>
## 1126                                                                                                    <NA>
## 1127                                                                                                    <NA>
## 1128                                                                                                   white
## 1129                                                                                                   white
## 1130                                                                                                   white
## 1131                                                                           black, native american, white
## 1132                                                                                          middle eastern
## 1133                                                                                                   white
## 1134                                                                                                   white
## 1135                                                                                        hispanic / latin
## 1136                                                                                                   white
## 1137                                                                                                   white
## 1138                                                                                 hispanic / latin, white
## 1139                                                                                                   white
## 1140                                                                                                   white
## 1141                                                                                                   white
## 1142                                                                                                   white
## 1143                                                                                                   asian
## 1144                                                                        middle eastern, hispanic / latin
## 1145                                                                                                   white
## 1146                                                                                                   white
## 1147                                                                                                   asian
## 1148                                                                                                   white
## 1149                                                                          hispanic / latin, white, other
## 1150                                                                                                   asian
## 1151                                                                                                   white
## 1152                                                                                                   white
## 1153                                                                                        hispanic / latin
## 1154                                                                                 hispanic / latin, white
## 1155                                                                                                   white
## 1156                                                                                                   white
## 1157                                                                                                   white
## 1158                                                                                                   white
## 1159                                                                                                   white
## 1160                                                                                                   white
## 1161                                                                                 hispanic / latin, other
## 1162                                                                                                   white
## 1163                                                                                         native american
## 1164                                                                                                   asian
## 1165                                                                                                   white
## 1166                                                                                                   white
## 1167                                                                                                   other
## 1168                                                                                                   black
## 1169                                                                                                    <NA>
## 1170                                                                                        hispanic / latin
## 1171                                                                                                  indian
## 1172                                                                                        hispanic / latin
## 1173                                                                                                   asian
## 1174                                                                                                   white
## 1175                                                  asian, black, native american, pacific islander, white
## 1176                                                                                                    <NA>
## 1177                                                                                                   white
## 1178                                                                                                   white
## 1179                                                                                   middle eastern, white
## 1180                                                                                                   asian
## 1181                                                                                            black, other
## 1182                                                                                                   white
## 1183                                                                                                   other
## 1184                                                                                                   white
## 1185                                                                                                   white
## 1186                                                                                                   white
## 1187                                                                                                   white
## 1188                                                                                 black, hispanic / latin
## 1189                                                                                                    <NA>
## 1190                                                                                 hispanic / latin, other
## 1191                                                                                                  indian
## 1192                                                                                                  indian
## 1193                                                                                                   white
## 1194                                                                                                   white
## 1195                                                                                                   white
## 1196                                                                                                   white
## 1197                                                                                                   white
## 1198                                                                                                   white
## 1199                                                                                                   white
## 1200                                                                                                   asian
## 1201                                                                                                   white
## 1202                                                                                                   white
## 1203                                                                                                   white
## 1204                                                                                                   white
## 1205                                                                                                   white
## 1206                                                                                                   white
## 1207                                                                                                   white
## 1208                                                                                           indian, white
## 1209                                                                                                   white
## 1210                                                                                                   white
## 1211                                                                                                   white
## 1212                                                                                                   white
## 1213                                                                                                   white
## 1214                                                                                                   white
## 1215                                                                                                   asian
## 1216                                                                                                   white
## 1217                                                                                                   white
## 1218                                                                                                   white
## 1219                                                                                            white, other
## 1220                                                                                                   white
## 1221                                                                                                   white
## 1222                                                                                        hispanic / latin
## 1223                                                                                                   white
## 1224                                                                                 hispanic / latin, white
## 1225                                                                                                   other
## 1226                                                                                                   asian
## 1227                                                                                                   white
## 1228                                                                                                   white
## 1229                                                                                                   white
## 1230                                                                                                   white
## 1231                                                                                                   white
## 1232                                                                                                   white
## 1233                                                                                                   white
## 1234                                                                                        hispanic / latin
## 1235                                                                                                   white
## 1236                                                                                                   white
## 1237                                                                                                   white
## 1238                                                                                                   white
## 1239                                                                                            asian, white
## 1240                                                                                                    <NA>
## 1241                                                                                                   white
## 1242                                                                                                   white
## 1243                                                                                                    <NA>
## 1244                                                                                                   white
## 1245                                                                                                   white
## 1246                                                                                                    <NA>
## 1247                                                                                            asian, white
## 1248                                                                                                   asian
## 1249                                                                                                   asian
## 1250                                                                                                   asian
## 1251                                                                                                   white
## 1252                                                                                                  indian
## 1253                                                                                                   white
## 1254                                                                                                   white
## 1255                                                                                                   black
## 1256                                                                                                   white
## 1257                                                                                                  indian
## 1258                                                                                                   white
## 1259                                                                                                   white
## 1260                                                                                                   white
## 1261                                                                                                    <NA>
## 1262                                                                                                    <NA>
## 1263 asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 1264                                                                                                   white
## 1265                                                                                                   white
## 1266                                                                                                   asian
## 1267                                                                                                   white
## 1268                                                                                                   white
## 1269                                                                        middle eastern, hispanic / latin
## 1270                                                                                                   black
## 1271                                                                                                   white
## 1272                                                                                                   white
## 1273                                                                                                   white
## 1274                                                                                                   white
## 1275                                                                                                   other
## 1276                                                                                                   white
## 1277                                                                                                   white
## 1278                                                                                                   asian
## 1279                                                                                                    <NA>
## 1280                                                                                                   white
## 1281                                                                                                   white
## 1282                                                                                                  indian
## 1283                                                                                                   white
## 1284                                                                                                    <NA>
## 1285                                                                                                   white
## 1286                                                                                                   white
## 1287                                                                                                   white
## 1288                                                                                                   asian
## 1289                                                                                                   asian
## 1290                                                                                                    <NA>
## 1291                                                                                                   white
## 1292                                                                                                   asian
## 1293                                                                                                   asian
## 1294                                                                                                   black
## 1295                                                                                                   white
## 1296                                                                                                   other
## 1297                                                                                                   black
## 1298                                                                                                   white
## 1299                                                                                                   white
## 1300                                                                                  middle eastern, indian
## 1301                                                                                                   white
## 1302                                                                                        hispanic / latin
## 1303                                                                                                   asian
## 1304                                                                                                   white
## 1305                                                                                                   white
## 1306                                                                                 asian, pacific islander
## 1307                                                                                                   white
## 1308                                                                                                   white
## 1309                                                                                        hispanic / latin
## 1310                                                                                                   other
## 1311                                                                                                   white
## 1312                                                                                                   white
## 1313                                                                                                   white
## 1314                                                                                                   white
## 1315                                                                                                   other
## 1316                                                                                                   white
## 1317                                                                                        hispanic / latin
## 1318                                                                                 hispanic / latin, white
## 1319                                                                                        hispanic / latin
## 1320                                                                                                   white
## 1321                                                                                                   white
## 1322                                                                                 hispanic / latin, other
## 1323                                                                                                   other
## 1324                                                                                                   white
## 1325                                                                                                   white
## 1326                                                                                                   white
## 1327                                                                                                   white
## 1328                                                                                                  indian
## 1329                                                                                                  indian
## 1330                                                                                           asian, indian
## 1331                                                                                                   asian
## 1332                                                                                                   asian
## 1333                                                                                                  indian
## 1334                                                                                   middle eastern, white
## 1335                                                                                                    <NA>
## 1336                                                                                                    <NA>
## 1337                                                                                                   white
## 1338                                                                                                   white
## 1339                                                                                                    <NA>
## 1340                                                                                                   white
## 1341                                                                                                  indian
## 1342                                                                                                   white
## 1343                                                                                                    <NA>
## 1344                                                                                                   white
## 1345                                                                                                   white
## 1346                                                                                                   white
## 1347                                                                                                   white
## 1348                                                                                                   white
## 1349                                                                                                   white
## 1350                                                                                        hispanic / latin
## 1351                                                                                                   black
## 1352                                                                                                    <NA>
## 1353                                                                                                   white
## 1354                                                                                                   white
## 1355                                                                                                    <NA>
## 1356                                                                                        hispanic / latin
## 1357                                                                                                   white
## 1358                                                                                                   white
## 1359                                                                                                   white
## 1360                                                                                                   white
## 1361                                                                                                   black
## 1362                                                                                                   white
## 1363                                                                                                    <NA>
## 1364                                                                                                   white
## 1365                                                                                                   white
## 1366                                                                                                   white
## 1367                                                                                                   white
## 1368                                                                                        hispanic / latin
## 1369                                                                                        hispanic / latin
## 1370                                                                                                    <NA>
## 1371                                                                                                   white
## 1372                                                                                                   white
## 1373                                                                                                   other
## 1374                                                                                                   asian
## 1375                                                                                                   white
## 1376                                                                                                    <NA>
## 1377                                                                                                   white
## 1378                                                                                                   white
## 1379                                                                                                    <NA>
## 1380                                                                                                   white
## 1381                                                                                                   asian
## 1382                                                                                                    <NA>
## 1383                                                                                                    <NA>
## 1384                                                                                            asian, white
## 1385                                                                                                   white
## 1386                                                                                                   white
## 1387                                                                                                   white
## 1388                                                                                            white, other
## 1389                                                                                                   white
## 1390                                                                                                   white
## 1391                                                                                                  indian
## 1392                                                                                        pacific islander
## 1393                                                                                 hispanic / latin, white
## 1394                                                                                                   black
## 1395                                                                                            asian, white
## 1396                                                                                                   white
## 1397                                                                                                   asian
## 1398                                                                                                   white
## 1399                                                                                                   white
## 1400                                                                                                   asian
## 1401                                                                                                   white
## 1402                                                                                  native american, white
## 1403                                                                                                   asian
## 1404                                                                                                   white
## 1405                                                                                 hispanic / latin, white
## 1406                                                                                                   white
## 1407                                                                                            asian, white
## 1408                                                                                                    <NA>
## 1409                                                                                          middle eastern
## 1410                                                                                                   white
## 1411                                                                                                   white
## 1412                                                                                                   white
## 1413                                                                                                   white
## 1414                                                                                                   white
## 1415                                                                                                   white
## 1416                                                                                                   asian
## 1417                                                                                                   asian
## 1418                                                                                                   asian
## 1419                                                                                                   asian
## 1420                                                                                                   asian
## 1421                                                                                                   asian
## 1422                                                                                 pacific islander, other
## 1423                                                                                                    <NA>
## 1424                                                                                                   asian
## 1425                                                                                            asian, white
## 1426                                                                                                   white
## 1427                                                                                                   white
## 1428                                                                                        pacific islander
## 1429                                                                                                   white
## 1430                                                                                                   white
## 1431                                                                                                   white
## 1432                                                                                                   white
## 1433                                                                                                   white
## 1434                                                                                                   asian
## 1435                                                                                        hispanic / latin
## 1436                                                                                                   asian
## 1437                                                                                                   white
## 1438                                                                                                   asian
## 1439                                                                                        pacific islander
## 1440                                                                                                   white
## 1441                                                                                                   white
## 1442                                                                                                   white
## 1443                                                                                                    <NA>
## 1444                                                                                                    <NA>
## 1445                                                                                                   white
## 1446                                                                                                   white
## 1447                                                                                 pacific islander, white
## 1448                                                                                            white, other
## 1449                                                                                                   asian
## 1450                                                                                                   white
## 1451                                                                                                   white
## 1452                                                                                                   white
## 1453                                                                                                   white
## 1454                                                                                                   white
## 1455                                                                                        hispanic / latin
## 1456                                                                                                   other
## 1457                                                                                        hispanic / latin
## 1458                                                                                                   asian
## 1459                                                                                                   white
## 1460                                                                                                    <NA>
## 1461                                                                                                   asian
## 1462                                                                                                   asian
## 1463                                                                                                   white
## 1464                                                                                        hispanic / latin
## 1465                                                                    black, native american, white, other
## 1466                                                                                                   white
## 1467                                                                                                    <NA>
## 1468                                                                                                   white
## 1469                                                                                                   white
## 1470                                                                                                   white
## 1471                                                                                                    <NA>
## 1472                                                                                                   white
## 1473                                                                                                   white
## 1474                                                                                        hispanic / latin
## 1475                                                                                                   white
## 1476                                                                                                   white
## 1477                                                                                                    <NA>
## 1478                                                                                                  indian
## 1479                                                                                                   black
## 1480                                                                                                   white
## 1481                                                                                                   white
## 1482                                                                                                   white
## 1483                                                                                        pacific islander
## 1484                                                                                                   white
## 1485                                                                                                   asian
## 1486                                                                                                    <NA>
## 1487                                                                                                   asian
## 1488                                                                                                  indian
## 1489                                                                                                   white
## 1490                                                                                                   asian
## 1491                                                                                                   white
## 1492                                                                                                   white
## 1493                                                                                                   white
## 1494                                                                                                   asian
## 1495                                                                                                   white
## 1496                                                                                        hispanic / latin
## 1497                                                                                                   white
## 1498                                                                                                   black
## 1499                                                                                                   white
## 1500                                                                                                   white
## 1501                                                                                                   white
## 1502                                                                                                   asian
## 1503                                                                                                    <NA>
## 1504                                                                                                   white
## 1505                                                                                                   white
## 1506                                                                                                   asian
## 1507                                                                                                    <NA>
## 1508                                                                                                   white
## 1509                                                                                                   white
## 1510                                                                                                   asian
## 1511                                                                                                   white
## 1512                                                                                                   white
## 1513                                                                                                   white
## 1514                                                                                   middle eastern, white
## 1515                                                                                                   white
## 1516                                                                                                   white
## 1517                                                                                 black, pacific islander
## 1518                                                                                                   white
## 1519                                                                                                   white
## 1520                                                                                                   white
## 1521                                                                                                   asian
## 1522                                                                                                   white
## 1523                                                                                                   white
## 1524                                                                  middle eastern, native american, white
## 1525                                                                                        hispanic / latin
## 1526                                                                                                  indian
## 1527                                                                                                   white
## 1528                                                                                                   asian
## 1529                                                                                                   white
## 1530                                                                                                   white
## 1531                                                                                                   white
## 1532                                                                                                   white
## 1533                                                                                                   white
## 1534                                                                                        hispanic / latin
## 1535                                                                                                   white
## 1536                                                                                 asian, pacific islander
## 1537                                                                                                   white
## 1538                                                                                                   white
## 1539                                                                                                   white
## 1540                                                                                 pacific islander, white
## 1541                                                                                                   white
## 1542                                                                                                   asian
## 1543                                                                                                   white
## 1544                                                                                            asian, white
## 1545                                                                                            asian, white
## 1546                                                                                                   white
## 1547                                                                                                   white
## 1548                                                                                                   white
## 1549                                                                                                   white
## 1550                                                                                                    <NA>
## 1551                                                                                                    <NA>
## 1552                                                                                                   white
## 1553                                                                                            white, other
## 1554                                                                                                   white
## 1555                                                                                                   white
## 1556                                                                                                   white
## 1557                                                                                                   white
## 1558                                                                                                    <NA>
## 1559                                                                                                    <NA>
## 1560                                                                                                    <NA>
## 1561                                                                                        hispanic / latin
## 1562                                                                                            black, other
## 1563                                                                                                   white
## 1564                                                                                                   white
## 1565                                                                                                   white
## 1566                                                                                                   white
## 1567                                                                                                   white
## 1568                                                                                                   white
## 1569                                                                                                   white
## 1570                                                                                                    <NA>
## 1571                                                                                                   white
## 1572                                                                                                   white
## 1573                                                                                                   white
## 1574                                                                                                   white
## 1575                                                                                                   white
## 1576                                                                                                   white
## 1577                                                                                                   white
## 1578                                                                                                   white
## 1579                                                                                                   white
## 1580                                                                                                   white
## 1581                                                                                          middle eastern
## 1582                                                                                                   white
## 1583                                                                                 pacific islander, white
## 1584                                                                                                   white
## 1585                                                                                                   white
## 1586                                                                                                   white
## 1587                                                                                                   white
## 1588                                                                                                   white
## 1589                                                                                                   white
## 1590                                                                                                   white
## 1591                                                                                                   other
## 1592                                                                                                    <NA>
## 1593                                                                                                   white
## 1594                                                                                                   white
## 1595                                                                                                   white
## 1596                                                                                                   white
## 1597                                                                                                   white
## 1598                                                                                                   white
## 1599                                                                                                   white
## 1600                                                                                                   white
## 1601                                                                                                   white
## 1602                                                                                                   white
## 1603                                                                                                   white
## 1604                                                                                                   white
## 1605                                                                                                   white
## 1606                                                                                 hispanic / latin, other
## 1607                                                                                  native american, white
## 1608                                                                                                   white
## 1609                                                                                                   white
## 1610                                                                                                   black
## 1611                                                                                                   white
## 1612                                                                                                   white
## 1613                                                                                                   white
## 1614                                                                                  native american, white
## 1615                                                                                                   white
## 1616 asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 1617                                                                                            white, other
## 1618                                                                                                   white
## 1619                                                                                                   asian
## 1620                                                                                                   white
## 1621                                                                                                   white
## 1622                                                                                            asian, white
## 1623                                                                                                   other
## 1624                                                                                                  indian
## 1625                                                                                                  indian
## 1626                                                                                                   white
## 1627                                                                                                   white
## 1628                                                                                                   asian
## 1629                                                                                                   white
## 1630                                                                                                   white
## 1631                                                                                                   asian
## 1632                                                                                          middle eastern
## 1633                                                                                                   white
## 1634                                                                                                    <NA>
## 1635                                                                                                   white
## 1636                                                                                        hispanic / latin
## 1637                                                                                                   asian
## 1638                                                                                                   white
## 1639                                                                                                   white
## 1640                                                                                                   white
## 1641                                                                                                   asian
## 1642                                                                                        hispanic / latin
## 1643                                                                                                   black
## 1644                                                                                                   white
## 1645                                                                                                    <NA>
## 1646                                                                                                   white
## 1647                                                                                                    <NA>
## 1648                                                                                                   white
## 1649                                                                                                  indian
## 1650                                                                                                  indian
## 1651                                                                                                   asian
## 1652                                                                                                    <NA>
## 1653                                                                                                   white
## 1654                                                                                                   white
## 1655                                                                                  asian, native american
## 1656                                                                                                   white
## 1657                                                                                                   white
## 1658                                                                                                   asian
## 1659                                                                                            white, other
## 1660                                                                                                   white
## 1661                                                                                                   white
## 1662                                                                                                  indian
## 1663                                                                                                   white
## 1664                                                                                                   white
## 1665                                                                          asian, hispanic / latin, white
## 1666                                                                                                   asian
## 1667                                                                                                  indian
## 1668                                                                                                    <NA>
## 1669                                                                                                   white
## 1670                                                                                                   white
## 1671                                                                                                   white
## 1672                                                                                                   white
## 1673                                                                                                   asian
## 1674                                                                                                   white
## 1675                                                                                 hispanic / latin, white
## 1676                                                                                                  indian
## 1677                                                                                                    <NA>
## 1678                                                                                                   white
## 1679                                                                                                    <NA>
## 1680                                                                                                   white
## 1681                                                                                                   white
## 1682                                                                                                   white
## 1683                                                                                                   white
## 1684                                                                                                   white
## 1685                                                                                                   white
## 1686                                                                                                   white
## 1687                                                                                                   white
## 1688                                                                                                   other
## 1689                                                                                                   white
## 1690                                                                                                   asian
## 1691                                                                                                   white
## 1692                                                                                                   white
## 1693                                                                                                   white
## 1694                                                                                                   white
## 1695                                                                                                   asian
## 1696                                                                                                   white
## 1697                                                                                                   white
## 1698                                                                                        hispanic / latin
## 1699                                                                                        hispanic / latin
## 1700                                                                                                   black
## 1701                                                                                 hispanic / latin, other
## 1702                                                                                                   black
## 1703                                                                                        hispanic / latin
## 1704                                                                native american, hispanic / latin, white
## 1705                                                                                                    <NA>
## 1706                                                                                        hispanic / latin
## 1707                                                                                        hispanic / latin
## 1708                                                                                        hispanic / latin
## 1709                                                                                 black, hispanic / latin
## 1710                                                                                 asian, pacific islander
## 1711                                                                                        hispanic / latin
## 1712                                                                                                   white
## 1713                                                                                                   white
## 1714                                                                native american, hispanic / latin, white
## 1715                                                                                        hispanic / latin
## 1716                                                                                                   white
## 1717                                                                                        hispanic / latin
## 1718                                                                                                  indian
## 1719                                                                                                    <NA>
## 1720                                                                                                    <NA>
## 1721                                                                                   middle eastern, white
## 1722                                                                                                   white
## 1723                                                                                                   asian
## 1724                                                                                                   white
## 1725                                                                                                   white
## 1726                                                                                                   white
## 1727                                                                                                   white
## 1728                                                                                                   white
## 1729                                                                                                  indian
## 1730                                                                                                   white
## 1731                                                                          black, hispanic / latin, white
## 1732                                                                                                   white
## 1733                                                                                                   white
## 1734                                                                                                   white
## 1735                                                                                                   white
## 1736                                                                                                   white
## 1737                                                                                                   white
## 1738                                                                                                   white
## 1739                                                                                                   white
## 1740                                                                                                   white
## 1741                                                                                                   white
## 1742                                                                                                   white
## 1743                                                                                                   white
## 1744                                                                                                   white
## 1745                                                                                                   white
## 1746                                                                                                   white
## 1747                                                                                                   white
## 1748                                                                                                   white
## 1749                                                                                                   white
## 1750                                                                                                   white
## 1751                                                                                                   white
## 1752                                                                                        hispanic / latin
## 1753                                                                                                   white
## 1754                                                                                                   white
## 1755                                                                                            white, other
## 1756                                                                                                   white
## 1757                                                                                                   white
## 1758                                                                                                   white
## 1759                                                                                                   white
## 1760                                                                                  native american, white
## 1761                                                                                                   white
## 1762                                                                                                   asian
## 1763                                                                                                   other
## 1764                                                                                                   white
## 1765                                                                                                   white
## 1766                                                                                            white, other
## 1767                                                                                                   white
## 1768                                                                                                   asian
## 1769                                                                                                   other
## 1770                                                                                                   white
## 1771                                                                                                    <NA>
## 1772                                                                                                   white
## 1773                                                                                                   white
## 1774                                                                                                   white
## 1775                                                                                                   white
## 1776                                                                                                   white
## 1777                                                                    asian, native american, white, other
## 1778                                                                                                   white
## 1779                                                                                                    <NA>
## 1780                                                                                                    <NA>
## 1781                                                                                                   white
## 1782                                                                                                   asian
## 1783                                                                                                   white
## 1784                                                                                                   white
## 1785                                                                                                   asian
## 1786                                                                                                   asian
## 1787                                                                                                    <NA>
## 1788                                                                                                   asian
## 1789                                                                                                   white
## 1790                                                                                                   white
## 1791                                                                                                   white
## 1792                                                                                   middle eastern, white
## 1793                                                                                            white, other
## 1794                                                                                        hispanic / latin
## 1795                                                                                                   white
## 1796                                                                                                    <NA>
## 1797                                                                                                    <NA>
## 1798                                                                                                   asian
## 1799                                                                                                   asian
## 1800                                                                                                   asian
## 1801                                                                                                   asian
## 1802                                                                                                   white
## 1803                                                                                                   white
## 1804                                                                                        hispanic / latin
## 1805                                                                                                   white
## 1806                                                                                                   white
## 1807                                                                                            black, other
## 1808                                                                                                   white
## 1809                                                                                                   white
## 1810                                                                                                    <NA>
## 1811                                                                                                   white
## 1812                                                                                                   white
## 1813                                                                                                   white
## 1814                                                                                                   white
## 1815                                                                                                   white
## 1816                                                                                                   white
## 1817                                                                                                   white
## 1818                                                                                                   other
## 1819                                                                                                   white
## 1820                                                                                                   white
## 1821                                                                                                   white
## 1822                                                                                            asian, white
## 1823                                                                                                   asian
## 1824                                                                                                   black
## 1825                                                                                                   white
## 1826                                                                                                   black
## 1827                                                                                                   white
## 1828                                                                                                   white
## 1829                                                                                                   white
## 1830                                                                                                   white
## 1831                                                                                                   other
## 1832                                                                                 black, hispanic / latin
## 1833                                                                                                   asian
## 1834                                                                                 hispanic / latin, white
## 1835                                                                                 black, hispanic / latin
## 1836                                                                    black, native american, white, other
## 1837                                                                                                   white
## 1838                                                                                                   asian
## 1839                                                                                                    <NA>
## 1840                                                                                                   white
## 1841                                                                                                   white
## 1842                                                                                                   white
## 1843                                                                                                   white
## 1844                                                                                                   white
## 1845                                                                                                   asian
## 1846                                                                                                   white
## 1847                                                                                                   white
## 1848                                                                                                   white
## 1849                                                                                                   white
## 1850                                                                                                  indian
## 1851                                                                                                  indian
## 1852                                                                                                   white
## 1853                                                                                                   black
## 1854                                                                                                   white
## 1855                                                                                                   white
## 1856                                                                                                   other
## 1857                                                                                        pacific islander
## 1858                                                                                                   white
## 1859                                                                                                   other
## 1860                                                                                                   white
## 1861                                                                                                   asian
## 1862                                                                                                   white
## 1863                                                                                                   asian
## 1864                                                                                                   black
## 1865                                                                                                   white
## 1866                                                                                                   white
## 1867                                                                                                    <NA>
## 1868                                                                                 asian, pacific islander
## 1869                                                                                                   asian
## 1870                                                                                                   white
## 1871                                                                                 hispanic / latin, white
## 1872                                                                                                   other
## 1873                                                                                                    <NA>
## 1874                                                                                        pacific islander
## 1875                                                                                                   white
## 1876                                                                                                   white
## 1877                                                                                                   asian
## 1878                                                                                                   white
## 1879                                                                                                    <NA>
## 1880                                                                                                   white
## 1881                                                                                                    <NA>
## 1882                                                                                                   white
## 1883                                                                                                   other
## 1884                                                                                                   white
## 1885                                                                                                   white
## 1886                                                                                                   white
## 1887                                                                                                   black
## 1888                                                                          black, hispanic / latin, white
## 1889                                                                                                   white
## 1890                                                                                                   other
## 1891                                                               pacific islander, hispanic / latin, white
## 1892                                                                                                   white
## 1893                                                                                                   white
## 1894                                                                                                   white
## 1895                                                                                                   asian
## 1896                                                                                 hispanic / latin, white
## 1897                                                                                                   black
## 1898                                                                                            white, other
## 1899                                                                                                   white
## 1900                                                                                           indian, other
## 1901                                                                                                   white
## 1902                                                                                                  indian
## 1903                                                                                                   other
## 1904                                                                                                   black
## 1905                                                                                                   white
## 1906                                                                                                   black
## 1907                                                                                                    <NA>
## 1908                                                                                                   white
## 1909                                                                                                   white
## 1910                                                                                                   white
## 1911                                                                                                   white
## 1912                                                                                                    <NA>
## 1913                                                                                                   white
## 1914                                                                                                   white
## 1915                                                                                                   black
## 1916                                                                                                   white
## 1917                                                                                                   white
## 1918                                                                                                  indian
## 1919                                                                                                   white
## 1920                                                                                                    <NA>
## 1921                                                                                                   white
## 1922                                                                                        hispanic / latin
## 1923                                                                                                    <NA>
## 1924                                                                                 hispanic / latin, white
## 1925                                                                                                   white
## 1926                                                                                                   white
## 1927                                                                                                   white
## 1928                                                                                                   asian
## 1929                                                                                                   white
## 1930                                                                                                   asian
## 1931                                                                                                   white
## 1932                                                                                                    <NA>
## 1933                                                                                                   white
## 1934                                                                                                   white
## 1935                                                                                                   white
## 1936                                                                                                   white
## 1937                                                                                                   asian
## 1938                                                                                                   white
## 1939                                                                                                   asian
## 1940                                                                                                   white
## 1941                                                                                                   white
## 1942                                                                                                   white
## 1943                                                                                                    <NA>
## 1944                                                                                                   white
## 1945                                                                                                   white
## 1946                                                                                                   white
## 1947                                                                                                   white
## 1948                                                                                                   other
## 1949                                                                                                   white
## 1950                                                                                                   white
## 1951                                                                                                   white
## 1952                                                                                                   asian
## 1953                                                                                                   white
## 1954                                                                                                   white
## 1955                                                                                                   black
## 1956                                                                                                   asian
## 1957                                                                                                   white
## 1958                                                                                                   asian
## 1959                                                                                                   asian
## 1960                                                                          asian, pacific islander, other
## 1961                                                                                                   black
## 1962                                                                                                   white
## 1963                                                                                                   asian
## 1964                                                                                                   white
## 1965                                                                                                   white
## 1966                                                                                                   white
## 1967                                                                                                    <NA>
## 1968                                                                                                   white
## 1969                                                                                 pacific islander, white
## 1970                                                                                                   white
## 1971                                                                                                   white
## 1972                                                                                                   white
## 1973                                                                                          middle eastern
## 1974                                                                                                    <NA>
## 1975                                                                                                   other
## 1976                                                                                                    <NA>
## 1977                                                                                                   asian
## 1978                                                                                                   white
## 1979                                                                                                   white
## 1980                                                                                                   white
## 1981                                                                                                   asian
## 1982                                                                                                   white
## 1983                                                                                                   asian
## 1984                                                                                                    <NA>
## 1985                                                                                                   white
## 1986                                                                                                   white
## 1987                                                                                                   white
## 1988                                                                          black, hispanic / latin, other
## 1989                                                                                                   asian
## 1990                                                                                                   asian
## 1991                                                                                                   white
## 1992                                                                                                   other
## 1993                                                                                                   asian
## 1994                                                                                                    <NA>
## 1995                                                                                                   white
## 1996                                                                                                   white
## 1997                                                                                                   white
## 1998                                                                                                   other
## 1999                                                                                                   white
## 2000                                                                                                    <NA>
## 2001                                                                           asian, black, native american
## 2002                                                                                                   white
## 2003                                                                                                   white
## 2004                                                                                                   white
## 2005                                                                                                   white
## 2006                                                                                        pacific islander
## 2007                                                                                                    <NA>
## 2008                                                                                                   asian
## 2009                                                                                                   asian
## 2010                                                                                                   black
## 2011                                                                                                   white
## 2012                                                                                  native american, white
## 2013                                                                                                   white
## 2014                                                                                                   white
## 2015                                                                                                   white
## 2016                                                                                                    <NA>
## 2017                                                                                                   white
## 2018                                                                                                    <NA>
## 2019                                                                                                   asian
## 2020                                                                                                    <NA>
## 2021                                                                                                   white
## 2022                                                                                                   asian
## 2023                                                                                                   other
## 2024                                                                                                   black
## 2025                                                                                                   asian
## 2026                                                                                                   white
## 2027                                                                                                   white
## 2028                                                         black, native american, hispanic / latin, white
## 2029                                                                                                   black
## 2030                                                                                                   white
## 2031                                                                                                   white
## 2032                                                                                                   white
## 2033                                                                                                    <NA>
## 2034                                                                                                   white
## 2035                                                                                                   white
## 2036                                                                                                   black
## 2037                                                                                        pacific islander
## 2038                                                                                                   asian
## 2039                                                                                                   white
## 2040                                                                       native american, hispanic / latin
## 2041                                                                                                   white
## 2042                                                                                                   white
## 2043                                                                                                   other
## 2044                                                                                                   asian
## 2045                                                                                                   white
## 2046                                                                                                   other
## 2047                                                                                        hispanic / latin
## 2048                                                                                                   white
## 2049                                                                                  native american, white
## 2050                                                                                                   asian
## 2051                                                                                 hispanic / latin, white
## 2052                                                                                                   white
## 2053                                                                                                   white
## 2054                                                                                                   white
## 2055                                                                                                   white
## 2056                                                                                        hispanic / latin
## 2057                                                                                                  indian
## 2058                                                                                                   other
## 2059                                                                                                   black
## 2060                                                                                                   white
## 2061                                                                                                   white
## 2062                                                                                indian, hispanic / latin
## 2063                                                                                                   white
## 2064                                                                                                   white
## 2065                                                                                                  indian
## 2066                                                                                                   white
## 2067                                                                                                   white
## 2068                                                                                        hispanic / latin
## 2069                                                                                                  indian
## 2070                                                                                                   white
## 2071                                                                                                   white
## 2072                                                                                                   white
## 2073                                                                                                   white
## 2074                                                                                                   white
## 2075                                                                                                   white
## 2076                                                                                                   white
## 2077                                                                                                   other
## 2078                                                                                                   white
## 2079                                                                                        hispanic / latin
## 2080                                                                                                   white
## 2081                                                                                                   white
## 2082                                                                                                   white
## 2083                                                                          hispanic / latin, white, other
## 2084                                                                                                   white
## 2085                                                                                        hispanic / latin
## 2086                                                                                                   white
## 2087                                                                                          middle eastern
## 2088                                                                                                   white
## 2089                                                                                                   white
## 2090                                                                                                    <NA>
## 2091                                                                                                   white
## 2092                                                                                                   white
## 2093                                                                                 hispanic / latin, white
## 2094                                                                                                   white
## 2095                                                                                        hispanic / latin
## 2096                                                                                                   white
## 2097                                                                                            white, other
## 2098                                                                                                   white
## 2099                                                                                                   white
## 2100                                                                                                    <NA>
## 2101                                                                                                   asian
## 2102                                                                                                   asian
## 2103                                                                                                   white
## 2104                                                                                                    <NA>
## 2105                                                                                                   white
## 2106                                                                                            black, white
## 2107                                                                                                   white
## 2108                                                                                                   white
## 2109                                                                                                   white
## 2110                                                                                                   white
## 2111                                                                                                   white
## 2112                                                                                                   white
## 2113                                                                                                   white
## 2114                                                                                                   white
## 2115                                                                                                   other
## 2116                                                                                                  indian
## 2117                                                                                                    <NA>
## 2118                                                                                                  indian
## 2119                                                                                                   white
## 2120                                                                                                   white
## 2121                                                                                                   white
## 2122                                                                                                   asian
## 2123                                                                                                   white
## 2124                                                                                                   black
## 2125                                                                                                   white
## 2126                                                                                                   asian
## 2127                                                                                                   white
## 2128                                                                                                   black
## 2129                                                                                            black, white
## 2130                                                                                   middle eastern, white
## 2131                                                                                                   asian
## 2132                                                                                                   white
## 2133                                                                                                    <NA>
## 2134                                                                       native american, pacific islander
## 2135                                                                                                    <NA>
## 2136                                                                                                   white
## 2137                                                                                                    <NA>
## 2138                                                                                        pacific islander
## 2139                                                                                                   white
## 2140                                                                                                   white
## 2141                                                                                                   white
## 2142                                                                                                   other
## 2143                                                                                            black, other
## 2144                                                                                                   white
## 2145                                                                                                  indian
## 2146                                                                                                   asian
## 2147                                                                                                  indian
## 2148                                                                                                   asian
## 2149                                                                                                   asian
## 2150                                                                                                   white
## 2151                                                                                                   asian
## 2152                                                                                                   white
## 2153                                                                                                   white
## 2154                                                                                                   white
## 2155                                                                                                   white
## 2156                                                                                                  indian
## 2157                                                                                  native american, white
## 2158                                                                                                   asian
## 2159                                                                                                   white
## 2160                                                                                                   white
## 2161                                                                                                   white
## 2162                                                                                                   asian
## 2163                                                                                                   asian
## 2164                                                                                                   white
## 2165                                                                                                   white
## 2166                                                                                                   white
## 2167                                                                                                    <NA>
## 2168                                                                                                   white
## 2169                                                                                                   other
## 2170                                                                                                   white
## 2171                                                                                                   white
## 2172                                                                                                   white
## 2173                                                                                                   white
## 2174                                                                                  native american, white
## 2175                                                                                                  indian
## 2176                                                                                                   white
## 2177                                                                                                   white
## 2178                                                                                                   white
## 2179                                                                                                  indian
## 2180                                                  asian, black, native american, hispanic / latin, white
## 2181                                                                                                   asian
## 2182                                                                                                   asian
## 2183                                                                                                   white
## 2184                                                                                                    <NA>
## 2185                                                                                                   white
## 2186                                                                                                   white
## 2187                                                                                                   white
## 2188                                                                                        hispanic / latin
## 2189                                                                                                   white
## 2190                                                                                                   asian
## 2191                                                                                        hispanic / latin
## 2192                                                                                        hispanic / latin
## 2193                                                                                        hispanic / latin
## 2194                                                                          asian, pacific islander, other
## 2195                                                                                                   white
## 2196                                                                                                   white
## 2197                                                                                                   asian
## 2198                                                                                                   other
## 2199                                                                                                   other
## 2200                                                                                                   white
## 2201                                                                                        hispanic / latin
## 2202                                                                                           indian, other
## 2203                                                                                            black, white
## 2204                                                                                                   white
## 2205                                                                                                   white
## 2206                                                                                                   white
## 2207                                                                                                   white
## 2208                                                                                                   asian
## 2209                                                                                                   asian
## 2210                                                                                                   asian
## 2211                                                                                                   white
## 2212                                                                                                   white
## 2213                                                                                 pacific islander, white
## 2214                                                                                                   white
## 2215                                                                                          middle eastern
## 2216                                                                                  native american, white
## 2217                                                                                                   white
## 2218                                                                                                   white
## 2219                                                                                     asian, black, white
## 2220                                                  asian, black, native american, pacific islander, other
## 2221                                                                                                   white
## 2222                                                                                        hispanic / latin
## 2223                                                                                                   white
## 2224                                                                                                   white
## 2225                                                                                        hispanic / latin
## 2226                                                                 middle eastern, hispanic / latin, white
## 2227                                                                                                   white
## 2228                                                                                                   white
## 2229                                                                                                    <NA>
## 2230                                                                                                   white
## 2231                                                                                                   white
## 2232                                                                                                   white
## 2233                                                                                                   white
## 2234                                                                                 asian, pacific islander
## 2235                                                                          asian, pacific islander, white
## 2236                                                                                                   white
## 2237                                                                                        hispanic / latin
## 2238                                                                                                   asian
## 2239                                                                                        hispanic / latin
## 2240                                                                                                   white
## 2241                                                                                                   white
## 2242                                                                                        hispanic / latin
## 2243                                                                                                   other
## 2244                                                                                                    <NA>
## 2245                                                                                        hispanic / latin
## 2246                                                                                                   white
## 2247                                                                                                   asian
## 2248                                                                                                   asian
## 2249                                                                                          middle eastern
## 2250                                                                                                   asian
## 2251                                                                                                   white
## 2252                                                                                                   other
## 2253                                                                                                   white
## 2254                                                                                                   white
## 2255                                                                                                   black
## 2256                                                                                                   white
## 2257                                                                                          middle eastern
## 2258                                                                                                   asian
## 2259                                                                                                   white
## 2260                                                                                                   asian
## 2261 asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 2262                                                                                                   white
## 2263                                                                                                   white
## 2264                                                                                                   black
## 2265                                                                                                   white
## 2266                                                                                                   other
## 2267                                                                        middle eastern, hispanic / latin
## 2268                                                                                 asian, pacific islander
## 2269                                                                                                   white
## 2270                                                                                                   white
## 2271                                                                                        pacific islander
## 2272                                                                                                   white
## 2273                                                                                                   white
## 2274                                                                                  native american, white
## 2275                                                                                                   white
## 2276                                                                                                   white
## 2277                                                                                                   white
## 2278                                                                                                   white
## 2279                                                                                                   asian
## 2280                                                                                                   white
## 2281                                                                                        hispanic / latin
## 2282                                                                                        hispanic / latin
## 2283                                                                                                   white
## 2284                                                                                            black, white
## 2285                                                                                                   white
## 2286                                                                                                   white
## 2287                                                                                                   black
## 2288                                                                                                   white
## 2289                                                                                                    <NA>
## 2290                                                                                                   white
## 2291                                                                                                   white
## 2292                                                                                                   white
## 2293                                                                                                   white
## 2294                                                                                                   white
## 2295                                                                                                   asian
## 2296                                                                                                   white
## 2297                                                                                 pacific islander, white
## 2298                                                                                                   asian
## 2299                                                                                        hispanic / latin
## 2300                                                                                                   white
## 2301                                                                                                    <NA>
## 2302                                                                                 hispanic / latin, white
## 2303                                                                                        hispanic / latin
## 2304                                                                                                   white
## 2305                                                                                                    <NA>
## 2306                                                                                        hispanic / latin
## 2307                                                                                        hispanic / latin
## 2308                                                                                                   other
## 2309                                                                                        hispanic / latin
## 2310                                                                                 hispanic / latin, white
## 2311                                                                                        hispanic / latin
## 2312                                                                                                   white
## 2313                                                                                        hispanic / latin
## 2314                                                                                                   white
## 2315                                                                                        hispanic / latin
## 2316                                                                                                   asian
## 2317                                                                                                   white
## 2318                                                                                  native american, white
## 2319                                                                                                   white
## 2320                                                                                                   white
## 2321                                                                                                   asian
## 2322                                                                                            white, other
## 2323                                                                                                   white
## 2324                                                                                                   white
## 2325                                                                                                   white
## 2326                                                                                                   white
## 2327                                                                                                   white
## 2328                                                                                                   white
## 2329                                                                                  native american, white
## 2330                                                                                                   white
## 2331                                                                                                   white
## 2332                                                                                                   white
## 2333                                                                                                    <NA>
## 2334                                                                                        hispanic / latin
## 2335                                                                                                   white
## 2336                                                                                        hispanic / latin
## 2337                                                                                                   white
## 2338                                                                                                    <NA>
## 2339                                                                                        hispanic / latin
## 2340                                                                                                   asian
## 2341                                                                                                   white
## 2342                                                                                                   other
## 2343                                                                                        hispanic / latin
## 2344                                                                                                   white
## 2345                                                                                                   white
## 2346                                                                                                   white
## 2347                                                                          hispanic / latin, white, other
## 2348                                                                                        hispanic / latin
## 2349                                                                                                   white
## 2350                                                                                                   white
## 2351                                                                                        hispanic / latin
## 2352                                                                                                   white
## 2353                                                                                                   white
## 2354                                                                                                   white
## 2355                                                                                                   white
## 2356                                                                                                   white
## 2357                                                                                                   white
## 2358                                                                                                   white
## 2359                                                                                                   white
## 2360                                                                                                    <NA>
## 2361                                                                                                   white
## 2362                                                                                   middle eastern, white
## 2363                                                                                                   black
## 2364                                                                                                    <NA>
## 2365                                                                                                   other
## 2366                                                                                                   white
## 2367                                                                                        hispanic / latin
## 2368                                                                                                    <NA>
## 2369                                                                                            white, other
## 2370                                                                                                   white
## 2371                                                                                                   white
## 2372                                                                                        hispanic / latin
## 2373                                                                                                   other
## 2374                                                                                                   other
## 2375                                                                                                   white
## 2376                                                                                                   white
## 2377                                                                                                   white
## 2378                                                                                                   white
## 2379                                                                                                   white
## 2380                                                                                                    <NA>
## 2381                                                                                                    <NA>
## 2382                                                                                                   other
## 2383                                                                                                    <NA>
## 2384                                                                black, native american, hispanic / latin
## 2385                                                                                                   white
## 2386                                                                                                   white
## 2387                                                                                        hispanic / latin
## 2388                                                                                            white, other
## 2389                                                                                                   white
## 2390                                                                                                    <NA>
## 2391                                                                                                   other
## 2392                                                                                 hispanic / latin, white
## 2393                                                  asian, native american, hispanic / latin, white, other
## 2394                                                                                                   white
## 2395                                                                                                   white
## 2396                                                                                                   white
## 2397                                                                                                   white
## 2398                                                                                                   white
## 2399                                                                                                   white
## 2400                                                                                                    <NA>
## 2401                                                                                                  indian
## 2402                                                                                                   white
## 2403                                                                                                   white
## 2404                                                                                        hispanic / latin
## 2405                                                                                            asian, white
## 2406                                                                                                   black
## 2407                                                                                        hispanic / latin
## 2408                                                                                                   white
## 2409                                                                                                   white
## 2410                                                                                        hispanic / latin
## 2411                                                                                                   white
## 2412                                                               pacific islander, hispanic / latin, white
## 2413                                                                                                   white
## 2414                                                                                                   white
## 2415                                                                                                   white
## 2416                                                                                                   white
## 2417                                                                                                    <NA>
## 2418                                                                          hispanic / latin, white, other
## 2419                                                                                                   white
## 2420                                                                                                   other
## 2421                                                                                                   white
## 2422                                                                                 hispanic / latin, white
## 2423                                                                                     black, white, other
## 2424                                                                                                   white
## 2425                                                                                                  indian
## 2426                                                                                                   white
## 2427                                                                                                   other
## 2428                                                                                 hispanic / latin, other
## 2429                                                                                                   white
## 2430                                                                                                    <NA>
## 2431                                                                                                   white
## 2432                                                                                                   white
## 2433                                                                                                   white
## 2434                                                                                                   white
## 2435                                                                                                   white
## 2436                                                                                        hispanic / latin
## 2437                                                                                                   white
## 2438                                                                                                   white
## 2439                                                                                                   white
## 2440                                                                                                   white
## 2441                                                                                 hispanic / latin, other
## 2442                                                                                                   white
## 2443                                                                                                   white
## 2444                                                                                                   white
## 2445                                                                                                    <NA>
## 2446                                                                                                   white
## 2447                                                                                                   white
## 2448                                                                                                   white
## 2449                                                                                                   white
## 2450                                                                                                   white
## 2451                                                                                          middle eastern
## 2452                                                                                                   white
## 2453                                                                                                   white
## 2454                                                                                          middle eastern
## 2455                                                                                                   asian
## 2456                                                                                                    <NA>
## 2457                                                                                                    <NA>
## 2458                                                                                                   white
## 2459                                                                                                   asian
## 2460                                                                                                   white
## 2461                                                                                                   white
## 2462                                                                                                   other
## 2463                                                                                                   white
## 2464                                                                                                   white
## 2465                                                                                                   white
## 2466                                                                                                   asian
## 2467                                                                                                   asian
## 2468                                                                                                   white
## 2469                                                                                                   white
## 2470                                                                                        hispanic / latin
## 2471                                                                                                   white
## 2472                                                                                                   white
## 2473                                                                                        hispanic / latin
## 2474                                                                                                   asian
## 2475                                                                                                    <NA>
## 2476                                                                                        hispanic / latin
## 2477                                                                                                   white
## 2478                                                                                 hispanic / latin, white
## 2479                                                                                          middle eastern
## 2480                                                                                                    <NA>
## 2481                                                                                                   other
## 2482                                                                                                   white
## 2483                                                                                                   white
## 2484                                                                                                   white
## 2485                                                                                          middle eastern
## 2486                                                                                                   other
## 2487                                                                                                   white
## 2488                                                                                                   asian
## 2489                                                                                            asian, black
## 2490                                                                                                   asian
## 2491                                                                                                    <NA>
## 2492                                                                                                   white
## 2493                                                                                   middle eastern, white
## 2494                                                                                                    <NA>
## 2495                                                                                                  indian
## 2496                                                                                                   white
## 2497                                                                                                   asian
## 2498                                                                                                   white
## 2499                                                                                                   white
## 2500                                                                                                   white
## 2501                                                                                            asian, white
## 2502                                                                                                   white
## 2503                                                                                                   white
## 2504                                                                                           indian, white
## 2505                                                                                                   white
## 2506                                                                                 hispanic / latin, white
## 2507                                                                                                   other
## 2508                                                                                                    <NA>
## 2509                                                                                                   asian
## 2510                                                                                                    <NA>
## 2511                                                                                                   white
## 2512                                                                                                   white
## 2513                                                                                                    <NA>
## 2514                                                                                                   white
## 2515                                                                                                   white
## 2516                                                                                                    <NA>
## 2517                                                                                                   white
## 2518                                                                                                    <NA>
## 2519                                                                                                   white
## 2520                                                                                                   white
## 2521                                                                                                   white
## 2522                                                                                                   white
## 2523                                                                                                   asian
## 2524                                                                                                    <NA>
## 2525                                                                                 asian, hispanic / latin
## 2526                                                                   asian, pacific islander, white, other
## 2527                                                                                                   white
## 2528                                                                            middle eastern, white, other
## 2529                                                                                          middle eastern
## 2530                                                                                        hispanic / latin
## 2531                                                                                                   white
## 2532                                                                                                   white
## 2533                                                                                                   black
## 2534                                                                                                    <NA>
## 2535                                                                                                    <NA>
## 2536                                                                                                   black
## 2537                                                                                                   white
## 2538                                                                                                   white
## 2539                                                                                            white, other
## 2540                                                                                                    <NA>
## 2541                                                                                                   white
## 2542                                                                                        hispanic / latin
## 2543                                                                                 asian, hispanic / latin
## 2544                                                                                                   white
## 2545                                                                                                   white
## 2546                                                                                                    <NA>
## 2547                                                                                          middle eastern
## 2548                                                                                                   white
## 2549                                                                                                   white
## 2550                                                                                                    <NA>
## 2551                                                                                                   white
## 2552                                                                                                   white
## 2553                                                                                                   white
## 2554                                                                                                   white
## 2555                                                                                                   asian
## 2556                                                                                  black, native american
## 2557                                                                                                   white
## 2558                                                                                                   white
## 2559                                                                                                   white
## 2560                                                                                                   white
## 2561                                                                                                   white
## 2562                                                                                                   asian
## 2563                                                                                                   white
## 2564                                                                                                   white
## 2565                                                                                                   white
## 2566                                                                                            asian, white
## 2567                                                                                                   white
## 2568                                                                                                   black
## 2569                                                                                                   white
## 2570                                                                                         native american
## 2571                                                                                                   white
## 2572                                                                                                   white
## 2573                                                                                                   white
## 2574                                                                                                    <NA>
## 2575                                                                                                   asian
## 2576                                                                                                   white
## 2577                                                                                                   white
## 2578                                                                                 hispanic / latin, white
## 2579                                                                                                   white
## 2580                                                                                                   white
## 2581                                                                                            asian, white
## 2582                                                                                                   white
## 2583                                                                                                   asian
## 2584                                                                                                   other
## 2585                                                               asian, pacific islander, hispanic / latin
## 2586                                                                                                   white
## 2587                                                                                                   white
## 2588                                                                                        hispanic / latin
## 2589                                                                                 asian, pacific islander
## 2590                                                                                                   white
## 2591                                                                                                   white
## 2592                                                                                                    <NA>
## 2593                                                                                                   white
## 2594                                                                                                   white
## 2595                                                                                                   white
## 2596                                                                                                   white
## 2597                                                                                                   asian
## 2598                                                                                                   white
## 2599                                                                                                   white
## 2600                                                                                                   white
## 2601                                                                                                   black
## 2602                                                                          black, hispanic / latin, other
## 2603                                                                                                   white
## 2604                                                                                                   white
## 2605                                                                                                   white
## 2606                                                                                                    <NA>
## 2607                                                                                           black, indian
## 2608                                                                                                    <NA>
## 2609                                                                                            asian, white
## 2610                                                                                 asian, pacific islander
## 2611                                                                                                   white
## 2612                                                                                                   white
## 2613                                                                                        hispanic / latin
## 2614                                                                                                   other
## 2615                                                                                                    <NA>
## 2616                                                                                                   asian
## 2617                                                                                                   white
## 2618                                                                                                   black
## 2619                                                                                                   white
## 2620                                                                                                   white
## 2621                                                                                                   white
## 2622                                                                                                  indian
## 2623                                                                                                   white
## 2624                                                                                                    <NA>
## 2625                                                                                                   asian
## 2626                                                                                                   white
## 2627                                                                                                   asian
## 2628                                                                                                    <NA>
## 2629                                                                                                   asian
## 2630                                                                                 asian, pacific islander
## 2631                                                                                                    <NA>
## 2632                                                                                                   white
## 2633                                                                                     black, white, other
## 2634                                                                                                   white
## 2635                                                                                                   white
## 2636                                                                                                    <NA>
## 2637                                                                                        hispanic / latin
## 2638                                                                                                   white
## 2639                                                                                                   black
## 2640                                                                                                   white
## 2641                                                                                                   white
## 2642                                                                                                   white
## 2643                                                                                                   white
## 2644                                                                                                   white
## 2645                                                                                 hispanic / latin, white
## 2646                                                                                                   white
## 2647                                                                                                   white
## 2648                                                                                                   white
## 2649                                                                                                    <NA>
## 2650                                                                                                   white
## 2651                                                                                                    <NA>
## 2652                                                                                                   white
## 2653                                                                                                   white
## 2654                                                                                 hispanic / latin, white
## 2655                                                                                                   white
## 2656                                                                                                   white
## 2657                                                                                                   white
## 2658                                                                                                   other
## 2659                                                                                                   white
## 2660                                                                                                   white
## 2661                                                                                 hispanic / latin, white
## 2662                                                                                 hispanic / latin, white
## 2663                                                                                                   white
## 2664                                                                                                    <NA>
## 2665                                                                                                   white
## 2666                                                                                                   white
## 2667                                                                                                   white
## 2668                                                                                                   white
## 2669                                                                                 hispanic / latin, white
## 2670                                                                                                   white
## 2671                                                                                                   white
## 2672                                                                                                   white
## 2673                                                                                                   white
## 2674                                                                                                   asian
## 2675                                                                                                   white
## 2676                                                                                                   white
## 2677                                                                                                   asian
## 2678                                                                                        pacific islander
## 2679                                                                                                   white
## 2680                                                                                                   white
## 2681                                                                                        hispanic / latin
## 2682                                                                                                   white
## 2683                                                                                                   white
## 2684                                                                                                   white
## 2685                                                                                 asian, hispanic / latin
## 2686                                                                                                   white
## 2687                                                                                 hispanic / latin, white
## 2688                                                                                                   white
## 2689                                                                                                   asian
## 2690                                                                                                   white
## 2691                                                                                                   white
## 2692                                                                                 hispanic / latin, white
## 2693                                                                                                   white
## 2694                                                                                                   white
## 2695                                                                                                   white
## 2696                                                                                                   white
## 2697                                                                                                   white
## 2698                                                                                                   black
## 2699                                                                                 pacific islander, white
## 2700                                                                                   middle eastern, white
## 2701                                                                                                    <NA>
## 2702                                                                                                   white
## 2703                                                                                                   black
## 2704                                                                                                   white
## 2705                                                                                                   asian
## 2706                                                                                           indian, other
## 2707                                                                                            asian, white
## 2708                                                                                                   white
## 2709                                                                                                   white
## 2710                                                                                                   white
## 2711                                                                                                   other
## 2712                                                                                                   white
## 2713                                                                                 pacific islander, white
## 2714                                                                                                   white
## 2715                                                                                                   white
## 2716                                                                                            asian, white
## 2717                                                                                                   white
## 2718                                                                                        hispanic / latin
## 2719                                                                                                   white
## 2720                                                                                                   white
## 2721                                                                                                   white
## 2722                                                                                                   white
## 2723                                                                                                    <NA>
## 2724                                                                                            white, other
## 2725                                                                                                   asian
## 2726                                                                                                   white
## 2727                                                                                                   white
## 2728                                                                                                    <NA>
## 2729                                                                                                   asian
## 2730                                                                                                    <NA>
## 2731                                                                                                   white
## 2732                                                                                                   asian
## 2733                                                                                                   white
## 2734                                                                                                   white
## 2735                                                                                                    <NA>
## 2736                                                                                                   white
## 2737                                                                                            asian, white
## 2738                                                                                                   asian
## 2739                                                                                                  indian
## 2740                                                                                                   white
## 2741                                                                                                   asian
## 2742                                                                                                   asian
## 2743                                                                                                   white
## 2744                                                                                                   white
## 2745                                                                                        hispanic / latin
## 2746                                                                                            asian, white
## 2747                                                                                                   white
## 2748                                                                                                   asian
## 2749                                                                                                   white
## 2750                                                                                                   asian
## 2751                                                                                                   white
## 2752                                                                                                   white
## 2753                                                                                                   asian
## 2754                                                                                                   white
## 2755                                                                                                    <NA>
## 2756                                                                                                   white
## 2757                                                                                                   white
## 2758                                                                                                   black
## 2759                                                                                        hispanic / latin
## 2760                                                                                                   white
## 2761                                                                                        hispanic / latin
## 2762                                                                                           asian, indian
## 2763                                                                                 hispanic / latin, white
## 2764                                                                                                   white
## 2765                                                                                                   white
## 2766                                                                                                   white
## 2767                                                                                                   white
## 2768                                                                                                   white
## 2769                                                                                                   white
## 2770                                                                                                    <NA>
## 2771                                                                                                   white
## 2772                                                                                            black, white
## 2773                                                                                                   white
## 2774                                                                                                   white
## 2775                                                                                                   white
## 2776                                                                                  black, native american
## 2777                                                                                        hispanic / latin
## 2778                                                                                                   white
## 2779 asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 2780                                                                   black, native american, indian, other
## 2781                                                                                                   asian
## 2782                                                                                                   white
## 2783                                                                                                   white
## 2784                                                                                                   white
## 2785                                                                                                   white
## 2786                                                         native american, hispanic / latin, white, other
## 2787                                                                                                   white
## 2788                                                                                                   white
## 2789                                                                                                   white
## 2790                                                                                                   white
## 2791                                                                                                   white
## 2792                                                                                        hispanic / latin
## 2793                                                                                 hispanic / latin, white
## 2794                                                                                                    <NA>
## 2795                                                                                                   black
## 2796                                                                                                   white
## 2797                                                                                                   white
## 2798                                                                                                   white
## 2799                                                                                                    <NA>
## 2800                                                                                                   asian
## 2801                                                                                                   black
## 2802                                                                                                   asian
## 2803                                                                 middle eastern, hispanic / latin, white
## 2804                                                                                            white, other
## 2805                                                                                        hispanic / latin
## 2806                                                                                                   white
## 2807                                                                                                  indian
## 2808                                                                                                   asian
## 2809                                                                                                   white
## 2810                                                                                                   asian
## 2811                                                                                                   white
## 2812                                                                                                   asian
## 2813                                                                                                   white
## 2814                                                                                            asian, white
## 2815                                                                                                   white
## 2816                                                                                          middle eastern
## 2817                                                                                                    <NA>
## 2818                                                                                                   white
## 2819                                                                                                    <NA>
## 2820                                                                                                   white
## 2821                                                                                        hispanic / latin
## 2822                                                                                                   white
## 2823                                                                                                    <NA>
## 2824                                                                                                   white
## 2825                                                                                                   white
## 2826                                                                                                   white
## 2827                                                                                                   white
## 2828                                                                                                    <NA>
## 2829                                                                                            black, white
## 2830                                                                                                   white
## 2831                                                                                                   white
## 2832                                                                                                    <NA>
## 2833                                                                                                    <NA>
## 2834                                                                                                   white
## 2835                                                                                 hispanic / latin, white
## 2836                                                                                                   other
## 2837                                                                                 pacific islander, other
## 2838                                                                                                   white
## 2839                                                                                                   white
## 2840                                                                                                   black
## 2841                                                                                                   white
## 2842                                                                                   middle eastern, white
## 2843                                                                                                   white
## 2844                                                                                                   white
## 2845                                                                                                   white
## 2846                                                                                                   black
## 2847                                                                                          middle eastern
## 2848                                                                                            white, other
## 2849                                                                                            white, other
## 2850                                                                                                   white
## 2851                                                                                                   white
## 2852                                                                                                    <NA>
## 2853                                                                                                   white
## 2854                                                                                                   white
## 2855                                                                                                   white
## 2856                                                                                                   black
## 2857                                                                                                   black
## 2858                                                                                                   black
## 2859                                                                                                   white
## 2860                                                                                                   white
## 2861                                                                                                   white
## 2862                                                                                                   white
## 2863                                                                                                   white
## 2864                                                                                                   white
## 2865                                                                                                   white
## 2866                                                                                                   white
## 2867                                                                                                   white
## 2868                                                                                                    <NA>
## 2869                                                                                                   white
## 2870                                                                                                   white
## 2871                                                                                                   white
## 2872                                                                                        hispanic / latin
## 2873                                                                                                   white
## 2874                                                                                                   asian
## 2875                                                                                                   white
## 2876                                                                                                   white
## 2877                                                                                                   asian
## 2878                                                                                                   white
## 2879                                                                                                    <NA>
## 2880                                                                                                   white
## 2881                                                                                                   asian
## 2882                                                                                                   asian
## 2883                                                                                                   black
## 2884                                                                                        hispanic / latin
## 2885                                                                                                   white
## 2886                                                                                                   white
## 2887                                                                                                    <NA>
## 2888                                                                                                    <NA>
## 2889                                                                                        hispanic / latin
## 2890                                                                                                   black
## 2891                                                                                                   white
## 2892                                                                                                    <NA>
## 2893                                                                                                    <NA>
## 2894                                                                                                   white
## 2895                                                                                                   white
## 2896                                                                                                   white
## 2897                                                                                                  indian
## 2898                                                                                                    <NA>
## 2899                                                                                                   white
## 2900                                                                                                   white
## 2901                                                                                 hispanic / latin, white
## 2902                                                                                                   white
## 2903                                                                                                   white
## 2904                                                                                        hispanic / latin
## 2905                                                                                                    <NA>
## 2906                                                                                                   white
## 2907                                                                                                   white
## 2908                                                                                        hispanic / latin
## 2909                                                                                                   white
## 2910                                                                                                   asian
## 2911                                                                                                   white
## 2912                                                                                                   white
## 2913                                                                                                    <NA>
## 2914                                                                                                   white
## 2915                                                                native american, hispanic / latin, white
## 2916                                                                                                   white
## 2917                                                                                        pacific islander
## 2918                                                                                                   white
## 2919                                                                                                   white
## 2920                                                                                                   white
## 2921                                                                                                   white
## 2922                                                                                                   white
## 2923                                                                                                   white
## 2924                                                                                                   white
## 2925                                                                                                   asian
## 2926                                                                                                    <NA>
## 2927                                                                                                   white
## 2928                                                                                                    <NA>
## 2929                                                                                                   black
## 2930                                                                                                   white
## 2931                                                                                                   other
## 2932                                                                                                   white
## 2933                                                                                                    <NA>
## 2934                                                                                                   white
## 2935                                                                                                   other
## 2936                                                                                                   white
## 2937                                                                                                   white
## 2938                                                                                                   white
## 2939                                                                                                   white
## 2940                                                                                                   white
## 2941                                                                                                   black
## 2942                                                                                                   black
## 2943                                                                                                   white
## 2944                                                                                                   white
## 2945                                                                                                   white
## 2946                                                                                                   white
## 2947                                                                                                   asian
## 2948                                                                                                   black
## 2949                                                                                                    <NA>
## 2950                                                                                                   asian
## 2951                                                                                                   asian
## 2952                                                                                                   black
## 2953                                                                           black, native american, other
## 2954                                                                                                   white
## 2955                                                                                 hispanic / latin, white
## 2956                                                                                           black, indian
## 2957                                                                                                   white
## 2958                                                                                                    <NA>
## 2959                                                                                 asian, pacific islander
## 2960                                                                                                    <NA>
## 2961                                                                                                   other
## 2962                                                                                                   white
## 2963                                                                                                   white
## 2964                                                                                                   white
## 2965                                                                                                   white
## 2966                                                                                                    <NA>
## 2967                                                                                                   other
## 2968                                                                                                   white
## 2969                                                                                 hispanic / latin, white
## 2970                                                                                        hispanic / latin
## 2971                                                                                                   white
## 2972                                                                                                   white
## 2973                                                                                                   white
## 2974                                                                  middle eastern, native american, white
## 2975                                                                                                   white
## 2976                                                                                  native american, white
## 2977                                                                                                   asian
## 2978                                                                                                   white
## 2979                                                                                                    <NA>
## 2980                                                                                        hispanic / latin
## 2981                                                                                            asian, other
## 2982                                                                                     asian, white, other
## 2983                                                                                                   asian
## 2984                                                                                        hispanic / latin
## 2985                                                                                                   white
## 2986                                                                                                   white
## 2987                                                                                            asian, white
## 2988                                                                                                   white
## 2989                                                                                                    <NA>
## 2990                                                                                                   white
## 2991                                                                                                   white
## 2992                                                                                                   white
## 2993                                                                                                   white
## 2994                                                                                                   white
## 2995                                                                                                   white
## 2996                                                                                                   white
## 2997                                                                                                   white
## 2998                                                                                                   white
## 2999                                                                                                   white
## 3000                                                                                        hispanic / latin
## 3001                                                                                                   white
## 3002                                                                                                    <NA>
## 3003                                                                                                   white
## 3004                                                                                            black, white
## 3005                                                                                                   white
## 3006                                                                                                   white
## 3007                                                                                                   white
## 3008                                                                                                   white
## 3009                                                                                            white, other
## 3010                                                                                                   white
## 3011                                                                                                   asian
## 3012                                                                                                   white
## 3013                                                                                                   white
## 3014                                                                                                   white
## 3015                                                                                                   white
## 3016                                                                                 hispanic / latin, white
## 3017                                                                                                   white
## 3018                                                                                                   white
## 3019                                                                                                   asian
## 3020                                                                                                   white
## 3021                                                                                                   white
## 3022                                                                                                   asian
## 3023                                                                                                   white
## 3024                                                                                        hispanic / latin
## 3025                                                                                                    <NA>
## 3026                                                                                                   asian
## 3027                                                                                            asian, white
## 3028                                                                                                   asian
## 3029                                                                                                    <NA>
## 3030                                                                                                   asian
## 3031                                                                                                   asian
## 3032                                                                                                   white
## 3033                                                                                                   white
## 3034                                                                                 hispanic / latin, white
## 3035                                                                                                   white
## 3036                                                                                            black, white
## 3037                                                                                indian, hispanic / latin
## 3038                                                                                        hispanic / latin
## 3039                                                                                                   white
## 3040                                                                                                   other
## 3041                                                                                                    <NA>
## 3042                                                                                                   white
## 3043                                                                                                    <NA>
## 3044                                                                                                   white
## 3045                                                                                                    <NA>
## 3046                                                                                                   white
## 3047                                                                                                   asian
## 3048                                                                                                    <NA>
## 3049                                                                                                    <NA>
## 3050                                                                                                   other
## 3051                                                                                            white, other
## 3052                                                                                                    <NA>
## 3053                                                                                                   other
## 3054                                                                                                    <NA>
## 3055                                                                                                   white
## 3056                                                                                                   white
## 3057                                                                                                   other
## 3058                                                                                                   white
## 3059                                                                                                   white
## 3060                                                                                          middle eastern
## 3061                                                                                                   black
## 3062                                                                                                   other
## 3063                                                                                                   white
## 3064                                                                                                    <NA>
## 3065                                                                           native american, white, other
## 3066                                                                                                    <NA>
## 3067                                                                                                   white
## 3068                                                                                                   white
## 3069                                                                                                  indian
## 3070                                                                          black, hispanic / latin, white
## 3071                                                                                                    <NA>
## 3072                                                                                                   white
## 3073                                                                                                  indian
## 3074                                                                                                    <NA>
## 3075                                                                                                   white
## 3076                                                                                                   white
## 3077                                                                                 hispanic / latin, white
## 3078                                                                                                   white
## 3079                                                                                                  indian
## 3080                                                                                           indian, white
## 3081                                                                                                   black
## 3082                                                                                 hispanic / latin, white
## 3083                                                                                                   other
## 3084                                                                                                   white
## 3085                                                                          hispanic / latin, white, other
## 3086                                                                                                   white
## 3087                                                                                                   black
## 3088                                                                                                   white
## 3089                                                                                                   white
## 3090                                                                                                   white
## 3091                                                                                                   white
## 3092                                                                                                   black
## 3093                                                                                                   white
## 3094                                                                                          middle eastern
## 3095                                                                                            asian, white
## 3096                                                                          asian, hispanic / latin, white
## 3097                                                                                                   white
## 3098                                                                                                   white
## 3099                                                                                                   asian
## 3100                                                                                                   white
## 3101                                                                                                    <NA>
## 3102                                                                                                   white
## 3103                                                                                                   asian
## 3104                                                                                                   white
## 3105                                                                                                   white
## 3106                                                                                          middle eastern
## 3107                                                                                                   white
## 3108                                                                                        hispanic / latin
## 3109                                                                                                   black
## 3110                                                                                                   white
## 3111                                                                                                    <NA>
## 3112                                                                                                   white
## 3113                                                                                                   white
## 3114                                                                                                   white
## 3115                                                                                                   white
## 3116                                                                                                   white
## 3117                                                                                                    <NA>
## 3118                                                                                                   other
## 3119                                                                                                   asian
## 3120                                                                                                   white
## 3121                                                                                                   white
## 3122                                                                                                    <NA>
## 3123                                                                                 hispanic / latin, white
## 3124                                                                                                   white
## 3125                                                                                                   white
## 3126                                                                                                   white
## 3127                                                                                        hispanic / latin
## 3128                                                                                                   white
## 3129                                                                                 pacific islander, white
## 3130                                                                                                   white
## 3131                                                                                                   white
## 3132                                                                                                   white
## 3133                                                                                                   asian
## 3134                                                                                                   white
## 3135                                                                                                   black
## 3136                                                                                        hispanic / latin
## 3137                                                                                                   white
## 3138                                                                                                   white
## 3139                                                                 middle eastern, hispanic / latin, other
## 3140                                                                                                   asian
## 3141                                                                                                   white
## 3142                                                                                                   white
## 3143                                                                                                   white
## 3144                                                                                                   white
## 3145                                                                                                   black
## 3146                                                                                                    <NA>
## 3147                                                                                                   white
## 3148                                                                                                   white
## 3149                                                                                                   white
## 3150                                                                                                   white
## 3151                                                                                                   white
## 3152                                                                                                   asian
## 3153                                                                                                   white
## 3154                                                                                                   white
## 3155                                                                                                   white
## 3156                                                                                                    <NA>
## 3157                                                                                                   white
## 3158                                                                                                   white
## 3159                                                                                                   white
## 3160                                                                                                   white
## 3161                                                                                                   white
## 3162                                                                                                   white
## 3163                                                                                                   white
## 3164                                                                                 asian, hispanic / latin
## 3165                                                                                                   white
## 3166                                                                                                    <NA>
## 3167                                                                                                   white
## 3168                                                                                                   white
## 3169                                                                                          middle eastern
## 3170                                                                                                   white
## 3171                                                                                                   white
## 3172                                                                                                  indian
## 3173                                                                                                   white
## 3174                                                                                                   white
## 3175                                                                                                   other
## 3176                                                                                                   white
## 3177                                                                                                   black
## 3178                                                                                                   white
## 3179                                                                                                   white
## 3180                                                                                                   asian
## 3181                                                                                                    <NA>
## 3182                                                                                                   white
## 3183                                                                                                    <NA>
## 3184                                                                                 asian, hispanic / latin
## 3185                                                                                        hispanic / latin
## 3186                                                                                                   asian
## 3187                                                                                                   white
## 3188                                                                                                   white
## 3189                                                                                                   white
## 3190                                                                                                   white
## 3191                                                                                                   white
## 3192                                                                                                   white
## 3193                                                                                 hispanic / latin, white
## 3194                                                                                                   other
## 3195                                                                                        hispanic / latin
## 3196                                                                                        hispanic / latin
## 3197                                                                                            asian, white
## 3198                                                                                                   other
## 3199                                                                                                   white
## 3200                                                                                                   white
## 3201                                                                                                   white
## 3202                                                                                                   white
## 3203                                                                                            white, other
## 3204                                                                                                   white
## 3205                                                                                                    <NA>
## 3206                                                                                                   white
## 3207                                                                                                   other
## 3208                                                                                                   white
## 3209                                                                                                   white
## 3210                                                                                                   white
## 3211                                                                                                  indian
## 3212                                                                                           indian, other
## 3213                                                                                                   white
## 3214                                                                                                   white
## 3215                                                                                                    <NA>
## 3216                                                                                                   white
## 3217                                                                                                   white
## 3218                                                                                        hispanic / latin
## 3219                                                                                        hispanic / latin
## 3220                                                                                                   white
## 3221                                                                                                   white
## 3222                                                               pacific islander, hispanic / latin, white
## 3223                                                                                                   white
## 3224                                                                                                    <NA>
## 3225                                                                                                   white
## 3226                                                                                                   white
## 3227                                                                                                   white
## 3228                                                                                                   white
## 3229                                                                                                   white
## 3230                                                                                                   white
## 3231                                                                                                   white
## 3232                                                                                                    <NA>
## 3233                                                                                                   white
## 3234                                                                                                   white
## 3235                                                                                                   white
## 3236                                                                                                   white
## 3237                                                                                   middle eastern, white
## 3238                                                                                   middle eastern, white
## 3239                                                                                                    <NA>
## 3240                                                                                                   asian
## 3241                                                                                                   white
## 3242                                                                                        hispanic / latin
## 3243                                                                                                   white
## 3244                                                                                                   white
## 3245                                                                                                   white
## 3246                                                                                                   white
## 3247                                                                                                   white
## 3248                                                                                                   black
## 3249                                                                                          middle eastern
## 3250                                                                                                   white
## 3251                                                                                            asian, white
## 3252                                                                                                   white
## 3253                                                                           black, native american, white
## 3254                                                                                        hispanic / latin
## 3255                                                                                                   white
## 3256                                                                                                   asian
## 3257                                                                                                   white
## 3258                                                                                                   black
## 3259                                                                                                   white
## 3260                                                                                                   white
## 3261                                                                                                   white
## 3262                                                                                                   asian
## 3263                                                                                                   white
## 3264                                                                                                   white
## 3265                                                                                                   white
## 3266                                                                                                   black
## 3267                                                                      pacific islander, hispanic / latin
## 3268                                                                                                    <NA>
## 3269                                                                                                   white
## 3270                                                                                                   white
## 3271                                                                                        hispanic / latin
## 3272                                                                                                   asian
## 3273                                                                                                   white
## 3274                                                                                                   white
## 3275                                                                                                   white
## 3276                                                                                                    <NA>
## 3277                                                                                                   white
## 3278                                                                                                   white
## 3279                                                                                                   white
## 3280                                                                                                   other
## 3281                                                                                                   white
## 3282                                                                                                   white
## 3283                                                                                                   asian
## 3284                                                                                                    <NA>
## 3285                                                                                                   white
## 3286                                                                                        hispanic / latin
## 3287                                                                                 hispanic / latin, other
## 3288                                                                                                    <NA>
## 3289                                                                                                   white
## 3290                                                                                                   white
## 3291                                                                                                    <NA>
## 3292                                                                                                   white
## 3293                                                                                        hispanic / latin
## 3294                                                                                                   white
## 3295                                                                                                   white
## 3296                                                                                                   white
## 3297                                                                                                   white
## 3298                                                                                                   white
## 3299                                                                                                   black
## 3300                                                                                                   white
## 3301                                                                                                   white
## 3302                                                                                                    <NA>
## 3303                                                                                                    <NA>
## 3304                                                                                        hispanic / latin
## 3305                                                                                                   white
## 3306                                                                                                    <NA>
## 3307                                                                                                   white
## 3308                                                                                                   white
## 3309                                                                                                   asian
## 3310                                                                                        hispanic / latin
## 3311                                                                                        hispanic / latin
## 3312                                                                                        hispanic / latin
## 3313                                                                          hispanic / latin, white, other
## 3314                                                                                            asian, white
## 3315                                                                                                   white
## 3316                                                                                                    <NA>
## 3317                                                                                            asian, white
## 3318                                                                                                   white
## 3319                                                                                                   white
## 3320                                                                                                   white
## 3321                                                                                                   white
## 3322                                                                                                   white
## 3323                                                                                        hispanic / latin
## 3324                                                                                                   white
## 3325                                                                                                   white
## 3326                                                                                 pacific islander, white
## 3327                                                                                                   white
## 3328                                                                                                   asian
## 3329                                                                                                   white
## 3330                                                                                                    <NA>
## 3331                                                                                                   white
## 3332                                                                                                    <NA>
## 3333                                                                                                   white
## 3334                                                                                                   white
## 3335                                                                                                   white
## 3336                                                                                                   white
## 3337                                                                                                   white
## 3338                                                                 middle eastern, hispanic / latin, white
## 3339                                                                                                   white
## 3340                                                                                                   white
## 3341                                                                                                   white
## 3342                                                                                                   white
## 3343                                                                                                   white
## 3344                                                                                                   white
## 3345                                                                                                   white
## 3346                                                                                                   asian
## 3347                                                                                                   white
## 3348                                                                                                    <NA>
## 3349                                                                                                   white
## 3350                                                                                                   white
## 3351                                                                                                   white
## 3352                                                                                                   white
## 3353                                                                                                   white
## 3354                                                                                                   white
## 3355                                                                                                   white
## 3356                                                                                                   white
## 3357                                                                                            asian, white
## 3358                                                                                                   white
## 3359                                                                                                   other
## 3360                                                                                                   white
## 3361                                                                                                   white
## 3362                                                                                                   asian
## 3363                                                                                                   white
## 3364                                                                                                   asian
## 3365                                                                                                   white
## 3366                                                                                                   white
## 3367                                                                                                   white
## 3368                                                                                                    <NA>
## 3369                                                                                                   white
## 3370                                                                                                   white
## 3371                                                                                                   white
## 3372                                                                                  native american, white
## 3373                                                                                                  indian
## 3374                                                                                                   white
## 3375                                                                                  native american, white
## 3376                                                                                                   white
## 3377                                                                                                   white
## 3378                                                                                                   white
## 3379                                                                                                   white
## 3380                                                                                                   white
## 3381                                                                                                   asian
## 3382                                                                                                   white
## 3383                                                                                                   white
## 3384                                                                                                   white
## 3385                                                                                                   white
## 3386                                                                                                   black
## 3387                                                                                                   other
## 3388                                                                                                    <NA>
## 3389                                                                                                   asian
## 3390                                                                                                   white
## 3391                                                                                                   white
## 3392                                                                                                    <NA>
## 3393                                                                                                   white
## 3394                                                                                                   white
## 3395                                                                                                   white
## 3396                                                                                                   white
## 3397                                                                                                   white
## 3398                                                                                                   white
## 3399                                                                                                   white
## 3400                                                                                                   black
## 3401                                                                                                   white
## 3402                                                                                                    <NA>
## 3403                                                                                                   white
## 3404                                                                                                   white
## 3405                                                                                                   white
## 3406                                                                                                   white
## 3407                                                                                                   white
## 3408                                                                                                   white
## 3409                                                                                                   white
## 3410                                                                                                   white
## 3411                                                                                                   white
## 3412                                                                                                   white
## 3413                                                                                                   white
## 3414                                                                                                   white
## 3415                                                                                                    <NA>
## 3416                                                                                                   asian
## 3417                                                                                                   asian
## 3418                                                                                                   white
## 3419                                                                                                   white
## 3420                                                                                                   white
## 3421                                                                                                   white
## 3422                                                                                                    <NA>
## 3423                                                                                                   white
## 3424                                                                                                   asian
## 3425                                                                                                   white
## 3426                                                                                                   white
## 3427                                                                                                    <NA>
## 3428                                                                                                   asian
## 3429                                                                                                   asian
## 3430                                                                                                   white
## 3431                                                                                                  indian
## 3432                                                                                   middle eastern, white
## 3433                                                                                                   other
## 3434                                                                                                  indian
## 3435                                                                                          middle eastern
## 3436                                                                                                   asian
## 3437                                                                                 hispanic / latin, white
## 3438                                                                                                   white
## 3439                                                                                                   white
## 3440                                                                                                   white
## 3441                                                                                                   white
## 3442                                                                                                   white
## 3443                                                                                                   white
## 3444                                                                                            black, white
## 3445                                                                                                   white
## 3446                                                                                                   asian
## 3447                                                                                                   white
## 3448                                                                                        hispanic / latin
## 3449                                                                                                   white
## 3450                                                                                                   white
## 3451                                                                          hispanic / latin, white, other
## 3452                                                                                                   white
## 3453                                                                                                   asian
## 3454                                                                                                   white
## 3455                                                                                                   white
## 3456                                                                                                   asian
## 3457                                                                                                   white
## 3458                                                                                                   white
## 3459                                                                                                   white
## 3460                                                                                                   white
## 3461                                                                                                   asian
## 3462                                                                                                   white
## 3463                                                                                                   other
## 3464                                                                                                   asian
## 3465                                                                                                   white
## 3466                                                                                 pacific islander, white
## 3467                                                                                                   black
## 3468                                                                                                   asian
## 3469                                                                                                   asian
## 3470                                                                                        pacific islander
## 3471                                                                                 black, hispanic / latin
## 3472                                                                                                   white
## 3473                                                                                        hispanic / latin
## 3474                                                                                                   white
## 3475                                                                                 asian, hispanic / latin
## 3476                                                                                        hispanic / latin
## 3477                                                                                                   white
## 3478                                                                                                   other
## 3479                                                                                                   white
## 3480                                                                                        hispanic / latin
## 3481                                                                                                    <NA>
## 3482                                                                                                   asian
## 3483                                                                                        hispanic / latin
## 3484                                                        pacific islander, hispanic / latin, white, other
## 3485                                                                                                    <NA>
## 3486                                                                                                   asian
## 3487                                                                                        pacific islander
## 3488                                                                                                   white
## 3489                                                                                                   white
## 3490                                                                                                   white
## 3491                                                                                                   white
## 3492                                                                                                   white
## 3493                                                                    black, native american, white, other
## 3494                                                                                                   asian
## 3495                                                                                                   white
## 3496                                                                                            black, white
## 3497                                                                                                   white
## 3498                                                                                                   white
## 3499                                                                                 asian, pacific islander
## 3500                                                                                                   white
## 3501                                                                                                   asian
## 3502                                                                                                   white
## 3503                                                                                         native american
## 3504                                                                                                   other
## 3505                                                                                                   white
## 3506                                                                                                    <NA>
## 3507                                                                                                   asian
## 3508                                                                                                   white
## 3509                                                                                                   asian
## 3510                                                                                        hispanic / latin
## 3511                                                                                        hispanic / latin
## 3512                                                                                        hispanic / latin
## 3513                                                                                                    <NA>
## 3514                                                                                                   other
## 3515                                                                                        hispanic / latin
## 3516                                                                                                  indian
## 3517                                                                                                   asian
## 3518                                                                                                   white
## 3519                                                                                                   asian
## 3520                                                                                                   asian
## 3521                                                                                        hispanic / latin
## 3522                                                                                                   white
## 3523                                                                                                   white
## 3524                                                                                                   white
## 3525                                                                                                   white
## 3526                                                                                            white, other
## 3527                                                                                                   asian
## 3528                                                                                            white, other
## 3529                                                                                                   white
## 3530                                                                                                   other
## 3531                                                                                 black, hispanic / latin
## 3532                                                                                                   other
## 3533                                                                                                   white
## 3534                                                                                                   white
## 3535                                                                                                   white
## 3536                                                                                                   white
## 3537                                                                                                   black
## 3538                                                                                                   white
## 3539                                                                                                   white
## 3540                                                                                           indian, white
## 3541                                                                                                   other
## 3542                                                                                                   white
## 3543                                                                                                   asian
## 3544                                                                                                   white
## 3545                                                                                 hispanic / latin, white
## 3546                                                                                                   white
## 3547                                                                                                  indian
## 3548                                                                                                   white
## 3549                                                                                                   white
## 3550                                                                                                   white
## 3551                                                                                                   white
## 3552                                                                                        hispanic / latin
## 3553                                                                                                   white
## 3554                                                                                                   asian
## 3555                                                                                                   white
## 3556                                                                                            white, other
## 3557                                                                                                   white
## 3558                                                                                                   other
## 3559                                                                                                   asian
## 3560                                                                                                   asian
## 3561                                                                                                   asian
## 3562                                                                                                   asian
## 3563                                                                                                   other
## 3564                                                                                        hispanic / latin
## 3565                                                                                                   asian
## 3566                                                                                                   white
## 3567                                                                                                  indian
## 3568                                                                                                   white
## 3569                                                                                                  indian
## 3570                                                                                 hispanic / latin, white
## 3571                                                                                                    <NA>
## 3572                                                                                                  indian
## 3573                                                                                                   asian
## 3574                                                                                                   white
## 3575                                                                                  native american, white
## 3576                                                                                                   black
## 3577                                                                                                   other
## 3578                                                                                                   white
## 3579                                                                                                    <NA>
## 3580                                                                                                   white
## 3581                                                                                                   other
## 3582                                                                                                   white
## 3583                                                                                        hispanic / latin
## 3584                                                                                                   other
## 3585                                                                                                   white
## 3586                                                                                        hispanic / latin
## 3587                                                                                                   white
## 3588                                                                                                   white
## 3589                                                                                                   asian
## 3590                                                                                                   white
## 3591                                                                                                   asian
## 3592                                                                                                   white
## 3593                                                                                                   white
## 3594                                                                                                   white
## 3595                                                                                                   white
## 3596                                                                                                   white
## 3597                                                                                                   white
## 3598                                                                                                   asian
## 3599                                                                                                   white
## 3600                                                                                                   white
## 3601                                                                                        pacific islander
## 3602                                                                                                   white
## 3603                                                                                                   white
## 3604                                                                                                   white
## 3605                                                                                        hispanic / latin
## 3606                                                                                                    <NA>
## 3607                                                                                                   asian
## 3608                                                                                                    <NA>
## 3609                                                                                         native american
## 3610                                                                                 hispanic / latin, white
## 3611                                                                                                   white
## 3612                                                                                                   white
## 3613                                                                                                   asian
## 3614                                                                                                   white
## 3615                                                                                                   white
## 3616                                                                                                   white
## 3617                                                                                   middle eastern, white
## 3618                                                                                                   white
## 3619                                                                                                   white
## 3620                                                                                                   white
## 3621                                                                                                   white
## 3622                                                                                                   white
## 3623                                                                                                    <NA>
## 3624                                                                                                   white
## 3625                                                                                                   white
## 3626                                                                                                   white
## 3627                                                                                            asian, white
## 3628                                                                                                   asian
## 3629                                                                                         native american
## 3630                                                                                                   white
## 3631                                                                                                   white
## 3632                                                                                                   white
## 3633                                                                                        hispanic / latin
## 3634                                                                                                   white
## 3635                                                                                                   white
## 3636                                                                                                   white
## 3637                                                                                                   white
## 3638                                                                                                    <NA>
## 3639                                                                                                    <NA>
## 3640                                                                                                   asian
## 3641                                                                                                   white
## 3642                                                                                                    <NA>
## 3643                                                                                                   white
## 3644                                                                                                   other
## 3645                                                                                                   white
## 3646                                                                                                   white
## 3647                                                                                                   white
## 3648                                                                                                   asian
## 3649                                                                                                   white
## 3650                                                                                                   white
## 3651                                                                                                   white
## 3652                                                                                                   white
## 3653                                                                                                   white
## 3654                                                                                                   white
## 3655                                                                                                   white
## 3656                                                                                                   white
## 3657                                                                                                   white
## 3658                                                                                                   black
## 3659                                                                                                   asian
## 3660                                                                                                   asian
## 3661                                                                                                   white
## 3662                                                                                                   white
## 3663                                                                                                   white
## 3664                                                                                                   white
## 3665                                                                                                   white
## 3666                                                                                                   white
## 3667                                                                                                   white
## 3668                                                                                                   white
## 3669                                                                                                   asian
## 3670                                                                                                   white
## 3671                                                                                                   white
## 3672                                                                                                   white
## 3673                                                                                                   white
## 3674                                                                                                   asian
## 3675                                                                                                   white
## 3676                                                                                                   white
## 3677                                                                                                   white
## 3678                                                                                 asian, pacific islander
## 3679                                                                                                   white
## 3680                                                                                                   other
## 3681                                                                                                   white
## 3682                                                                                                   other
## 3683                                                                                                   white
## 3684                                                                                                   black
## 3685                                                                                                   white
## 3686                                                                                                   white
## 3687                                                                                        hispanic / latin
## 3688                                                                                                    <NA>
## 3689                                                                                                   white
## 3690                                                                                                   white
## 3691                                                                                                   white
## 3692                                                                                                   white
## 3693                                                                                                   white
## 3694                                                                                                   white
## 3695                                                                                                   white
## 3696                                                                                            asian, white
## 3697                                                                                                   asian
## 3698                                                                                                   white
## 3699                                                                                                   asian
## 3700                                                                                                   white
## 3701                                                                                                   white
## 3702                                                                                           indian, white
## 3703                                                                                                   asian
## 3704                                                                                                    <NA>
## 3705                                                                                                   white
## 3706                                                                                                   white
## 3707                                                                                                   white
## 3708                                                                                                   white
## 3709                                                                                            black, white
## 3710                                                                                                   white
## 3711                                                                                                    <NA>
## 3712                                                                          hispanic / latin, white, other
## 3713                                                                                                   black
## 3714                                                                                        hispanic / latin
## 3715                                                                                                   white
## 3716                                                                                                   asian
## 3717                                                                                            black, other
## 3718                                                                                                   asian
## 3719                                                                                                   white
## 3720                                                                          asian, black, hispanic / latin
## 3721                                                                                                   white
## 3722                                                                                                   white
## 3723                                                                                                   asian
## 3724                                                                                        hispanic / latin
## 3725                                                                                        hispanic / latin
## 3726                                                                                 hispanic / latin, white
## 3727                                                                                  native american, white
## 3728                                                                                        hispanic / latin
## 3729                                                                                                   white
## 3730                                                                                                   white
## 3731                                                                                 pacific islander, white
## 3732                                                                                 hispanic / latin, white
## 3733                                                                                 asian, hispanic / latin
## 3734                                                        asian, pacific islander, hispanic / latin, white
## 3735                                                                                 hispanic / latin, other
## 3736                                                                                                   black
## 3737                                                                native american, hispanic / latin, white
## 3738                                                                                        hispanic / latin
## 3739                                                                                                   white
## 3740                                                                                        hispanic / latin
## 3741                                                                                            white, other
## 3742                                                                                 asian, hispanic / latin
## 3743                                                                                            asian, white
## 3744                                                                                                   white
## 3745                                                                                                   white
## 3746                                                                                                   white
## 3747                                                                                                   white
## 3748                                                                                 hispanic / latin, white
## 3749                                                                                            white, other
## 3750                                                                                 hispanic / latin, white
## 3751                                                                                                    <NA>
## 3752                                                                                                   white
## 3753                                                                                                   white
## 3754                                                                                                    <NA>
## 3755                                                                                                    <NA>
## 3756                                                                                                   white
## 3757                                                                                                   white
## 3758                                                                                                   black
## 3759                                                                                 hispanic / latin, white
## 3760                                                                                                   white
## 3761                                                                                                   black
## 3762                                                                                                   white
## 3763                                                                                                   white
## 3764                                                                                                   white
## 3765                                                                                                   white
## 3766                                                                                                    <NA>
## 3767                                                                                        hispanic / latin
## 3768                                                                                                   white
## 3769                                                                                                   white
## 3770                                                                                                   white
## 3771                                                                                                   white
## 3772                                                                                                   other
## 3773                                                                                 hispanic / latin, white
## 3774                                                                                                    <NA>
## 3775                                                                                 hispanic / latin, white
## 3776                                                                                                   white
## 3777                                                                                 hispanic / latin, other
## 3778                                                                                                   white
## 3779                                                                                        hispanic / latin
## 3780                                                                                        hispanic / latin
## 3781                                                                                                    <NA>
## 3782                                                                                                   white
## 3783                                                                                                   asian
## 3784                                                                                                   white
## 3785                                                                                                   white
## 3786                                                                                                   black
## 3787                                                                                            black, white
## 3788                                                                                                   white
## 3789                                                                                                   other
## 3790                                                                                                   other
## 3791                                                                                                  indian
## 3792                                                                                                   other
## 3793                                                                                                    <NA>
## 3794                                                                                                   white
## 3795                                                                                                   white
## 3796                                                                                                    <NA>
## 3797                                                                                                   asian
## 3798                                                                                 asian, pacific islander
## 3799                                                                                                   white
## 3800                                                                                                   white
## 3801                                                                                                   white
## 3802                                                                                                   white
## 3803                                                                                                   white
## 3804                                                                                                   white
## 3805                                                                                                   white
## 3806                                                                                                    <NA>
## 3807                                                                                                   white
## 3808                                                                                        hispanic / latin
## 3809                                                                                  native american, white
## 3810                                                                                                   white
## 3811                                                                                                   white
## 3812                                                                                                    <NA>
## 3813                                                                                                    <NA>
## 3814                                                                                            white, other
## 3815                                                                                                   white
## 3816                                                                                        pacific islander
## 3817                                                                                          middle eastern
## 3818                                                                                        hispanic / latin
## 3819                                                                                                   white
## 3820                                                                                                   asian
## 3821                                                                                                   white
## 3822                                                                                                    <NA>
## 3823                                                                                                   asian
## 3824                                                                                  native american, white
## 3825                                                                                                   white
## 3826                                                                                                   white
## 3827                                                                                                   white
## 3828                                                                                                   white
## 3829                                                                                                   white
## 3830                                                                                                   white
## 3831                                                                                                    <NA>
## 3832                                                                                                  indian
## 3833                                                                                                   white
## 3834                                                                                                   white
## 3835                                                                                                   white
## 3836                                                                                                   asian
## 3837                                                                                                   other
## 3838                                                                                                   white
## 3839                                                                                                  indian
## 3840                                                                                                   white
## 3841                                                                                                   white
## 3842                                                                                        pacific islander
## 3843                                                                                                    <NA>
## 3844                                                                                                   asian
## 3845                                                                                                   white
## 3846                                                                                                  indian
## 3847                                                                                 hispanic / latin, white
## 3848                                                                                                   asian
## 3849                                                                                                   white
## 3850                                                                                                   white
## 3851                                                                                                    <NA>
## 3852                                                                                                   white
## 3853                                                                                                   white
## 3854                                                                                                   white
## 3855                                                                                 asian, hispanic / latin
## 3856                                                                                                   white
## 3857                                                                                                   white
## 3858                                                                                                   white
## 3859                                                                                            white, other
## 3860                                                                                                   white
## 3861                                                                                 hispanic / latin, white
## 3862                                                                                                   white
## 3863                                                                                                  indian
## 3864                                                                                                   white
## 3865                                                                                                   white
## 3866                                                                                                   white
## 3867                                                                                            asian, white
## 3868                                                                                                    <NA>
## 3869                                                                                                   white
## 3870                                                                                                   white
## 3871                                                                                        hispanic / latin
## 3872                                                                                                   white
## 3873                                                                                                  indian
## 3874                                                                                                   white
## 3875                                                                                                   white
## 3876                                                                                            white, other
## 3877                                                                                                   other
## 3878                                                                                                   white
## 3879                                                                                                   black
## 3880                                                                                                   white
## 3881                                                                                                   asian
## 3882                                                                                                   white
## 3883                                                                                     black, white, other
## 3884                                                                                                    <NA>
## 3885                                                                                                   white
## 3886                                                                                            asian, white
## 3887                                                                                                    <NA>
## 3888                                                                                     asian, white, other
## 3889                                                                                                   white
## 3890                                                                                                   white
## 3891                                                                                                    <NA>
## 3892                                                                                                   other
## 3893                                                                                                   white
## 3894                                                                                                   white
## 3895                                                                                                   white
## 3896                                                                                                   white
## 3897                                                                                                   black
## 3898                                                                                                   white
## 3899                                                                                                   white
## 3900                                                                                                    <NA>
## 3901                                                                                            asian, black
## 3902                                                                                                   black
## 3903                                                                                                   white
## 3904                                                                                                   white
## 3905                                                                                                   white
## 3906                                                                                                   white
## 3907                                                                                                   white
## 3908                                                                                                   asian
## 3909                                                                                                   asian
## 3910                                                                                                   white
## 3911                                                                                                   white
## 3912                                                                                                    <NA>
## 3913                                                                                                   white
## 3914                                                                                                   asian
## 3915                                                                                                   white
## 3916                                                                                                   white
## 3917                                                                                            asian, white
## 3918                                                                                                    <NA>
## 3919                                                                                                   white
## 3920                                                                                                   white
## 3921                                                                                                   white
## 3922                                                                                                    <NA>
## 3923                                                                                                   white
## 3924                                                                                                   black
## 3925                                                                                        hispanic / latin
## 3926                                                                                                   white
## 3927                                                                                                   white
## 3928                                                                                                    <NA>
## 3929                                                                                                    <NA>
## 3930                                                                                                   asian
## 3931                                                                                 hispanic / latin, white
## 3932                                                                                                   other
## 3933                                                                                 hispanic / latin, white
## 3934                                                                                                   white
## 3935                                                                                                    <NA>
## 3936                                                                                                   asian
## 3937                                                                                        pacific islander
## 3938                                                                                                   white
## 3939                                                                                                   white
## 3940                                                                                                    <NA>
## 3941                                                                                                    <NA>
## 3942                                                                                        hispanic / latin
## 3943                                                                                                   white
## 3944                                                                                                    <NA>
## 3945                                                                                                   white
## 3946                                                                                                   asian
## 3947                                                                                                   white
## 3948                                                                                                   asian
## 3949                                                                                                   white
## 3950                                                                                                   white
## 3951                                                                                                   white
## 3952                                                                                        hispanic / latin
## 3953                                                                                                   other
## 3954                                                                                                   white
## 3955                                                                                                  indian
## 3956                                                                                                   white
## 3957                                                                                                   white
## 3958                                                                                            black, white
## 3959                                                                                                   other
## 3960                                                                                          middle eastern
## 3961                                                                                        hispanic / latin
## 3962                                                                                                   other
## 3963                                                                                 hispanic / latin, other
## 3964                                                                                                   white
## 3965                                                                                                   white
## 3966                                                                                                    <NA>
## 3967                                                                                           indian, white
## 3968                                                                                                   white
## 3969                                                                        middle eastern, hispanic / latin
## 3970                                                                                                   asian
## 3971                                                                                   middle eastern, other
## 3972                                                                                   middle eastern, white
## 3973                                                               pacific islander, hispanic / latin, white
## 3974                                                                                        hispanic / latin
## 3975                                                                                                   white
## 3976                                                                                 hispanic / latin, white
## 3977                                                                                                   white
## 3978                                                                                                    <NA>
## 3979                                                                                                   white
## 3980                                                                                                   asian
## 3981                                                                                                   asian
## 3982                                                                                                   white
## 3983                                                                                                    <NA>
## 3984                                                                                                   white
## 3985                                                                                 black, hispanic / latin
## 3986                                                                                                   white
## 3987                                                                                                   white
## 3988                                                                                                    <NA>
## 3989                                                                                                   asian
## 3990                                                                                   middle eastern, white
## 3991                                                                                                   white
## 3992                                                                                                   white
## 3993                                                                                                   white
## 3994                                                                                                   white
## 3995                                                                                                   white
## 3996                                                                                                    <NA>
## 3997                                                                                                   white
## 3998                                                                                                    <NA>
## 3999                                                                                                    <NA>
## 4000                                                                                                   white
## 4001                                                                                                   white
## 4002                                                                                                   white
## 4003                                                                                                    <NA>
## 4004                                                                                                   white
## 4005                                                                                                   asian
## 4006                                                                                                   white
## 4007                                                                                        hispanic / latin
## 4008                                                                                                   asian
## 4009 asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 4010                                                               asian, pacific islander, hispanic / latin
## 4011                                                                                                   black
## 4012                                                                                                   asian
## 4013                                                                                                   white
## 4014                                                                                                   white
## 4015                                                                                                  indian
## 4016                                                                                                   white
## 4017                                                                                                   other
## 4018                                                                                                   white
## 4019                                                                                                   white
## 4020                                                                                            white, other
## 4021                                                                                                   white
## 4022                                                                                                   white
## 4023                                                                                                   asian
## 4024                                                                                                   white
## 4025                                                                                                   white
## 4026                                                                                                   white
## 4027                                                                                                   white
## 4028                                                                                                   white
## 4029                                                                                                    <NA>
## 4030                                                                                                   white
## 4031                                                                                                    <NA>
## 4032                                                                                                   white
## 4033                                                                                        hispanic / latin
## 4034                                                                                        hispanic / latin
## 4035                                                                                                   white
## 4036                                                                                                   white
## 4037                                                                                                   white
## 4038                                                                                                   white
## 4039                                                                                                    <NA>
## 4040                                                                                                   white
## 4041                                                                                 asian, pacific islander
## 4042                                                                                                   white
## 4043                                                                                                   white
## 4044                                                                                                   white
## 4045                                                                                 hispanic / latin, white
## 4046                                                                                                    <NA>
## 4047                                                                                                    <NA>
## 4048 asian, middle eastern, black, native american, indian, pacific islander, hispanic / latin, white, other
## 4049                                                                                                   white
## 4050                                                                                                   white
## 4051                                                                                                   white
## 4052                                                                                 asian, pacific islander
## 4053                                                                                                   asian
## 4054                                                                                                   white
## 4055                                                                                                   white
## 4056                                                                                                    <NA>
## 4057                                                                                 hispanic / latin, white
## 4058                                                                                                   white
## 4059                                                                                                   white
## 4060                                                                                                   white
## 4061                                                                                                   asian
## 4062                                                                                                   white
## 4063                                                                                                   black
## 4064                                                                                                   white
## 4065                                                                                                   white
## 4066                                                                                                   white
## 4067                                                                                        hispanic / latin
## 4068                                                                                                   white
## 4069                                                                                        pacific islander
## 4070                                                                                                   white
## 4071                                                                                                   white
## 4072                                                                                                   asian
## 4073                                                                                        hispanic / latin
## 4074                                                                                                   asian
## 4075                                                                                                    <NA>
## 4076                                                                                                   white
## 4077                                                                                                   white
## 4078                                                                                                   white
## 4079                                                                                                   white
## 4080                                                                                                   white
## 4081                                                                                                   white
## 4082                                                                                                   other
## 4083                                                                                                   white
## 4084                                                                                                   white
## 4085                                                                                                   asian
## 4086                                                                                                   white
## 4087                                                                                                   asian
## 4088                                                                                                    <NA>
## 4089                                                                                                    <NA>
## 4090                                                                                                  indian
## 4091                                                                                                   white
## 4092                                                                                                    <NA>
## 4093                                                                                                   white
## 4094                                                                                                    <NA>
## 4095                                                                                                  indian
## 4096                                                                                                   white
## 4097                                                                                                   asian
## 4098                                                                                                    <NA>
## 4099                                                                                                   white
## 4100                                                                                                    <NA>
## 4101                                                                                                    <NA>
## 4102                                                                                                   white
## 4103                                                                                                   white
## 4104                                                                                        hispanic / latin
## 4105                                                                                                   asian
## 4106                                                                                                  indian
## 4107                                                                                                  indian
## 4108                                                                                 asian, pacific islander
## 4109                                                                                            white, other
## 4110                                                                                                   white
## 4111                                                                                            white, other
## 4112                                                                                                   white
## 4113                                                                                                   asian
## 4114                                                                                            asian, white
## 4115                                                                                                   asian
## 4116                                                                                                   white
## 4117                                                                                                   asian
## 4118                                                                                                   white
## 4119                                                                                        hispanic / latin
## 4120                                                                                                   white
## 4121                                                                                                   white
## 4122                                                                                                   white
## 4123                                                                                  native american, white
## 4124                                                                                                   white
## 4125                                                                                                   white
## 4126                                                                                 hispanic / latin, white
## 4127                                                                                        hispanic / latin
## 4128                                                                                                   white
## 4129                                                                                        hispanic / latin
## 4130                                                                                                   asian
## 4131                                                                                                   white
## 4132                                                                                 hispanic / latin, white
## 4133                                                                                                    <NA>
## 4134                                                                                        pacific islander
## 4135                                                                                                   white
## 4136                                                                                                    <NA>
## 4137                                                                          asian, pacific islander, other
## 4138                                                                                                   white
## 4139                                                                                                   white
## 4140                                                                                                   white
## 4141                                                                                                   asian
## 4142                                                                                                   white
## 4143                                                                                                    <NA>
## 4144                                                                          black, hispanic / latin, white
## 4145                                                                                 hispanic / latin, white
## 4146                                                                                        hispanic / latin
## 4147                                                                                        hispanic / latin
## 4148                                                                                                   white
## 4149                                                                                                   white
## 4150                                                                                                   asian
## 4151                                                                                            white, other
## 4152                                                                                                   white
## 4153                                                                                                    <NA>
## 4154                                                                                                   white
## 4155                                                                                                   white
## 4156                                                                                                  indian
## 4157                                                                                                   asian
## 4158                                                                                                   white
## 4159                                                                                                    <NA>
## 4160                                                                                                   white
## 4161                                                                                                   white
## 4162                                                                                                  indian
## 4163                                                                                                   white
## 4164                                                                                                   white
## 4165                                                                                 hispanic / latin, white
## 4166                                                                                                   asian
##      height_in(inch)  income            job        industry         last_online
## 1                 75      NA transportation            <NA> 2012-06-28 20:30:00
## 2                 70   80000   hospitality           travel 2012-06-29 21:41:00
## 3                 68      NA           <NA>            <NA> 2012-06-27 09:10:00
## 4                 71   20000        student            <NA> 2012-06-28 14:22:00
## 5                 66      NA      artistic         musical  2012-06-27 21:26:00
## 6                 67      NA      computer        hardware  2012-06-29 19:18:00
## 7                 65      NA           <NA>            <NA> 2012-06-25 20:45:00
## 8                 65      NA      artistic         musical  2012-06-29 12:30:00
## 9                 67      NA           <NA>            <NA> 2012-06-29 23:39:00
## 10                65      NA        student            <NA> 2012-06-28 21:08:00
## 11                70      NA           <NA>            <NA> 2012-06-04 14:59:00
## 12                72   40000       banking       financial  2012-05-22 17:05:00
## 13                72      NA entertainment            media 2012-05-28 21:28:00
## 14                66   30000         sales       marketing  2012-06-13 16:06:00
## 15                62   50000          other            <NA> 2012-06-29 08:55:00
## 16                65      NA      medicine           health 2012-06-29 22:09:00
## 17                70      NA entertainment            media 2012-06-29 16:08:00
## 18                64      NA       banking       financial  2012-06-29 21:17:00
## 19                71      NA      medicine           health 2012-06-29 04:04:00
## 20                72      NA       science            tech  2012-06-27 21:41:00
## 21                67      NA         sales       marketing  2012-06-26 20:40:00
## 22                67      NA        student            <NA> 2012-06-15 22:56:00
## 23                69      NA     executive       management 2012-06-28 15:22:00
## 24                71      NA     education         academia 2012-05-17 20:23:00
## 25                73      NA      artistic         musical  2012-06-29 21:32:00
## 26                70      NA      medicine           health 2012-06-26 01:27:00
## 27                72      NA      clerical   administrative 2012-06-10 01:37:00
## 28                67      NA          other            <NA> 2012-06-25 23:06:00
## 29                74      NA           <NA>            <NA> 2012-06-19 01:22:00
## 30                68      NA          other            <NA> 2012-06-29 07:01:00
## 31                64      NA          other            <NA> 2011-11-10 13:15:00
## 32                72      NA       science            tech  2012-06-27 23:16:00
## 33                67      NA      computer        hardware  2012-05-25 00:04:00
## 34                60      NA   hospitality           travel 2012-06-30 00:00:00
## 35                69      NA entertainment            media 2012-06-24 22:10:00
## 36                69      NA       banking       financial  2012-06-27 00:32:00
## 37                69      NA       science            tech  2012-06-28 09:28:00
## 38                69      NA          other            <NA> 2012-06-28 12:57:00
## 39                63      NA entertainment            media 2012-06-29 17:20:00
## 40                74      NA      computer        hardware  2012-06-30 00:01:00
## 41                76      NA      computer        hardware  2012-06-29 22:56:00
## 42                72      NA           <NA>            <NA> 2012-06-30 00:01:00
## 43                75      NA      artistic         musical  2012-03-19 17:41:00
## 44                71   60000  construction    craftsmanship 2012-06-30 00:01:00
## 45                66      NA          other            <NA> 2012-06-10 13:28:00
## 46                69      NA     education         academia 2012-06-28 18:09:00
## 47                73      NA           <NA>            <NA> 2012-06-29 07:09:00
## 48                70      NA      artistic         musical  2012-06-25 15:06:00
## 49                67 1000000      artistic         musical  2012-06-30 00:01:00
## 50                66      NA       science            tech  2012-06-28 07:59:00
## 51                66      NA      artistic         musical  2012-06-27 08:41:00
## 52                65      NA           <NA>            <NA> 2012-03-23 22:05:00
## 53                69      NA       science            tech  2012-06-23 11:09:00
## 54                69      NA      computer        hardware  2012-06-20 14:54:00
## 55                69      NA      computer        hardware  2012-06-25 04:53:00
## 56                70      NA      medicine           health 2012-06-29 16:04:00
## 57                71      NA        student            <NA> 2012-06-29 17:24:00
## 58                72      NA      computer        hardware  2012-06-29 22:10:00
## 59                70      NA        student            <NA> 2011-10-13 03:10:00
## 60                71      NA           <NA>            <NA> 2012-06-05 13:04:00
## 61                67      NA      computer        hardware  2012-05-07 02:46:00
## 62                75      NA          other            <NA> 2012-06-29 20:45:00
## 63                70      NA rather not say            <NA> 2012-06-29 20:38:00
## 64                67      NA     education         academia 2012-06-28 21:28:00
## 65                72      NA     political       government 2012-06-27 09:14:00
## 66                68      NA       science            tech  2012-06-29 09:47:00
## 67                65   20000     education         academia 2012-06-30 00:02:00
## 68                66      NA        student            <NA> 2012-05-28 14:45:00
## 69                69      NA      medicine           health 2012-05-09 16:41:00
## 70                76      NA          other            <NA> 2012-04-26 07:55:00
## 71                62      NA       science            tech  2012-06-28 17:28:00
## 72                67      NA entertainment            media 2012-02-15 06:10:00
## 73                73  150000      artistic         musical  2012-06-29 00:25:00
## 74                61   50000           law   legal services 2012-06-29 08:00:00
## 75                72      NA     education         academia 2012-06-28 20:44:00
## 76                67      NA rather not say            <NA> 2012-06-28 22:21:00
## 77                72      NA           <NA>            <NA> 2012-06-28 22:08:00
## 78                65      NA          other            <NA> 2011-10-20 19:56:00
## 79                67      NA         sales       marketing  2012-06-26 20:31:00
## 80                71   20000 entertainment            media 2011-12-20 12:29:00
## 81                67      NA     executive       management 2012-06-24 00:39:00
## 82                69      NA           <NA>            <NA> 2012-06-29 14:02:00
## 83                69  100000     executive       management 2012-06-28 22:24:00
## 84                64      NA       science            tech  2012-02-25 22:53:00
## 85                73      NA       science            tech  2011-12-25 22:08:00
## 86                68      NA           <NA>            <NA> 2012-04-21 22:07:00
## 87                66      NA           <NA>            <NA> 2012-06-06 21:05:00
## 88                61      NA         sales       marketing  2012-06-26 22:44:00
## 89                71      NA           law   legal services 2012-06-29 09:18:00
## 90                64      NA           <NA>            <NA> 2012-03-30 08:10:00
## 91                74      NA         sales       marketing  2012-01-27 18:35:00
## 92                74      NA       science            tech  2011-10-27 01:12:00
## 93                67   50000      medicine           health 2011-07-27 20:01:00
## 94                69      NA      computer        hardware  2012-06-29 22:43:00
## 95                67   40000      artistic         musical  2012-05-28 15:18:00
## 96                78   80000         sales       marketing  2012-06-26 22:52:00
## 97                75      NA   hospitality           travel 2012-06-29 20:28:00
## 98                70      NA          other            <NA> 2012-05-16 22:46:00
## 99                66      NA     executive       management 2012-06-29 06:59:00
## 100               72      NA  construction    craftsmanship 2012-06-24 21:23:00
## 101               71      NA     education         academia 2012-06-29 08:52:00
## 102               68      NA       banking       financial  2012-06-18 22:02:00
## 103               69 1000000     education         academia 2012-06-28 09:53:00
## 104               70  100000      computer        hardware  2012-05-19 18:19:00
## 105               63      NA          other            <NA> 2012-06-25 19:41:00
## 106               65      NA     education         academia 2012-06-29 22:35:00
## 107               64      NA     executive       management 2012-06-24 20:20:00
## 108               72  500000      medicine           health 2012-03-17 21:19:00
## 109               64      NA           law   legal services 2012-06-30 00:04:00
## 110               66      NA          other            <NA> 2012-06-29 19:06:00
## 111               68      NA     education         academia 2012-06-24 23:44:00
## 112               71      NA     education         academia 2012-06-29 22:07:00
## 113               74      NA           <NA>            <NA> 2012-06-29 11:16:00
## 114               66   20000          other            <NA> 2012-06-28 18:40:00
## 115               70      NA       science            tech  2012-03-22 16:56:00
## 116               72      NA           <NA>            <NA> 2012-06-24 18:46:00
## 117               68      NA           <NA>            <NA> 2012-05-24 23:07:00
## 118               67      NA  construction    craftsmanship 2012-02-09 23:34:00
## 119               65      NA           <NA>            <NA> 2012-06-29 13:31:00
## 120               66      NA        student            <NA> 2012-06-22 02:01:00
## 121               71      NA      computer        hardware  2012-06-28 11:06:00
## 122               75      NA     unemployed            <NA> 2012-06-09 23:55:00
## 123               66      NA      artistic         musical  2012-06-15 23:59:00
## 124               70 1000000      medicine           health 2012-06-29 17:01:00
## 125               62      NA      medicine           health 2012-06-12 23:51:00
## 126               68  150000       science            tech  2012-02-29 12:08:00
## 127               73      NA       science            tech  2012-06-28 00:22:00
## 128               68  150000          other            <NA> 2012-06-27 00:15:00
## 129               71      NA      computer        hardware  2012-06-30 00:05:00
## 130               66      NA      computer        hardware  2012-01-29 01:04:00
## 131               69      NA           <NA>            <NA> 2012-06-29 22:14:00
## 132               68      NA           <NA>            <NA> 2012-05-15 17:48:00
## 133               68      NA      artistic         musical  2012-06-29 10:30:00
## 134               68      NA     education         academia 2012-06-12 21:54:00
## 135               68      NA        student            <NA> 2012-06-30 00:05:00
## 136               67      NA   hospitality           travel 2012-06-29 20:35:00
## 137               75      NA           <NA>            <NA> 2012-06-24 22:19:00
## 138               73   80000 transportation            <NA> 2012-06-29 21:54:00
## 139               67      NA       science            tech  2012-05-19 09:49:00
## 140               73      NA       military            <NA> 2012-06-15 22:10:00
## 141               62      NA          other            <NA> 2012-06-28 21:09:00
## 142               73   80000          other            <NA> 2011-08-15 09:32:00
## 143               73      NA  construction    craftsmanship 2012-06-29 20:05:00
## 144               74      NA           <NA>            <NA> 2012-06-29 22:32:00
## 145               63      NA           <NA>            <NA> 2012-06-25 12:28:00
## 146               67   60000      computer        hardware  2012-06-14 21:30:00
## 147               70      NA           <NA>            <NA> 2012-06-07 11:34:00
## 148               66   80000  construction    craftsmanship 2011-12-06 13:38:00
## 149               64      NA        student            <NA> 2011-07-19 12:23:00
## 150               67      NA transportation            <NA> 2012-05-19 10:47:00
## 151               63      NA     education         academia 2012-06-29 22:51:00
## 152               68      NA      computer        hardware  2012-06-29 22:55:00
## 153               68      NA      artistic         musical  2012-06-29 19:07:00
## 154               75      NA           <NA>            <NA> 2012-02-08 23:21:00
## 155               73      NA         sales       marketing  2012-06-27 08:19:00
## 156               61      NA   hospitality           travel 2012-06-26 19:45:00
## 157               62      NA     executive       management 2012-05-07 17:47:00
## 158               68      NA           law   legal services 2012-05-30 22:59:00
## 159               69      NA     education         academia 2012-06-20 20:55:00
## 160               63      NA           <NA>            <NA> 2012-06-26 02:13:00
## 161               62      NA           <NA>            <NA> 2012-06-29 22:17:00
## 162               66      NA      medicine           health 2012-06-29 16:53:00
## 163               66      NA         sales       marketing  2012-06-27 21:41:00
## 164               66      NA      medicine           health 2012-06-22 23:43:00
## 165               72      NA        student            <NA> 2012-06-30 00:07:00
## 166               74      NA      computer        hardware  2012-06-28 23:11:00
## 167               72      NA           <NA>            <NA> 2012-06-29 18:34:00
## 168               63   20000         sales       marketing  2012-06-23 23:10:00
## 169               68   70000       science            tech  2012-06-18 21:51:00
## 170               66      NA           <NA>            <NA> 2012-06-27 20:52:00
## 171               66      NA        student            <NA> 2012-03-20 20:06:00
## 172               70      NA          other            <NA> 2012-06-30 00:07:00
## 173               73      NA     executive       management 2012-05-15 06:35:00
## 174               63      NA      artistic         musical  2012-06-28 14:06:00
## 175               69      NA          other            <NA> 2011-10-14 04:03:00
## 176               66      NA      medicine           health 2011-09-24 00:59:00
## 177               68      NA      computer        hardware  2012-05-27 14:46:00
## 178               72  250000      artistic         musical  2011-08-23 23:38:00
## 179               68      NA           <NA>            <NA> 2012-04-30 19:47:00
## 180               71      NA      computer        hardware  2012-06-16 03:17:00
## 181               69      NA         sales       marketing  2012-06-28 20:41:00
## 182               66   20000         sales       marketing  2012-06-26 22:47:00
## 183               68      NA         sales       marketing  2012-06-29 21:59:00
## 184               70      NA          other            <NA> 2012-01-23 10:43:00
## 185               74   30000     education         academia 2012-06-30 00:08:00
## 186               63      NA     education         academia 2012-06-28 22:31:00
## 187               66      NA           law   legal services 2012-06-29 12:43:00
## 188               60      NA     education         academia 2012-04-22 20:20:00
## 189               67  150000           law   legal services 2012-06-14 22:56:00
## 190               79   50000 entertainment            media 2012-06-29 21:31:00
## 191               61   20000       science            tech  2012-02-24 23:54:00
## 192               69      NA entertainment            media 2012-06-24 16:32:00
## 193               69      NA          other            <NA> 2012-06-29 15:00:00
## 194               67      NA      artistic         musical  2012-06-29 22:09:00
## 195               71  150000     education         academia 2012-06-29 20:59:00
## 196               63      NA     education         academia 2012-06-25 22:50:00
## 197               67      NA       banking       financial  2012-06-25 22:11:00
## 198               63      NA       banking       financial  2011-08-01 20:34:00
## 199               64      NA      medicine           health 2011-12-05 01:55:00
## 200               62      NA           <NA>            <NA> 2012-06-30 00:08:00
## 201               65   80000      medicine           health 2012-06-29 12:49:00
## 202               67      NA      computer        hardware  2012-06-29 11:09:00
## 203               66      NA     education         academia 2012-06-17 02:04:00
## 204               63      NA        student            <NA> 2012-06-29 13:11:00
## 205               63      NA           <NA>            <NA> 2012-06-29 22:08:00
## 206               69      NA     political       government 2012-06-29 17:46:00
## 207               71      NA           <NA>            <NA> 2012-06-16 20:49:00
## 208               69      NA          other            <NA> 2012-06-27 22:04:00
## 209               67      NA        student            <NA> 2012-06-21 23:37:00
## 210               66      NA rather not say            <NA> 2012-06-27 18:22:00
## 211               62      NA      medicine           health 2012-06-28 12:18:00
## 212               72      NA       science            tech  2012-06-29 16:23:00
## 213               69      NA           law   legal services 2012-06-27 22:09:00
## 214               69      NA           law   legal services 2012-06-14 15:36:00
## 215               59      NA      artistic         musical  2012-04-25 22:07:00
## 216               74      NA       science            tech  2012-06-28 14:35:00
## 217               70 1000000  construction    craftsmanship 2012-06-15 19:55:00
## 218               65      NA       banking       financial  2012-06-29 20:02:00
## 219               70   60000      artistic         musical  2012-06-29 06:14:00
## 220               66      NA       banking       financial  2012-06-29 15:08:00
## 221               70      NA           <NA>            <NA> 2011-11-03 22:11:00
## 222               64      NA      medicine           health 2012-05-16 09:05:00
## 223               69      NA      artistic         musical  2012-06-29 10:25:00
## 224               63      NA      medicine           health 2012-06-29 17:04:00
## 225               62   20000      artistic         musical  2012-06-27 19:42:00
## 226               68      NA          other            <NA> 2012-06-28 13:52:00
## 227               71      NA           <NA>            <NA> 2012-01-26 16:11:00
## 228               71      NA     education         academia 2012-06-27 02:27:00
## 229               69      NA         sales       marketing  2012-06-29 21:58:00
## 230               70      NA     education         academia 2012-06-24 15:13:00
## 231               72      NA           <NA>            <NA> 2012-06-29 20:39:00
## 232               66      NA         sales       marketing  2012-06-29 20:35:00
## 233               65      NA       science            tech  2012-06-27 04:27:00
## 234               65   40000        retired            <NA> 2012-06-17 20:16:00
## 235               68   80000          other            <NA> 2012-04-02 09:56:00
## 236               68      NA      computer        hardware  2012-06-29 12:07:00
## 237               62  100000     education         academia 2012-06-29 14:45:00
## 238               72      NA           <NA>            <NA> 2011-07-05 08:39:00
## 239               63      NA          other            <NA> 2012-06-30 00:11:00
## 240               73      NA        student            <NA> 2011-12-20 14:20:00
## 241               67   30000 entertainment            media 2012-06-28 17:17:00
## 242               65      NA           <NA>            <NA> 2012-06-27 22:52:00
## 243               69   60000      medicine           health 2012-06-29 22:49:00
## 244               80   80000          other            <NA> 2012-06-29 12:42:00
## 245               61  100000      artistic         musical  2011-10-17 01:08:00
## 246               63      NA      computer        hardware  2012-05-04 08:41:00
## 247               73   30000        student            <NA> 2012-06-28 06:55:00
## 248               63      NA      medicine           health 2012-03-31 23:29:00
## 249               71      NA     executive       management 2012-06-29 15:35:00
## 250               62   60000          other            <NA> 2012-06-29 18:22:00
## 251               68      NA           <NA>            <NA> 2012-06-23 12:21:00
## 252               72   50000 entertainment            media 2012-01-30 22:18:00
## 253               65      NA      medicine           health 2012-04-06 00:29:00
## 254               67      NA           <NA>            <NA> 2012-06-29 20:12:00
## 255               67   80000      artistic         musical  2011-10-10 17:15:00
## 256               68      NA          other            <NA> 2012-06-30 00:11:00
## 257               67      NA           <NA>            <NA> 2011-10-08 09:24:00
## 258               67      NA         sales       marketing  2012-06-27 17:59:00
## 259               62      NA          other            <NA> 2011-08-09 15:15:00
## 260               63      NA      medicine           health 2012-06-26 19:05:00
## 261               64   70000     education         academia 2012-06-28 21:37:00
## 262               72      NA          other            <NA> 2012-06-29 12:59:00
## 263               62      NA     education         academia 2012-06-29 21:37:00
## 264               66      NA           law   legal services 2012-06-30 00:12:00
## 265               67      NA          other            <NA> 2012-04-08 15:39:00
## 266               62      NA          other            <NA> 2012-06-15 11:37:00
## 267               69      NA      clerical   administrative 2012-06-29 20:20:00
## 268               69   80000       science            tech  2012-06-29 08:54:00
## 269               64      NA           <NA>            <NA> 2012-06-29 18:55:00
## 270               62      NA           <NA>            <NA> 2012-06-27 21:56:00
## 271               70      NA       science            tech  2012-06-28 18:29:00
## 272               64      NA          other            <NA> 2012-06-29 15:18:00
## 273               63      NA          other            <NA> 2012-06-29 22:29:00
## 274               67      NA           law   legal services 2012-01-22 17:43:00
## 275               68      NA      medicine           health 2011-07-18 20:00:00
## 276               67      NA       science            tech  2012-06-28 22:32:00
## 277               65      NA           <NA>            <NA> 2012-05-29 23:55:00
## 278               67      NA      medicine           health 2012-06-29 18:04:00
## 279               64   80000          other            <NA> 2012-06-28 22:03:00
## 280               71      NA           <NA>            <NA> 2012-05-19 13:32:00
## 281               80      NA          other            <NA> 2012-03-23 00:07:00
## 282               60      NA         sales       marketing  2012-06-27 21:28:00
## 283               71      NA         sales       marketing  2012-06-30 00:13:00
## 284               69   50000  construction    craftsmanship 2012-06-28 16:38:00
## 285               67      NA           <NA>            <NA> 2012-05-18 14:52:00
## 286               64      NA           <NA>            <NA> 2012-06-29 14:36:00
## 287               62      NA           <NA>            <NA> 2012-05-09 01:01:00
## 288               63      NA      computer        hardware  2012-06-13 22:27:00
## 289               61      NA           <NA>            <NA> 2012-04-24 23:50:00
## 290               69      NA           <NA>            <NA> 2011-12-27 00:03:00
## 291               76   20000          other            <NA> 2012-06-23 12:38:00
## 292               70      NA       banking       financial  2012-06-11 21:20:00
## 293               72      NA       science            tech  2012-06-29 17:19:00
## 294               63      NA          other            <NA> 2012-06-29 00:07:00
## 295               69      NA      medicine           health 2012-06-28 13:09:00
## 296               72      NA           <NA>            <NA> 2012-06-29 10:14:00
## 297               70      NA     executive       management 2012-06-26 16:21:00
## 298               73   80000      medicine           health 2012-06-29 21:12:00
## 299               62      NA          other            <NA> 2012-06-29 16:49:00
## 300               62      NA           law   legal services 2012-06-29 22:35:00
## 301               72      NA  construction    craftsmanship 2012-06-29 15:41:00
## 302               66 1000000     education         academia 2012-04-30 19:50:00
## 303               65      NA          other            <NA> 2011-09-12 06:21:00
## 304               70      NA         sales       marketing  2012-06-30 00:14:00
## 305               71      NA         sales       marketing  2012-03-25 00:09:00
## 306               71      NA      artistic         musical  2012-06-28 21:37:00
## 307               64   40000     education         academia 2011-11-04 16:57:00
## 308               63      NA           law   legal services 2012-06-29 18:27:00
## 309               75   20000      artistic         musical  2012-06-28 09:12:00
## 310               70      NA     education         academia 2012-01-08 23:15:00
## 311               73      NA      computer        hardware  2012-06-29 22:19:00
## 312               68   60000          other            <NA> 2012-03-30 13:36:00
## 313               69      NA         sales       marketing  2011-08-08 14:31:00
## 314               64      NA          other            <NA> 2012-06-29 17:51:00
## 315               68   80000 entertainment            media 2012-05-22 11:38:00
## 316               68      NA       science            tech  2012-06-29 21:01:00
## 317               74      NA      computer        hardware  2012-06-30 00:14:00
## 318               61      NA           <NA>            <NA> 2012-06-29 20:43:00
## 319               66      NA      computer        hardware  2012-06-29 22:12:00
## 320               62      NA      medicine           health 2012-06-29 11:40:00
## 321               67      NA     education         academia 2012-06-19 09:27:00
## 322               72      NA      computer        hardware  2012-06-28 15:01:00
## 323               67      NA        student            <NA> 2012-05-27 11:37:00
## 324               64      NA      artistic         musical  2012-06-28 07:27:00
## 325               68      NA      medicine           health 2012-06-29 22:50:00
## 326               63      NA      medicine           health 2012-06-08 09:40:00
## 327               69      NA       science            tech  2012-06-29 19:32:00
## 328               68      NA           <NA>            <NA> 2012-06-29 10:56:00
## 329               65      NA       banking       financial  2012-06-05 07:53:00
## 330               66  100000  construction    craftsmanship 2012-06-29 21:41:00
## 331               62      NA           law   legal services 2012-06-30 00:15:00
## 332               72      NA entertainment            media 2011-09-30 09:23:00
## 333               70   40000           <NA>            <NA> 2012-06-26 06:14:00
## 334               69      NA        student            <NA> 2012-05-09 21:40:00
## 335               64      NA           <NA>            <NA> 2012-06-28 22:34:00
## 336               63   70000        retired            <NA> 2012-06-25 22:31:00
## 337               60      NA      medicine           health 2012-06-29 22:01:00
## 338               65  150000         sales       marketing  2012-06-28 19:14:00
## 339               67      NA     executive       management 2012-06-28 07:19:00
## 340               72      NA      medicine           health 2012-06-27 20:46:00
## 341               71      NA entertainment            media 2012-03-12 00:22:00
## 342               73      NA       science            tech  2012-06-29 14:03:00
## 343               68      NA      computer        hardware  2012-06-29 00:45:00
## 344               62      NA           law   legal services 2012-06-29 23:13:00
## 345               69      NA          other            <NA> 2012-06-25 01:10:00
## 346               71      NA          other            <NA> 2012-06-29 14:57:00
## 347               66      NA           <NA>            <NA> 2012-06-29 22:46:00
## 348               72      NA        student            <NA> 2011-08-27 20:02:00
## 349               68      NA          other            <NA> 2012-06-30 00:16:00
## 350               73      NA      medicine           health 2012-06-29 22:45:00
## 351               67      NA          other            <NA> 2012-06-19 20:32:00
## 352               75      NA         sales       marketing  2011-09-02 16:25:00
## 353               74      NA     education         academia 2012-06-27 22:12:00
## 354               74   20000        student            <NA> 2012-06-28 11:58:00
## 355               68   40000      artistic         musical  2012-06-28 21:42:00
## 356               64      NA           <NA>            <NA> 2012-06-01 08:08:00
## 357               75      NA       science            tech  2012-06-30 00:16:00
## 358               63      NA           law   legal services 2012-03-12 19:38:00
## 359               65      NA      computer        hardware  2011-08-07 21:53:00
## 360               72   30000          other            <NA> 2012-06-29 15:47:00
## 361               68      NA           <NA>            <NA> 2012-06-29 21:55:00
## 362               69      NA          other            <NA> 2012-06-30 00:17:00
## 363               73      NA      computer        hardware  2012-06-29 22:21:00
## 364               70      NA          other            <NA> 2012-06-30 00:17:00
## 365               69      NA           <NA>            <NA> 2012-06-28 20:02:00
## 366               73   70000      computer        hardware  2012-06-30 00:17:00
## 367               69   70000     education         academia 2012-06-21 00:45:00
## 368               71      NA       science            tech  2012-06-29 21:36:00
## 369               73      NA         sales       marketing  2011-08-29 19:37:00
## 370               63      NA       science            tech  2012-06-17 10:35:00
## 371               67      NA         sales       marketing  2012-06-29 22:47:00
## 372               64      NA     education         academia 2011-07-27 10:40:00
## 373               71   50000          other            <NA> 2012-06-29 14:17:00
## 374               72      NA           <NA>            <NA> 2012-06-30 00:17:00
## 375               74      NA      computer        hardware  2012-06-26 22:39:00
## 376               72   40000          other            <NA> 2012-06-28 21:06:00
## 377               71      NA          other            <NA> 2012-06-27 23:21:00
## 378               64      NA  construction    craftsmanship 2012-06-06 19:32:00
## 379               66      NA     executive       management 2012-05-10 21:31:00
## 380               74   40000     education         academia 2011-09-25 23:31:00
## 381               68      NA           <NA>            <NA> 2012-06-29 19:17:00
## 382               70      NA        student            <NA> 2012-06-29 13:05:00
## 383               68      NA      clerical   administrative 2012-06-28 22:11:00
## 384               76      NA      computer        hardware  2012-06-27 20:41:00
## 385               72      NA        student            <NA> 2012-06-29 14:31:00
## 386               70  100000     executive       management 2012-06-29 22:49:00
## 387               67      NA          other            <NA> 2012-06-29 08:04:00
## 388               64      NA      artistic         musical  2012-03-29 09:55:00
## 389               68      NA           <NA>            <NA> 2012-02-10 16:30:00
## 390               66      NA        student            <NA> 2012-06-29 12:14:00
## 391               69      NA        retired            <NA> 2012-06-06 16:10:00
## 392               72      NA       science            tech  2012-06-28 18:19:00
## 393               61      NA     executive       management 2011-07-09 02:18:00
## 394               74      NA       science            tech  2012-06-30 00:18:00
## 395               64      NA          other            <NA> 2012-06-21 23:29:00
## 396               66      NA      medicine           health 2012-06-29 19:44:00
## 397               73      NA           law   legal services 2012-06-29 17:04:00
## 398               76   20000      medicine           health 2012-05-07 18:37:00
## 399               71      NA       banking       financial  2012-06-26 06:13:00
## 400               69      NA           <NA>            <NA> 2012-06-18 06:41:00
## 401               71      NA         sales       marketing  2012-01-06 20:35:00
## 402               71   30000     education         academia 2012-06-27 20:16:00
## 403               91  150000         sales       marketing  2012-06-29 22:25:00
## 404               74      NA     education         academia 2011-09-22 03:54:00
## 405               62      NA          other            <NA> 2012-06-29 22:31:00
## 406               67      NA       banking       financial  2012-06-29 22:26:00
## 407               62      NA      computer        hardware  2012-06-26 23:25:00
## 408               71      NA      artistic         musical  2012-06-26 15:18:00
## 409               70   60000      computer        hardware  2012-02-24 14:09:00
## 410               72  150000       science            tech  2012-06-29 23:01:00
## 411               72      NA       science            tech  2011-09-28 23:36:00
## 412               64      NA      clerical   administrative 2012-04-04 15:13:00
## 413               72   50000          other            <NA> 2012-06-29 14:02:00
## 414               68      NA      artistic         musical  2012-06-30 00:19:00
## 415               68      NA          other            <NA> 2012-06-28 14:39:00
## 416               71      NA       science            tech  2012-06-28 20:36:00
## 417               66      NA           <NA>            <NA> 2012-06-27 12:44:00
## 418               67      NA rather not say            <NA> 2012-02-11 01:45:00
## 419               68      NA           <NA>            <NA> 2012-06-28 09:28:00
## 420               61      NA     education         academia 2012-06-27 23:05:00
## 421               73      NA          other            <NA> 2012-06-28 06:26:00
## 422               71      NA      computer        hardware  2012-06-26 05:46:00
## 423               71      NA      computer        hardware  2012-03-01 06:32:00
## 424               64      NA      medicine           health 2012-05-19 13:21:00
## 425               72      NA         sales       marketing  2012-06-28 21:41:00
## 426               67      NA       science            tech  2012-06-26 13:33:00
## 427               65      NA           <NA>            <NA> 2012-06-29 15:31:00
## 428               74      NA           <NA>            <NA> 2011-12-17 21:07:00
## 429               68      NA       science            tech  2012-06-25 12:26:00
## 430               61      NA           <NA>            <NA> 2012-06-27 01:41:00
## 431               71      NA          other            <NA> 2012-06-09 09:59:00
## 432               67      NA       science            tech  2012-05-28 16:04:00
## 433               65   20000      artistic         musical  2011-10-16 22:51:00
## 434               79      NA        student            <NA> 2012-06-28 23:17:00
## 435               61      NA      computer        hardware  2012-06-29 18:15:00
## 436               66      NA      clerical   administrative 2011-09-16 13:55:00
## 437               76   60000  construction    craftsmanship 2012-06-20 10:14:00
## 438               69      NA       science            tech  2011-12-04 22:30:00
## 439               70      NA      computer        hardware  2012-06-27 15:11:00
## 440               65      NA      medicine           health 2012-06-28 20:43:00
## 441               72      NA   hospitality           travel 2012-06-29 23:11:00
## 442               71      NA  construction    craftsmanship 2011-12-04 10:47:00
## 443               71      NA           law   legal services 2012-01-16 13:43:00
## 444               62   70000 rather not say            <NA> 2011-10-31 12:02:00
## 445               70      NA           law   legal services 2012-06-29 12:00:00
## 446               72      NA           <NA>            <NA> 2012-06-29 20:11:00
## 447               70      NA     education         academia 2012-06-29 22:25:00
## 448               69      NA   hospitality           travel 2012-06-24 10:01:00
## 449               71      NA  construction    craftsmanship 2012-06-29 16:16:00
## 450               70      NA      computer        hardware  2012-06-20 20:25:00
## 451               65      NA     education         academia 2012-06-30 00:22:00
## 452               64      NA          other            <NA> 2011-06-28 14:10:00
## 453               68      NA entertainment            media 2012-05-28 10:48:00
## 454               68      NA  construction    craftsmanship 2012-06-29 10:57:00
## 455               67      NA          other            <NA> 2012-06-25 01:03:00
## 456               64      NA         sales       marketing  2012-06-29 22:48:00
## 457               72      NA           <NA>            <NA> 2012-04-24 18:17:00
## 458               61      NA      computer        hardware  2012-06-28 23:20:00
## 459               64   30000     political       government 2012-02-10 08:35:00
## 460               72      NA          other            <NA> 2012-06-30 00:22:00
## 461               64      NA         sales       marketing  2012-06-29 17:41:00
## 462               70      NA      medicine           health 2012-06-30 00:22:00
## 463               63      NA          other            <NA> 2012-06-27 23:39:00
## 464               72  100000  construction    craftsmanship 2012-06-28 19:21:00
## 465               66      NA           <NA>            <NA> 2012-03-25 23:44:00
## 466               65      NA           <NA>            <NA> 2012-06-29 10:22:00
## 467               64      NA        student            <NA> 2012-06-30 00:22:00
## 468               65      NA       science            tech  2012-06-27 21:32:00
## 469               64      NA entertainment            media 2012-04-03 18:48:00
## 470               64      NA entertainment            media 2012-06-29 20:21:00
## 471               63      NA rather not say            <NA> 2011-12-15 23:29:00
## 472               63      NA          other            <NA> 2012-06-24 18:31:00
## 473               66  100000      artistic         musical  2012-06-29 10:12:00
## 474               70  100000       science            tech  2012-03-20 09:46:00
## 475               70      NA      artistic         musical  2012-04-22 01:52:00
## 476               67      NA         sales       marketing  2012-05-04 14:28:00
## 477               70      NA entertainment            media 2012-06-29 22:33:00
## 478               68      NA           <NA>            <NA> 2012-06-29 10:23:00
## 479               73  100000      computer        hardware  2012-06-03 18:47:00
## 480               64      NA       science            tech  2012-04-21 16:27:00
## 481               64      NA      artistic         musical  2012-06-11 03:34:00
## 482               71      NA transportation            <NA> 2012-06-27 23:52:00
## 483               71      NA         sales       marketing  2012-06-29 08:35:00
## 484               62      NA      artistic         musical  2012-05-28 11:20:00
## 485               67      NA      artistic         musical  2012-06-27 03:49:00
## 486               67      NA          other            <NA> 2012-06-19 12:42:00
## 487               70  250000       banking       financial  2012-06-28 08:08:00
## 488               66      NA          other            <NA> 2012-05-30 17:24:00
## 489               72   20000     unemployed            <NA> 2012-02-20 20:10:00
## 490               70      NA           <NA>            <NA> 2012-06-22 22:29:00
## 491               72   20000        student            <NA> 2012-06-24 23:08:00
## 492               66   20000         sales       marketing  2012-05-06 19:55:00
## 493               63      NA           <NA>            <NA> 2012-06-17 17:07:00
## 494               70      NA       banking       financial  2012-06-25 09:56:00
## 495               71      NA        student            <NA> 2012-06-20 19:14:00
## 496               68      NA       science            tech  2012-06-29 17:36:00
## 497               64   60000     education         academia 2012-06-29 21:36:00
## 498               70   30000         sales       marketing  2012-06-29 12:44:00
## 499               68      NA      computer        hardware  2012-06-29 08:43:00
## 500               69      NA           <NA>            <NA> 2012-06-30 00:24:00
## 501               74      NA           <NA>            <NA> 2012-06-06 15:37:00
## 502               72      NA        retired            <NA> 2012-06-03 13:37:00
## 503               75  100000       military            <NA> 2012-06-29 22:22:00
## 504               65      NA     executive       management 2012-06-29 20:31:00
## 505               73   20000        student            <NA> 2012-06-30 00:24:00
## 506               69      NA           <NA>            <NA> 2012-06-29 14:46:00
## 507               62      NA         sales       marketing  2012-06-24 09:55:00
## 508               64      NA entertainment            media 2012-02-05 08:51:00
## 509               68      NA      medicine           health 2011-11-26 18:01:00
## 510               70      NA           <NA>            <NA> 2012-04-11 08:42:00
## 511               67   20000      artistic         musical  2012-06-26 10:50:00
## 512               72      NA          other            <NA> 2012-06-27 22:36:00
## 513               69      NA      computer        hardware  2012-06-30 00:25:00
## 514               68   60000           <NA>            <NA> 2012-06-30 00:25:00
## 515               71      NA      medicine           health 2012-06-26 23:30:00
## 516               72      NA      artistic         musical  2012-06-27 16:37:00
## 517               68      NA      medicine           health 2011-08-31 21:02:00
## 518               72      NA          other            <NA> 2012-06-28 00:58:00
## 519               75      NA       military            <NA> 2012-03-05 00:09:00
## 520               67      NA        student            <NA> 2012-06-27 19:09:00
## 521               68      NA     executive       management 2012-06-03 21:11:00
## 522               67      NA entertainment            media 2012-06-27 23:35:00
## 523               73      NA           <NA>            <NA> 2012-04-15 02:01:00
## 524               72      NA  construction    craftsmanship 2012-06-28 16:31:00
## 525               76   60000       banking       financial  2012-06-12 13:20:00
## 526               68      NA       banking       financial  2012-06-29 22:31:00
## 527               72      NA          other            <NA> 2012-06-25 19:26:00
## 528               67      NA          other            <NA> 2012-06-04 18:09:00
## 529               66      NA     executive       management 2012-03-19 15:51:00
## 530               71      NA         sales       marketing  2012-06-28 08:28:00
## 531               69   50000     executive       management 2012-06-22 07:44:00
## 532               64   20000        student            <NA> 2012-06-27 00:06:00
## 533               75   50000 transportation            <NA> 2012-06-15 17:07:00
## 534               69      NA          other            <NA> 2012-06-29 03:55:00
## 535               67      NA           <NA>            <NA> 2012-06-28 15:27:00
## 536               70      NA entertainment            media 2012-06-29 20:31:00
## 537               71      NA           <NA>            <NA> 2012-01-25 18:46:00
## 538               74      NA      computer        hardware  2012-06-22 09:36:00
## 539               69      NA  construction    craftsmanship 2012-06-29 19:42:00
## 540               68  100000       science            tech  2012-05-26 02:19:00
## 541               60      NA           <NA>            <NA> 2012-06-29 22:38:00
## 542               68      NA           <NA>            <NA> 2012-06-29 08:41:00
## 543               70      NA      artistic         musical  2012-06-29 10:16:00
## 544               70      NA entertainment            media 2012-06-13 22:47:00
## 545               60      NA           <NA>            <NA> 2012-06-11 08:54:00
## 546               67      NA           <NA>            <NA> 2012-06-29 11:46:00
## 547               83   70000          other            <NA> 2012-01-08 10:49:00
## 548               70      NA rather not say            <NA> 2012-06-29 11:03:00
## 549               59      NA          other            <NA> 2011-08-09 19:04:00
## 550               71   20000      artistic         musical  2012-06-15 22:44:00
## 551               77      NA           law   legal services 2012-06-29 18:40:00
## 552               69  100000      medicine           health 2012-06-23 20:53:00
## 553               76      NA          other            <NA> 2012-06-29 09:25:00
## 554               71      NA        student            <NA> 2012-06-22 11:11:00
## 555               68      NA           <NA>            <NA> 2012-06-28 22:17:00
## 556               70      NA     education         academia 2012-06-26 14:11:00
## 557               70      NA      medicine           health 2012-06-27 01:38:00
## 558               62      NA         sales       marketing  2012-06-18 14:51:00
## 559               70      NA      artistic         musical  2012-06-29 19:59:00
## 560               66      NA      artistic         musical  2012-06-29 19:47:00
## 561               72      NA           <NA>            <NA> 2012-06-29 00:31:00
## 562               73      NA          other            <NA> 2012-06-27 14:58:00
## 563               68      NA     education         academia 2012-06-29 22:03:00
## 564               72      NA entertainment            media 2012-06-30 00:28:00
## 565               66      NA          other            <NA> 2012-06-23 21:19:00
## 566               70      NA       banking       financial  2012-04-09 08:03:00
## 567               68      NA           <NA>            <NA> 2012-06-25 21:11:00
## 568               76      NA     political       government 2012-06-30 00:28:00
## 569               67   30000      artistic         musical  2012-06-28 08:08:00
## 570               68      NA           <NA>            <NA> 2012-05-05 11:09:00
## 571               74      NA          other            <NA> 2012-06-30 00:28:00
## 572               67      NA     education         academia 2012-06-17 02:52:00
## 573               60      NA   hospitality           travel 2012-06-26 09:06:00
## 574               70   70000          other            <NA> 2012-05-03 01:52:00
## 575               63   30000         sales       marketing  2012-04-24 23:08:00
## 576               68      NA      medicine           health 2012-06-28 16:37:00
## 577               71      NA         sales       marketing  2012-06-25 23:54:00
## 578               73   30000        student            <NA> 2012-06-28 13:25:00
## 579               72      NA         sales       marketing  2012-06-28 15:21:00
## 580               68   70000           <NA>            <NA> 2012-06-27 23:06:00
## 581               77      NA      artistic         musical  2012-06-04 07:57:00
## 582               73   20000          other            <NA> 2012-06-29 09:30:00
## 583               68      NA     education         academia 2011-11-12 09:56:00
## 584               66      NA          other            <NA> 2012-06-29 07:27:00
## 585               65      NA       science            tech  2012-06-29 20:39:00
## 586               69      NA           <NA>            <NA> 2012-06-24 20:45:00
## 587               71      NA      computer        hardware  2012-03-28 00:53:00
## 588               61      NA         sales       marketing  2012-02-07 21:00:00
## 589               68      NA           <NA>            <NA> 2012-06-29 22:41:00
## 590               63      NA     executive       management 2012-06-29 13:03:00
## 591               63      NA      artistic         musical  2012-02-25 12:06:00
## 592               72      NA          other            <NA> 2012-06-29 13:34:00
## 593               66   40000         sales       marketing  2012-06-29 16:37:00
## 594               64      NA     executive       management 2012-03-12 23:34:00
## 595               63      NA          other            <NA> 2012-06-29 19:35:00
## 596               68      NA     executive       management 2012-06-25 21:15:00
## 597               69      NA      medicine           health 2011-08-09 14:37:00
## 598               67   80000       science            tech  2012-06-28 10:32:00
## 599               63      NA     executive       management 2012-06-27 22:35:00
## 600               74      NA       science            tech  2011-09-08 20:44:00
## 601               68      NA       science            tech  2011-12-02 10:02:00
## 602               67      NA      artistic         musical  2012-06-11 06:54:00
## 603               67      NA          other            <NA> 2011-12-01 19:15:00
## 604               63      NA     executive       management 2012-06-24 12:51:00
## 605               64      NA      computer        hardware  2012-06-25 23:50:00
## 606               67      NA          other            <NA> 2012-06-29 21:45:00
## 607               72      NA           <NA>            <NA> 2012-06-29 22:15:00
## 608               72  150000          other            <NA> 2012-06-20 06:03:00
## 609               65      NA      computer        hardware  2012-05-30 09:49:00
## 610               68      NA   hospitality           travel 2012-06-25 19:05:00
## 611               69   60000       banking       financial  2012-06-05 15:29:00
## 612               69      NA      computer        hardware  2012-03-01 08:58:00
## 613               74  100000     executive       management 2012-06-29 07:51:00
## 614               73      NA      medicine           health 2012-06-29 17:46:00
## 615               72      NA           <NA>            <NA> 2012-06-29 11:36:00
## 616               63      NA      medicine           health 2011-10-11 13:56:00
## 617               68      NA     executive       management 2012-06-30 00:31:00
## 618               68      NA      medicine           health 2011-10-16 21:48:00
## 619               75      NA          other            <NA> 2012-06-11 22:32:00
## 620               73      NA           <NA>            <NA> 2012-04-06 12:25:00
## 621               68      NA         sales       marketing  2012-05-21 00:37:00
## 622               67      NA       science            tech  2012-06-18 23:33:00
## 623               73  100000 entertainment            media 2012-06-12 03:01:00
## 624               64   50000       banking       financial  2012-06-28 21:07:00
## 625               71      NA   hospitality           travel 2011-11-26 14:14:00
## 626               64      NA         sales       marketing  2012-06-28 12:08:00
## 627               63      NA         sales       marketing  2012-04-22 09:20:00
## 628               71      NA           law   legal services 2012-06-30 00:32:00
## 629               64      NA     education         academia 2011-07-29 20:34:00
## 630               74      NA          other            <NA> 2011-09-01 09:01:00
## 631               69      NA        student            <NA> 2012-06-20 10:27:00
## 632               73      NA          other            <NA> 2012-05-28 00:48:00
## 633               71      NA          other            <NA> 2012-04-22 08:31:00
## 634               73      NA           <NA>            <NA> 2012-06-28 00:30:00
## 635               74   20000  construction    craftsmanship 2012-01-18 12:26:00
## 636               68      NA      medicine           health 2012-06-24 20:50:00
## 637               64      NA     education         academia 2012-06-30 00:32:00
## 638               65      NA          other            <NA> 2012-06-29 18:49:00
## 639               74      NA         sales       marketing  2012-06-29 07:28:00
## 640               64      NA           law   legal services 2012-06-28 20:48:00
## 641               70      NA       military            <NA> 2012-06-29 12:20:00
## 642               75      NA        student            <NA> 2012-05-27 02:44:00
## 643               61      NA      artistic         musical  2012-05-25 21:32:00
## 644               70      NA          other            <NA> 2011-10-03 14:02:00
## 645               70      NA           <NA>            <NA> 2012-06-29 15:58:00
## 646               63      NA        student            <NA> 2012-06-29 13:34:00
## 647               71      NA  construction    craftsmanship 2011-08-25 11:52:00
## 648               62      NA      artistic         musical  2012-06-25 11:42:00
## 649               70      NA           <NA>            <NA> 2012-01-07 16:17:00
## 650               69      NA         sales       marketing  2012-06-29 04:21:00
## 651               68      NA     executive       management 2012-06-29 11:35:00
## 652               71      NA         sales       marketing  2012-06-29 18:45:00
## 653               61      NA       science            tech  2012-06-29 08:13:00
## 654               69      NA     education         academia 2012-06-29 19:13:00
## 655               68      NA       banking       financial  2012-06-26 15:55:00
## 656               71      NA      computer        hardware  2012-06-17 14:43:00
## 657               71  100000         sales       marketing  2012-06-30 00:33:00
## 658               72      NA         sales       marketing  2012-01-28 19:35:00
## 659               69  250000       banking       financial  2011-07-11 15:59:00
## 660               66   30000      medicine           health 2012-06-28 22:50:00
## 661               70      NA      artistic         musical  2012-06-30 00:33:00
## 662               70      NA      computer        hardware  2012-06-29 09:42:00
## 663               73      NA      computer        hardware  2012-06-27 19:10:00
## 664               73   80000           law   legal services 2012-05-24 10:40:00
## 665               69      NA entertainment            media 2012-04-15 22:18:00
## 666               67      NA     executive       management 2012-04-14 17:56:00
## 667               69      NA   hospitality           travel 2012-06-29 01:58:00
## 668               68      NA          other            <NA> 2012-06-25 03:03:00
## 669               67   60000        student            <NA> 2012-06-29 22:20:00
## 670               70      NA        student            <NA> 2012-06-30 00:34:00
## 671               70      NA       science            tech  2012-06-23 12:38:00
## 672               62      NA          other            <NA> 2012-06-28 13:41:00
## 673               64      NA     executive       management 2012-01-22 23:20:00
## 674               69      NA     executive       management 2012-06-29 15:41:00
## 675               68      NA          other            <NA> 2012-02-20 01:22:00
## 676               68      NA           <NA>            <NA> 2012-03-16 10:43:00
## 677               70      NA      artistic         musical  2012-06-29 13:16:00
## 678               68      NA rather not say            <NA> 2012-06-29 21:08:00
## 679               67      NA         sales       marketing  2012-06-21 20:21:00
## 680               63      NA     education         academia 2012-06-29 02:43:00
## 681               66      NA          other            <NA> 2012-05-29 13:07:00
## 682               70      NA      computer        hardware  2012-06-22 15:06:00
## 683               72      NA           <NA>            <NA> 2012-06-22 22:43:00
## 684               70      NA      medicine           health 2012-06-26 06:21:00
## 685               75      NA      computer        hardware  2012-06-30 00:35:00
## 686               71      NA      artistic         musical  2012-01-16 20:40:00
## 687               63      NA     education         academia 2012-05-19 03:15:00
## 688               71   70000       science            tech  2012-06-29 01:47:00
## 689               72      NA          other            <NA> 2012-03-27 23:01:00
## 690               76      NA         sales       marketing  2012-06-26 20:01:00
## 691               68      NA     education         academia 2012-06-29 16:02:00
## 692               70  100000       banking       financial  2011-08-04 17:01:00
## 693               73   20000 transportation            <NA> 2012-06-28 12:28:00
## 694               70   70000       science            tech  2012-06-24 17:55:00
## 695               68      NA   hospitality           travel 2012-06-29 22:59:00
## 696               67      NA           <NA>            <NA> 2012-06-27 15:42:00
## 697               69      NA          other            <NA> 2012-06-27 19:05:00
## 698               72  500000        student            <NA> 2012-06-13 06:50:00
## 699               74      NA           <NA>            <NA> 2012-03-09 23:41:00
## 700               64      NA      artistic         musical  2012-06-29 19:44:00
## 701               63      NA           <NA>            <NA> 2012-06-28 19:31:00
## 702               67      NA     unemployed            <NA> 2012-06-26 01:49:00
## 703               67      NA          other            <NA> 2011-10-16 09:42:00
## 704               72      NA          other            <NA> 2012-06-29 11:03:00
## 705               74      NA      artistic         musical  2012-06-29 22:56:00
## 706               72      NA         sales       marketing  2012-06-15 19:51:00
## 707               65      NA           <NA>            <NA> 2011-10-10 00:57:00
## 708               62      NA           <NA>            <NA> 2012-06-18 16:19:00
## 709               69   50000  construction    craftsmanship 2012-06-27 11:28:00
## 710               73   40000   hospitality           travel 2012-06-26 18:29:00
## 711               70   40000          other            <NA> 2011-11-02 09:09:00
## 712               67   20000          other            <NA> 2012-06-29 10:02:00
## 713               69      NA           <NA>            <NA> 2012-06-28 21:02:00
## 714               72      NA          other            <NA> 2012-06-14 10:36:00
## 715               74      NA           <NA>            <NA> 2012-06-28 10:21:00
## 716               67   50000 entertainment            media 2012-05-14 09:37:00
## 717               72      NA       science            tech  2012-06-23 13:44:00
## 718               70      NA     executive       management 2012-06-28 08:43:00
## 719               64      NA     education         academia 2012-06-29 15:13:00
## 720               74      NA         sales       marketing  2012-06-28 20:45:00
## 721               73      NA   hospitality           travel 2012-06-09 19:46:00
## 722               65      NA     executive       management 2012-06-29 14:02:00
## 723               70   50000 entertainment            media 2011-09-10 10:06:00
## 724               64      NA        student            <NA> 2012-06-29 19:48:00
## 725               62   30000          other            <NA> 2012-06-29 01:01:00
## 726               64      NA        student            <NA> 2012-06-29 11:39:00
## 727               67      NA      artistic         musical  2011-12-14 22:27:00
## 728               74      NA rather not say            <NA> 2012-06-29 20:58:00
## 729               67      NA           <NA>            <NA> 2012-06-14 17:14:00
## 730               68      NA           <NA>            <NA> 2011-10-28 16:56:00
## 731               64   60000     education         academia 2011-09-26 14:04:00
## 732               73      NA      medicine           health 2012-06-29 13:12:00
## 733               66      NA        student            <NA> 2011-08-05 13:30:00
## 734               72      NA       science            tech  2012-06-29 22:48:00
## 735               69   50000     executive       management 2011-11-18 09:33:00
## 736               62      NA           <NA>            <NA> 2012-06-27 20:31:00
## 737               69   40000 transportation            <NA> 2012-04-07 12:29:00
## 738               75      NA entertainment            media 2012-06-29 19:32:00
## 739               68   60000 entertainment            media 2012-06-26 09:44:00
## 740               64      NA        student            <NA> 2012-06-29 20:06:00
## 741               70   20000          other            <NA> 2012-06-29 21:37:00
## 742               69      NA           <NA>            <NA> 2012-06-05 16:40:00
## 743               76      NA           <NA>            <NA> 2012-06-29 19:47:00
## 744               73      NA       banking       financial  2012-06-29 19:01:00
## 745               60      NA          other            <NA> 2012-06-28 13:21:00
## 746               70      NA        student            <NA> 2012-06-29 20:45:00
## 747               64      NA       science            tech  2012-06-28 13:00:00
## 748               64      NA          other            <NA> 2012-06-30 00:38:00
## 749               71      NA           <NA>            <NA> 2012-06-29 21:13:00
## 750               68      NA          other            <NA> 2012-06-10 20:25:00
## 751               70      NA          other            <NA> 2012-06-28 17:27:00
## 752               71      NA           <NA>            <NA> 2012-06-15 00:44:00
## 753               69      NA           <NA>            <NA> 2011-08-04 19:46:00
## 754               68   50000       banking       financial  2012-06-08 01:21:00
## 755               64      NA     executive       management 2012-06-20 08:23:00
## 756               72      NA      computer        hardware  2012-06-29 22:33:00
## 757               73   20000        student            <NA> 2012-06-04 23:57:00
## 758               69      NA  construction    craftsmanship 2012-06-29 22:18:00
## 759               69      NA entertainment            media 2012-06-29 20:14:00
## 760               67      NA     education         academia 2012-06-29 21:33:00
## 761               65      NA           law   legal services 2012-06-29 15:00:00
## 762               69      NA     education         academia 2012-06-27 16:30:00
## 763               69      NA           <NA>            <NA> 2011-07-13 14:54:00
## 764               72      NA          other            <NA> 2012-06-02 19:12:00
## 765               68      NA       science            tech  2012-06-28 08:11:00
## 766               74      NA transportation            <NA> 2012-03-01 12:08:00
## 767               75      NA           <NA>            <NA> 2012-06-14 19:30:00
## 768               68   20000     education         academia 2012-06-29 19:08:00
## 769               73      NA     executive       management 2012-06-29 07:45:00
## 770               60      NA      medicine           health 2012-06-29 08:11:00
## 771               73      NA           <NA>            <NA> 2012-05-22 23:05:00
## 772               69      NA           <NA>            <NA> 2012-06-27 16:22:00
## 773               70      NA      artistic         musical  2012-06-17 21:28:00
## 774               68      NA           <NA>            <NA> 2012-06-29 23:32:00
## 775               71      NA         sales       marketing  2012-06-29 22:21:00
## 776               72      NA           <NA>            <NA> 2012-06-30 00:40:00
## 777               71      NA      artistic         musical  2012-06-29 13:37:00
## 778               74   40000      artistic         musical  2012-05-14 17:59:00
## 779               68   50000      medicine           health 2012-06-29 23:17:00
## 780               68      NA          other            <NA> 2012-06-26 18:57:00
## 781               70      NA       science            tech  2012-06-29 20:25:00
## 782               60      NA         sales       marketing  2011-10-25 10:24:00
## 783               70      NA transportation            <NA> 2012-06-29 20:19:00
## 784               74   40000      medicine           health 2012-06-25 11:33:00
## 785               68      NA     executive       management 2012-06-29 15:30:00
## 786               72      NA   hospitality           travel 2012-06-29 21:59:00
## 787               71      NA      artistic         musical  2012-06-29 23:11:00
## 788               69      NA       science            tech  2012-06-27 17:04:00
## 789               69      NA           <NA>            <NA> 2012-06-30 00:40:00
## 790               64      NA        student            <NA> 2012-06-29 05:54:00
## 791               65      NA      artistic         musical  2012-05-29 16:28:00
## 792               76      NA entertainment            media 2012-06-28 14:25:00
## 793               74      NA     education         academia 2012-06-25 22:31:00
## 794               70   20000         sales       marketing  2012-05-13 12:52:00
## 795               70      NA        student            <NA> 2012-06-29 21:58:00
## 796               73      NA      medicine           health 2012-06-30 00:41:00
## 797               63  100000     executive       management 2012-06-29 22:31:00
## 798               71      NA      medicine           health 2012-06-27 21:04:00
## 799               66   40000      artistic         musical  2012-06-29 20:16:00
## 800               74   30000       banking       financial  2012-06-21 11:24:00
## 801               69      NA       science            tech  2012-06-29 08:07:00
## 802               67   20000     education         academia 2012-06-01 21:02:00
## 803               64      NA       science            tech  2012-06-29 14:36:00
## 804               73      NA           <NA>            <NA> 2012-06-08 20:46:00
## 805               69      NA          other            <NA> 2012-02-21 11:10:00
## 806               68      NA rather not say            <NA> 2012-06-26 10:12:00
## 807               72      NA          other            <NA> 2012-06-28 21:53:00
## 808               68      NA     executive       management 2012-06-30 00:41:00
## 809               68      NA          other            <NA> 2012-06-29 21:37:00
## 810               68      NA           <NA>            <NA> 2012-06-29 15:38:00
## 811               64      NA           <NA>            <NA> 2012-06-26 16:36:00
## 812               66   40000     education         academia 2012-06-29 18:00:00
## 813               64      NA           <NA>            <NA> 2012-06-29 00:52:00
## 814               72   50000      medicine           health 2012-04-23 09:25:00
## 815               70      NA        student            <NA> 2012-06-27 21:56:00
## 816               65   60000       science            tech  2012-06-29 20:32:00
## 817               67      NA           <NA>            <NA> 2012-02-21 13:05:00
## 818               73  100000       science            tech  2012-06-29 00:45:00
## 819               76      NA     executive       management 2012-06-29 17:02:00
## 820               68      NA      medicine           health 2012-06-28 19:51:00
## 821               70      NA         sales       marketing  2012-04-09 21:40:00
## 822               71      NA          other            <NA> 2012-04-25 19:45:00
## 823               68      NA     education         academia 2012-05-29 15:58:00
## 824               70      NA      computer        hardware  2012-06-29 22:17:00
## 825               72      NA       science            tech  2012-06-29 10:32:00
## 826               74      NA           <NA>            <NA> 2012-06-28 02:54:00
## 827               67   20000          other            <NA> 2012-04-19 22:16:00
## 828               70   80000           <NA>            <NA> 2012-06-23 16:27:00
## 829               71      NA           <NA>            <NA> 2012-06-25 18:18:00
## 830               72      NA          other            <NA> 2012-06-29 18:23:00
## 831               68      NA       science            tech  2012-06-24 07:02:00
## 832               71 1000000      artistic         musical  2012-06-29 22:48:00
## 833               72      NA          other            <NA> 2012-06-19 23:08:00
## 834               70      NA      computer        hardware  2011-12-14 01:47:00
## 835               65      NA     executive       management 2012-05-31 15:17:00
## 836               72      NA     education         academia 2012-06-26 23:43:00
## 837               68      NA      medicine           health 2012-06-29 08:06:00
## 838               72  100000      computer        hardware  2012-06-29 12:33:00
## 839               63      NA          other            <NA> 2012-06-29 21:47:00
## 840               69      NA     executive       management 2012-06-29 15:37:00
## 841               75      NA      medicine           health 2012-06-29 17:40:00
## 842               66      NA       banking       financial  2012-06-29 10:47:00
## 843               72      NA           <NA>            <NA> 2012-06-27 23:53:00
## 844               70      NA         sales       marketing  2011-09-04 23:16:00
## 845               74      NA      computer        hardware  2012-06-27 09:25:00
## 846               72      NA      computer        hardware  2011-10-15 17:43:00
## 847               68      NA          other            <NA> 2012-06-29 00:16:00
## 848               69  150000       science            tech  2012-06-29 23:19:00
## 849               65      NA      medicine           health 2012-06-30 00:43:00
## 850               71      NA       science            tech  2012-06-29 19:46:00
## 851               64      NA          other            <NA> 2012-06-29 09:16:00
## 852               72      NA      artistic         musical  2012-06-25 11:02:00
## 853               70  100000       science            tech  2012-01-27 22:56:00
## 854               70   20000        student            <NA> 2012-04-26 18:20:00
## 855               69      NA      medicine           health 2012-06-25 16:38:00
## 856               67      NA       science            tech  2012-06-23 11:13:00
## 857               64      NA      computer        hardware  2012-06-15 22:51:00
## 858               68  150000           law   legal services 2012-06-25 20:34:00
## 859               73   30000          other            <NA> 2012-06-05 17:43:00
## 860               66      NA      medicine           health 2012-06-23 18:03:00
## 861               61      NA           <NA>            <NA> 2011-12-05 22:49:00
## 862               76      NA      artistic         musical  2012-06-29 19:38:00
## 863               75      NA      computer        hardware  2012-06-29 08:46:00
## 864               72      NA      computer        hardware  2012-06-25 23:06:00
## 865               70      NA          other            <NA> 2012-06-28 13:32:00
## 866               66      NA           law   legal services 2012-06-29 17:09:00
## 867               69      NA      computer        hardware  2012-06-29 17:31:00
## 868               63      NA       science            tech  2012-05-31 23:25:00
## 869               66      NA        student            <NA> 2012-06-30 00:44:00
## 870               68   30000      artistic         musical  2012-06-19 09:15:00
## 871               73      NA       science            tech  2012-06-28 21:45:00
## 872               73  100000           <NA>            <NA> 2012-06-18 01:22:00
## 873               64      NA entertainment            media 2012-06-26 22:38:00
## 874               68      NA         sales       marketing  2012-06-28 23:15:00
## 875               68      NA           <NA>            <NA> 2012-06-29 19:20:00
## 876               67      NA          other            <NA> 2012-06-30 00:45:00
## 877               67  100000      computer        hardware  2012-06-29 22:51:00
## 878               70      NA       science            tech  2012-06-27 22:16:00
## 879               63   50000      medicine           health 2012-06-20 13:38:00
## 880               72      NA       science            tech  2012-06-20 07:54:00
## 881               72      NA          other            <NA> 2012-06-28 15:45:00
## 882               67      NA       banking       financial  2012-06-21 19:23:00
## 883               66      NA        student            <NA> 2012-04-13 13:49:00
## 884               63      NA           <NA>            <NA> 2012-02-22 21:55:00
## 885               73  150000       science            tech  2012-06-30 00:45:00
## 886               65      NA           <NA>            <NA> 2012-06-20 23:35:00
## 887               76      NA       science            tech  2012-06-21 19:29:00
## 888               66      NA          other            <NA> 2012-06-02 10:55:00
## 889               74      NA     education         academia 2011-12-20 20:19:00
## 890               65      NA      medicine           health 2012-06-23 10:14:00
## 891               71      NA        student            <NA> 2012-06-27 19:07:00
## 892               68      NA     executive       management 2012-06-25 08:02:00
## 893               70      NA       science            tech  2012-06-29 23:22:00
## 894               62      NA          other            <NA> 2012-06-19 22:38:00
## 895               65   20000   hospitality           travel 2011-10-17 12:42:00
## 896               67      NA     education         academia 2011-08-15 09:48:00
## 897               64      NA      artistic         musical  2012-04-16 22:50:00
## 898               62      NA        student            <NA> 2012-06-29 11:49:00
## 899               66      NA     political       government 2012-06-28 17:54:00
## 900               70      NA           <NA>            <NA> 2012-06-30 00:46:00
## 901               66   20000         sales       marketing  2012-05-13 08:54:00
## 902               67      NA        student            <NA> 2012-04-07 16:10:00
## 903               72      NA entertainment            media 2012-06-29 19:46:00
## 904               67      NA          other            <NA> 2012-06-28 16:07:00
## 905               73      NA     education         academia 2012-06-28 13:31:00
## 906               65      NA     executive       management 2012-06-29 18:35:00
## 907               72      NA           <NA>            <NA> 2012-06-29 21:58:00
## 908               66      NA           <NA>            <NA> 2012-06-28 21:45:00
## 909               67      NA      medicine           health 2012-06-29 22:28:00
## 910               58      NA          other            <NA> 2012-06-29 16:14:00
## 911               62      NA          other            <NA> 2012-06-28 18:45:00
## 912               69      NA      computer        hardware  2012-06-29 16:52:00
## 913               72      NA      computer        hardware  2012-06-06 20:08:00
## 914               67   50000     education         academia 2012-04-17 22:46:00
## 915               70      NA          other            <NA> 2012-06-29 17:51:00
## 916               64   40000 entertainment            media 2012-06-29 19:52:00
## 917               70      NA           <NA>            <NA> 2012-06-28 21:28:00
## 918               66      NA       science            tech  2012-06-29 20:53:00
## 919               70      NA       science            tech  2012-06-28 03:21:00
## 920               64      NA      artistic         musical  2012-06-18 21:02:00
## 921               70      NA rather not say            <NA> 2012-06-21 13:44:00
## 922               66      NA           <NA>            <NA> 2012-06-18 14:00:00
## 923               69      NA         sales       marketing  2012-06-29 08:41:00
## 924               73   80000      computer        hardware  2012-06-24 18:00:00
## 925               65      NA           <NA>            <NA> 2012-06-28 22:12:00
## 926               66      NA           <NA>            <NA> 2012-06-13 18:06:00
## 927               72      NA           <NA>            <NA> 2012-03-26 21:36:00
## 928               66      NA         sales       marketing  2012-05-20 09:45:00
## 929               61      NA           <NA>            <NA> 2012-06-23 22:44:00
## 930               67      NA       science            tech  2012-06-27 00:30:00
## 931               74      NA      computer        hardware  2012-06-29 14:38:00
## 932               64      NA      computer        hardware  2012-05-31 22:16:00
## 933               74      NA       science            tech  2012-06-29 19:56:00
## 934               67      NA           <NA>            <NA> 2012-06-28 17:46:00
## 935               68  100000      computer        hardware  2012-06-17 19:06:00
## 936               70  100000       science            tech  2012-06-29 22:01:00
## 937               65      NA       science            tech  2012-06-27 21:14:00
## 938               71 1000000     unemployed            <NA> 2012-02-25 08:57:00
## 939               64      NA      artistic         musical  2012-06-29 22:20:00
## 940               67      NA           <NA>            <NA> 2012-06-28 09:33:00
## 941               64      NA      medicine           health 2012-06-30 00:48:00
## 942               66      NA           <NA>            <NA> 2012-06-29 22:56:00
## 943               71 1000000      artistic         musical  2012-01-18 14:05:00
## 944               67      NA       science            tech  2012-03-04 20:42:00
## 945               73   80000      artistic         musical  2012-06-29 00:02:00
## 946               66  150000      computer        hardware  2012-06-27 14:25:00
## 947               74      NA       science            tech  2012-06-28 18:19:00
## 948               67      NA      artistic         musical  2012-06-20 01:23:00
## 949               66      NA           <NA>            <NA> 2012-04-26 17:05:00
## 950               71   40000           <NA>            <NA> 2012-06-27 14:37:00
## 951               69      NA      computer        hardware  2012-06-29 22:51:00
## 952               71      NA      computer        hardware  2012-06-26 18:11:00
## 953               68      NA         sales       marketing  2012-06-30 00:49:00
## 954               61      NA      artistic         musical  2012-06-29 19:20:00
## 955               75      NA           <NA>            <NA> 2012-06-29 00:18:00
## 956               66      NA           <NA>            <NA> 2012-06-30 00:49:00
## 957               74      NA  construction    craftsmanship 2012-04-29 07:23:00
## 958               69   20000      artistic         musical  2012-06-19 09:44:00
## 959               62      NA           <NA>            <NA> 2012-03-17 08:53:00
## 960               65      NA        student            <NA> 2012-02-26 22:51:00
## 961               60      NA     education         academia 2012-06-27 23:06:00
## 962               74      NA      computer        hardware  2012-06-26 01:24:00
## 963               68      NA           <NA>            <NA> 2012-06-29 09:05:00
## 964               64      NA     education         academia 2012-06-29 08:49:00
## 965               73   20000        student            <NA> 2012-06-28 00:27:00
## 966               64      NA       science            tech  2012-06-20 00:19:00
## 967               67      NA         sales       marketing  2012-05-16 00:04:00
## 968               73   60000     political       government 2012-06-28 15:27:00
## 969               66      NA      medicine           health 2012-06-28 12:57:00
## 970               60   20000      artistic         musical  2012-06-29 22:32:00
## 971               70      NA  construction    craftsmanship 2012-06-29 14:24:00
## 972               69      NA  construction    craftsmanship 2012-06-27 09:40:00
## 973               67      NA      artistic         musical  2012-06-29 17:25:00
## 974               72      NA      artistic         musical  2012-06-03 20:58:00
## 975               71      NA      computer        hardware  2012-06-11 10:42:00
## 976               65      NA         sales       marketing  2012-06-29 18:51:00
## 977               72      NA     political       government 2012-05-16 23:26:00
## 978               65      NA        student            <NA> 2012-06-26 13:20:00
## 979               71      NA       science            tech  2012-03-13 22:16:00
## 980               66      NA           law   legal services 2012-06-29 19:59:00
## 981               69      NA       science            tech  2012-06-29 08:19:00
## 982               66      NA        student            <NA> 2012-06-29 22:12:00
## 983               74      NA  construction    craftsmanship 2012-06-07 21:14:00
## 984               73      NA           <NA>            <NA> 2012-06-29 17:29:00
## 985               64      NA     education         academia 2012-06-29 10:43:00
## 986               64      NA       banking       financial  2012-06-29 13:06:00
## 987               70      NA          other            <NA> 2012-06-29 18:00:00
## 988               66      NA       science            tech  2012-06-26 10:53:00
## 989               74      NA          other            <NA> 2012-06-26 18:58:00
## 990               66      NA        student            <NA> 2012-06-29 20:48:00
## 991               66      NA        student            <NA> 2012-06-21 17:56:00
## 992               68      NA       science            tech  2012-06-29 07:59:00
## 993               61   20000          other            <NA> 2012-02-19 00:13:00
## 994               68      NA           <NA>            <NA> 2012-06-29 23:30:00
## 995               72      NA entertainment            media 2012-06-29 01:02:00
## 996               72      NA entertainment            media 2012-06-29 03:12:00
## 997               67  150000      computer        hardware  2012-06-27 08:25:00
## 998               59      NA           <NA>            <NA> 2012-06-29 14:30:00
## 999               68      NA          other            <NA> 2012-01-15 10:48:00
## 1000              65      NA          other            <NA> 2012-06-25 22:12:00
## 1001              66      NA     education         academia 2012-06-27 22:11:00
## 1002              74      NA       science            tech  2012-06-26 13:39:00
## 1003              67      NA          other            <NA> 2012-06-29 00:49:00
## 1004              72      NA     executive       management 2012-06-29 22:45:00
## 1005              71      NA       science            tech  2012-06-29 23:28:00
## 1006              66      NA        student            <NA> 2011-10-17 23:35:00
## 1007              66  100000       science            tech  2012-04-10 00:37:00
## 1008              67  100000 entertainment            media 2012-06-29 18:38:00
## 1009              67      NA      medicine           health 2012-06-29 21:42:00
## 1010              64      NA     executive       management 2012-06-26 17:08:00
## 1011              71      NA       science            tech  2012-05-01 10:55:00
## 1012              72      NA         sales       marketing  2012-06-26 10:09:00
## 1013              64      NA     education         academia 2012-06-30 00:52:00
## 1014              69      NA     executive       management 2012-05-30 12:32:00
## 1015              62      NA       science            tech  2012-06-29 14:41:00
## 1016              67      NA           <NA>            <NA> 2012-06-17 23:27:00
## 1017              69      NA       science            tech  2012-06-27 00:07:00
## 1018              70      NA      artistic         musical  2012-06-26 00:28:00
## 1019              70      NA           <NA>            <NA> 2012-06-29 01:04:00
## 1020              72      NA     education         academia 2012-06-29 15:34:00
## 1021              69      NA          other            <NA> 2012-06-29 16:28:00
## 1022              67   50000          other            <NA> 2012-06-26 10:44:00
## 1023              74      NA           <NA>            <NA> 2012-06-29 20:57:00
## 1024              72      NA           <NA>            <NA> 2012-06-25 11:26:00
## 1025              72      NA           <NA>            <NA> 2012-06-28 22:49:00
## 1026              71      NA      computer        hardware  2012-06-29 22:19:00
## 1027              67      NA     executive       management 2012-06-19 22:49:00
## 1028              71      NA         sales       marketing  2012-06-28 21:54:00
## 1029              66   70000      computer        hardware  2012-06-28 09:25:00
## 1030              70   60000      computer        hardware  2012-06-24 23:19:00
## 1031              65      NA     education         academia 2012-06-26 00:19:00
## 1032              67      NA      computer        hardware  2012-05-20 23:40:00
## 1033              69      NA      computer        hardware  2012-06-05 22:33:00
## 1034              71  150000      computer        hardware  2012-06-29 23:13:00
## 1035              65   80000      computer        hardware  2012-06-29 21:35:00
## 1036              66      NA      computer        hardware  2012-06-20 21:19:00
## 1037              70 1000000      artistic         musical  2012-06-29 17:09:00
## 1038              71      NA       science            tech  2012-06-29 22:09:00
## 1039              69      NA      computer        hardware  2012-06-30 00:54:00
## 1040              62      NA       banking       financial  2012-06-28 22:45:00
## 1041              65      NA      artistic         musical  2012-06-28 18:43:00
## 1042              64      NA      medicine           health 2012-06-26 22:34:00
## 1043              71      NA      computer        hardware  2012-06-26 11:59:00
## 1044              66      NA         sales       marketing  2012-06-27 18:57:00
## 1045              65   20000           <NA>            <NA> 2011-10-17 22:24:00
## 1046              66      NA       science            tech  2012-06-28 23:47:00
## 1047              60      NA       science            tech  2012-06-29 22:48:00
## 1048              72      NA      computer        hardware  2012-06-24 02:14:00
## 1049              76      NA           <NA>            <NA> 2012-06-29 23:21:00
## 1050              68      NA         sales       marketing  2012-06-29 14:08:00
## 1051              66      NA        student            <NA> 2012-03-28 12:24:00
## 1052              62      NA       science            tech  2011-08-28 22:30:00
## 1053              64      NA       science            tech  2012-06-29 11:16:00
## 1054              67      NA      artistic         musical  2012-06-29 18:51:00
## 1055              72      NA      computer        hardware  2012-06-28 18:14:00
## 1056              73      NA           law   legal services 2012-06-30 00:55:00
## 1057              74      NA      medicine           health 2012-06-29 23:44:00
## 1058              63      NA        student            <NA> 2012-06-26 08:49:00
## 1059              68      NA     political       government 2012-06-29 16:39:00
## 1060              65      NA           law   legal services 2011-11-07 19:47:00
## 1061              73      NA           <NA>            <NA> 2012-06-29 23:36:00
## 1062              65      NA entertainment            media 2012-06-29 17:32:00
## 1063              72  100000       science            tech  2012-06-29 17:08:00
## 1064              66      NA           <NA>            <NA> 2012-06-29 08:07:00
## 1065              75  100000      computer        hardware  2012-06-29 09:51:00
## 1066              64      NA     executive       management 2012-06-16 09:22:00
## 1067              67      NA         sales       marketing  2012-06-22 00:25:00
## 1068              62      NA          other            <NA> 2012-06-29 15:21:00
## 1069              68   40000       science            tech  2012-05-10 17:34:00
## 1070              75  250000 entertainment            media 2012-06-28 09:41:00
## 1071              70      NA       science            tech  2012-06-26 00:00:00
## 1072              68      NA           <NA>            <NA> 2012-06-28 15:13:00
## 1073              75      NA           <NA>            <NA> 2012-06-26 05:28:00
## 1074              66      NA      computer        hardware  2012-06-20 16:45:00
## 1075              72   50000      medicine           health 2012-04-20 07:49:00
## 1076              66      NA     education         academia 2011-08-03 09:16:00
## 1077              66  100000      computer        hardware  2012-06-28 13:26:00
## 1078              74      NA     education         academia 2012-06-29 21:31:00
## 1079              68      NA      computer        hardware  2012-06-20 22:03:00
## 1080              66      NA      computer        hardware  2012-06-27 15:30:00
## 1081              68      NA           <NA>            <NA> 2012-06-29 19:22:00
## 1082              61      NA          other            <NA> 2012-06-30 00:56:00
## 1083              66      NA         sales       marketing  2012-06-29 23:16:00
## 1084              72      NA           <NA>            <NA> 2012-06-29 23:30:00
## 1085              64      NA     political       government 2012-06-15 11:54:00
## 1086              67      NA       science            tech  2012-03-02 21:40:00
## 1087              68   20000          other            <NA> 2012-06-29 03:24:00
## 1088              73      NA      artistic         musical  2011-12-12 02:02:00
## 1089              63      NA     executive       management 2012-06-08 17:40:00
## 1090              68      NA          other            <NA> 2011-12-17 23:52:00
## 1091              70      NA           <NA>            <NA> 2012-06-28 09:18:00
## 1092              67      NA entertainment            media 2012-06-29 14:24:00
## 1093              69      NA           <NA>            <NA> 2012-04-28 03:35:00
## 1094              67      NA        student            <NA> 2012-06-28 19:20:00
## 1095              67      NA     education         academia 2012-06-29 17:39:00
## 1096              72      NA      computer        hardware  2012-06-29 23:22:00
## 1097              69      NA       science            tech  2012-06-29 21:37:00
## 1098              74  100000           <NA>            <NA> 2012-06-29 18:11:00
## 1099              72      NA           <NA>            <NA> 2012-02-21 15:13:00
## 1100              71      NA           <NA>            <NA> 2012-06-27 17:52:00
## 1101              72      NA          other            <NA> 2012-06-28 12:35:00
## 1102              74  150000           <NA>            <NA> 2012-06-29 16:50:00
## 1103              66      NA           law   legal services 2012-02-29 12:40:00
## 1104              72      NA      computer        hardware  2012-06-24 17:54:00
## 1105              63  100000          other            <NA> 2012-06-29 22:23:00
## 1106              70      NA          other            <NA> 2012-06-29 19:00:00
## 1107              73      NA      computer        hardware  2012-06-29 16:31:00
## 1108              67      NA       banking       financial  2012-06-29 07:25:00
## 1109              67      NA        retired            <NA> 2012-06-04 21:24:00
## 1110              65   20000          other            <NA> 2011-11-02 16:39:00
## 1111              69      NA        student            <NA> 2012-06-30 00:58:00
## 1112              68   20000     unemployed            <NA> 2012-06-29 11:44:00
## 1113              67      NA     education         academia 2012-06-23 04:29:00
## 1114              70      NA      computer        hardware  2012-06-29 16:12:00
## 1115              73      NA       science            tech  2012-06-12 23:39:00
## 1116              74      NA       science            tech  2012-06-29 23:27:00
## 1117              76      NA       science            tech  2012-06-28 02:23:00
## 1118              68      NA          other            <NA> 2012-06-29 21:02:00
## 1119              63      NA      medicine           health 2012-06-28 21:40:00
## 1120              71      NA         sales       marketing  2012-05-29 01:40:00
## 1121              73      NA      artistic         musical  2012-06-30 00:58:00
## 1122              67      NA entertainment            media 2011-08-21 07:51:00
## 1123              68      NA           law   legal services 2012-06-28 22:47:00
## 1124              69  150000           <NA>            <NA> 2011-09-27 15:35:00
## 1125              69      NA           <NA>            <NA> 2011-11-05 23:41:00
## 1126              71      NA       science            tech  2012-06-28 21:54:00
## 1127              75  250000           <NA>            <NA> 2012-06-12 07:23:00
## 1128              67      NA      computer        hardware  2012-06-29 02:09:00
## 1129              69  100000      computer        hardware  2012-05-29 08:09:00
## 1130              67      NA           law   legal services 2011-10-17 15:41:00
## 1131              71   80000 entertainment            media 2012-06-29 17:39:00
## 1132              62      NA          other            <NA> 2012-06-24 04:57:00
## 1133              71  150000       science            tech  2012-06-30 00:59:00
## 1134              66   20000     education         academia 2012-05-18 00:57:00
## 1135              64   30000         sales       marketing  2012-06-21 01:33:00
## 1136              65      NA           law   legal services 2012-06-26 21:23:00
## 1137              70      NA       science            tech  2012-06-28 09:32:00
## 1138              66      NA      artistic         musical  2012-06-29 05:24:00
## 1139              70      NA  construction    craftsmanship 2012-06-29 22:40:00
## 1140              71  100000          other            <NA> 2012-06-29 15:23:00
## 1141              69      NA           law   legal services 2012-06-28 16:59:00
## 1142              70      NA     executive       management 2012-06-29 20:17:00
## 1143              63      NA         sales       marketing  2012-06-28 23:39:00
## 1144              70      NA      medicine           health 2012-03-31 01:09:00
## 1145              68  100000     executive       management 2012-06-29 22:48:00
## 1146              71      NA          other            <NA> 2012-06-29 19:49:00
## 1147              72      NA           law   legal services 2012-06-28 20:25:00
## 1148              64      NA      clerical   administrative 2012-06-24 15:40:00
## 1149              64      NA           <NA>            <NA> 2012-06-20 21:07:00
## 1150              67      NA       science            tech  2012-05-07 16:29:00
## 1151              69      NA         sales       marketing  2012-06-29 19:20:00
## 1152              68      NA      artistic         musical  2012-01-27 01:18:00
## 1153              71      NA      computer        hardware  2012-06-30 01:00:00
## 1154              71   20000        student            <NA> 2012-05-29 22:01:00
## 1155              72      NA          other            <NA> 2012-05-29 10:32:00
## 1156              71      NA       science            tech  2012-06-29 07:20:00
## 1157              64      NA           <NA>            <NA> 2012-02-24 16:30:00
## 1158              71   20000        student            <NA> 2012-06-28 06:34:00
## 1159              73   30000   hospitality           travel 2012-06-29 19:09:00
## 1160              70      NA       banking       financial  2011-10-02 13:43:00
## 1161              69      NA   hospitality           travel 2012-04-24 20:35:00
## 1162              69   70000     political       government 2011-10-02 19:12:00
## 1163              68      NA           law   legal services 2011-06-27 16:17:00
## 1164              71      NA      medicine           health 2012-01-13 22:11:00
## 1165              68      NA entertainment            media 2012-06-29 21:01:00
## 1166              72      NA          other            <NA> 2012-02-23 01:53:00
## 1167              69   30000         sales       marketing  2012-06-29 08:32:00
## 1168              67      NA         sales       marketing  2012-06-27 05:23:00
## 1169              62      NA entertainment            media 2012-06-27 22:25:00
## 1170              66      NA          other            <NA> 2012-06-29 09:48:00
## 1171              70      NA           <NA>            <NA> 2012-06-28 14:27:00
## 1172              71      NA      computer        hardware  2011-09-11 02:34:00
## 1173              69  250000     executive       management 2012-06-29 16:06:00
## 1174              67      NA      artistic         musical  2012-06-28 18:35:00
## 1175              64      NA     executive       management 2012-03-16 11:33:00
## 1176              71      NA      clerical   administrative 2012-06-28 22:12:00
## 1177              65      NA          other            <NA> 2012-06-30 01:01:00
## 1178              70   80000      computer        hardware  2012-06-27 13:49:00
## 1179              61      NA      medicine           health 2012-06-28 21:37:00
## 1180              67   20000          other            <NA> 2012-03-05 12:30:00
## 1181              75      NA      computer        hardware  2012-06-29 18:31:00
## 1182              65      NA           <NA>            <NA> 2012-06-23 10:03:00
## 1183              74      NA      computer        hardware  2012-06-30 01:02:00
## 1184              62      NA          other            <NA> 2012-06-26 18:54:00
## 1185              67   50000     education         academia 2012-06-29 17:04:00
## 1186              63      NA      artistic         musical  2012-06-22 06:00:00
## 1187              74   50000      medicine           health 2012-06-11 13:08:00
## 1188              59      NA        student            <NA> 2012-06-29 22:56:00
## 1189              65      NA          other            <NA> 2012-04-02 23:07:00
## 1190              62      NA      medicine           health 2012-06-29 14:17:00
## 1191              63      NA           <NA>            <NA> 2012-06-29 02:21:00
## 1192              70   40000       science            tech  2012-06-21 22:56:00
## 1193              69      NA           <NA>            <NA> 2012-04-25 00:48:00
## 1194              66      NA     education         academia 2012-06-25 07:32:00
## 1195              71   20000        student            <NA> 2012-06-25 10:36:00
## 1196              70   80000      computer        hardware  2012-06-29 09:22:00
## 1197              73      NA          other            <NA> 2012-06-20 11:52:00
## 1198              69      NA      artistic         musical  2012-06-29 23:21:00
## 1199              73      NA           <NA>            <NA> 2012-06-29 17:42:00
## 1200              71      NA           <NA>            <NA> 2012-06-09 23:22:00
## 1201              71      NA      artistic         musical  2012-06-29 12:57:00
## 1202              71      NA        student            <NA> 2012-01-26 22:01:00
## 1203              76      NA      computer        hardware  2012-06-25 12:49:00
## 1204              71   50000      artistic         musical  2012-06-29 22:55:00
## 1205              71      NA      artistic         musical  2012-06-29 11:20:00
## 1206              72      NA      artistic         musical  2012-06-29 21:39:00
## 1207              72      NA          other            <NA> 2012-06-29 20:49:00
## 1208              74      NA           <NA>            <NA> 2012-05-24 18:32:00
## 1209              73      NA      computer        hardware  2012-06-29 14:53:00
## 1210              67      NA       science            tech  2012-06-29 18:29:00
## 1211              73      NA       banking       financial  2012-06-29 21:40:00
## 1212              66   20000          other            <NA> 2012-06-27 13:56:00
## 1213              69      NA      computer        hardware  2012-06-05 13:13:00
## 1214              72      NA       science            tech  2012-06-28 20:46:00
## 1215              69      NA       science            tech  2012-03-15 10:53:00
## 1216              71   80000       science            tech  2011-11-18 18:17:00
## 1217              72      NA      computer        hardware  2012-06-25 15:16:00
## 1218              72      NA         sales       marketing  2012-06-29 14:59:00
## 1219              71   30000     political       government 2012-06-28 10:55:00
## 1220              70      NA  construction    craftsmanship 2012-06-24 22:35:00
## 1221              68   80000      computer        hardware  2012-06-21 10:03:00
## 1222              68   20000 rather not say            <NA> 2012-06-17 11:20:00
## 1223              70   20000          other            <NA> 2012-06-29 18:21:00
## 1224              70      NA      artistic         musical  2012-05-17 11:01:00
## 1225              72 1000000     executive       management 2012-06-29 22:47:00
## 1226              66      NA          other            <NA> 2012-06-29 19:57:00
## 1227              71   20000           <NA>            <NA> 2012-06-27 12:15:00
## 1228              68      NA           law   legal services 2012-06-20 15:25:00
## 1229              71      NA      artistic         musical  2012-03-12 23:20:00
## 1230              77      NA        student            <NA> 2011-08-25 21:44:00
## 1231              70   50000       science            tech  2012-06-27 11:28:00
## 1232              66      NA           <NA>            <NA> 2012-06-29 00:12:00
## 1233              68      NA           law   legal services 2012-06-29 22:53:00
## 1234              67      NA           <NA>            <NA> 2012-06-25 16:19:00
## 1235              74      NA       science            tech  2012-06-28 21:32:00
## 1236              72      NA         sales       marketing  2012-06-29 21:05:00
## 1237              72   20000         sales       marketing  2012-06-12 01:56:00
## 1238              73      NA   hospitality           travel 2012-06-29 17:23:00
## 1239              71      NA       banking       financial  2012-06-17 10:19:00
## 1240              72   40000  construction    craftsmanship 2012-06-27 12:23:00
## 1241              68      NA        student            <NA> 2012-03-31 15:41:00
## 1242              72  100000      computer        hardware  2012-06-26 22:15:00
## 1243              70      NA           <NA>            <NA> 2012-05-25 02:11:00
## 1244              72      NA     executive       management 2012-06-29 09:30:00
## 1245              69      NA      artistic         musical  2012-06-29 23:57:00
## 1246              71      NA           <NA>            <NA> 2012-06-29 01:34:00
## 1247              69      NA        student            <NA> 2012-05-24 19:09:00
## 1248              70      NA      computer        hardware  2012-03-11 11:10:00
## 1249              71      NA      medicine           health 2012-06-28 01:02:00
## 1250              70      NA     executive       management 2012-06-18 17:36:00
## 1251              78      NA     education         academia 2012-06-25 02:25:00
## 1252              70   80000           law   legal services 2012-06-06 10:36:00
## 1253              69      NA           <NA>            <NA> 2012-06-03 19:26:00
## 1254              67      NA           <NA>            <NA> 2012-06-29 22:36:00
## 1255              65      NA          other            <NA> 2012-05-29 19:46:00
## 1256              71      NA       science            tech  2012-05-07 02:22:00
## 1257              66  100000     executive       management 2012-06-30 01:05:00
## 1258              66      NA         sales       marketing  2012-06-26 16:06:00
## 1259              69   20000         sales       marketing  2012-06-26 12:19:00
## 1260              67 1000000      medicine           health 2011-12-31 17:32:00
## 1261              72      NA       banking       financial  2011-11-01 10:17:00
## 1262              66      NA           law   legal services 2012-06-29 21:12:00
## 1263              72      NA       banking       financial  2012-06-22 19:06:00
## 1264              73      NA           <NA>            <NA> 2011-08-04 10:55:00
## 1265              75      NA      computer        hardware  2012-06-28 08:13:00
## 1266              71      NA         sales       marketing  2012-06-28 14:03:00
## 1267              63      NA          other            <NA> 2012-06-28 11:22:00
## 1268              71      NA     executive       management 2012-06-29 18:17:00
## 1269              70      NA       science            tech  2012-06-25 07:31:00
## 1270              71      NA          other            <NA> 2012-06-19 15:39:00
## 1271              68      NA           <NA>            <NA> 2012-06-27 13:34:00
## 1272              64      NA      medicine           health 2012-06-30 01:06:00
## 1273              62      NA      medicine           health 2012-06-29 17:45:00
## 1274              62      NA      artistic         musical  2011-11-30 16:09:00
## 1275              69      NA      artistic         musical  2012-06-27 13:56:00
## 1276              66      NA           <NA>            <NA> 2012-06-29 22:00:00
## 1277              69      NA          other            <NA> 2012-06-27 10:23:00
## 1278              63      NA      medicine           health 2012-06-28 07:28:00
## 1279              66      NA     education         academia 2012-06-29 23:14:00
## 1280              67      NA     education         academia 2012-06-28 18:29:00
## 1281              66      NA     education         academia 2012-06-29 23:01:00
## 1282              70   80000      computer        hardware  2012-06-29 21:00:00
## 1283              68 1000000      artistic         musical  2012-06-29 22:39:00
## 1284              66      NA        student            <NA> 2012-06-29 20:34:00
## 1285              63      NA     education         academia 2012-06-28 10:25:00
## 1286              68      NA           <NA>            <NA> 2012-06-29 20:25:00
## 1287              66      NA      medicine           health 2012-06-30 01:07:00
## 1288              69      NA rather not say            <NA> 2012-05-18 01:01:00
## 1289              69      NA      clerical   administrative 2012-06-29 22:06:00
## 1290              63      NA     executive       management 2012-06-28 20:49:00
## 1291              66      NA           <NA>            <NA> 2012-06-07 21:07:00
## 1292              66      NA      computer        hardware  2012-06-29 07:18:00
## 1293              63      NA     unemployed            <NA> 2011-12-27 18:43:00
## 1294              74      NA          other            <NA> 2011-09-01 09:52:00
## 1295              65      NA           <NA>            <NA> 2012-06-27 06:06:00
## 1296              74      NA           <NA>            <NA> 2012-06-29 00:59:00
## 1297              75      NA          other            <NA> 2012-06-29 02:03:00
## 1298              70   70000 entertainment            media 2011-09-09 17:15:00
## 1299              68      NA         sales       marketing  2012-06-24 22:43:00
## 1300              72   20000        student            <NA> 2012-06-06 21:03:00
## 1301              67      NA          other            <NA> 2012-06-07 21:26:00
## 1302              71   60000      computer        hardware  2012-06-29 23:48:00
## 1303              64      NA        retired            <NA> 2012-02-20 22:41:00
## 1304              71      NA entertainment            media 2012-06-22 13:51:00
## 1305              68      NA       science            tech  2012-06-29 21:11:00
## 1306              71      NA      artistic         musical  2012-06-25 03:20:00
## 1307              72      NA       banking       financial  2011-11-10 13:38:00
## 1308              69      NA       banking       financial  2012-06-29 14:09:00
## 1309              70      NA       science            tech  2012-06-27 10:27:00
## 1310              71      NA       science            tech  2012-06-29 23:06:00
## 1311              73  250000           law   legal services 2012-04-29 22:04:00
## 1312              72      NA     executive       management 2012-06-29 19:14:00
## 1313              72      NA           <NA>            <NA> 2011-11-01 23:53:00
## 1314              72      NA  construction    craftsmanship 2012-06-27 23:45:00
## 1315              66      NA          other            <NA> 2012-06-29 22:58:00
## 1316              69      NA       science            tech  2012-06-11 11:53:00
## 1317              68      NA           <NA>            <NA> 2012-06-29 23:58:00
## 1318              73      NA     unemployed            <NA> 2012-04-01 21:14:00
## 1319              67      NA       science            tech  2012-06-29 19:51:00
## 1320              71      NA     executive       management 2012-06-27 09:03:00
## 1321              72   70000      computer        hardware  2012-06-29 10:52:00
## 1322              68   60000     education         academia 2012-01-27 03:20:00
## 1323              70      NA         sales       marketing  2012-06-22 20:42:00
## 1324              66      NA       banking       financial  2012-04-28 09:29:00
## 1325              68      NA      medicine           health 2012-06-29 23:39:00
## 1326              64      NA         sales       marketing  2012-06-29 17:33:00
## 1327              73      NA           <NA>            <NA> 2012-04-11 23:33:00
## 1328              74      NA           <NA>            <NA> 2012-06-28 11:56:00
## 1329              68      NA       science            tech  2012-06-26 22:41:00
## 1330              70      NA       science            tech  2012-06-26 23:24:00
## 1331              69      NA       science            tech  2012-05-18 00:44:00
## 1332              68      NA       science            tech  2012-03-19 21:39:00
## 1333              68      NA       science            tech  2012-06-03 23:16:00
## 1334              61      NA     education         academia 2012-06-29 12:47:00
## 1335              64      NA      artistic         musical  2012-06-24 19:15:00
## 1336              71      NA      computer        hardware  2012-06-29 10:30:00
## 1337              72  150000       science            tech  2012-06-30 01:09:00
## 1338              68      NA      medicine           health 2012-06-29 19:48:00
## 1339              68      NA          other            <NA> 2012-04-19 09:04:00
## 1340              62   50000          other            <NA> 2012-06-29 20:01:00
## 1341              70      NA       science            tech  2012-06-29 17:49:00
## 1342              67      NA         sales       marketing  2012-06-27 00:38:00
## 1343              64      NA           law   legal services 2012-06-29 16:51:00
## 1344              71      NA      computer        hardware  2012-06-15 14:17:00
## 1345              72      NA         sales       marketing  2012-06-03 20:19:00
## 1346              62      NA           <NA>            <NA> 2012-06-29 12:37:00
## 1347              72      NA         sales       marketing  2012-03-28 07:04:00
## 1348              69      NA  construction    craftsmanship 2012-06-15 13:06:00
## 1349              73      NA      clerical   administrative 2012-04-19 14:00:00
## 1350              59      NA     education         academia 2012-06-29 07:39:00
## 1351              75      NA       science            tech  2011-12-02 21:18:00
## 1352              69      NA     education         academia 2012-06-29 23:08:00
## 1353              70      NA      medicine           health 2012-06-29 23:47:00
## 1354              62      NA         sales       marketing  2012-06-29 15:20:00
## 1355              62      NA          other            <NA> 2012-06-29 20:33:00
## 1356              72   20000          other            <NA> 2012-06-30 00:04:00
## 1357              72      NA          other            <NA> 2012-06-26 15:25:00
## 1358              70      NA        student            <NA> 2012-06-14 16:03:00
## 1359              72   60000       science            tech  2012-06-29 21:00:00
## 1360              70      NA           <NA>            <NA> 2012-06-29 02:30:00
## 1361              70      NA          other            <NA> 2012-06-28 14:38:00
## 1362              64      NA         sales       marketing  2012-06-22 15:44:00
## 1363              72      NA           <NA>            <NA> 2012-06-29 22:32:00
## 1364              63      NA      artistic         musical  2012-06-29 00:08:00
## 1365              75   20000        student            <NA> 2012-06-29 23:16:00
## 1366              77      NA      computer        hardware  2012-06-27 22:55:00
## 1367              72 1000000           <NA>            <NA> 2012-06-28 13:08:00
## 1368              65      NA       banking       financial  2012-06-29 10:19:00
## 1369              60      NA         sales       marketing  2011-07-26 22:49:00
## 1370              68   60000          other            <NA> 2012-06-28 09:46:00
## 1371              65      NA      computer        hardware  2012-04-30 22:36:00
## 1372              72      NA           <NA>            <NA> 2012-06-24 17:08:00
## 1373              58      NA      artistic         musical  2012-06-29 23:11:00
## 1374              69      NA           <NA>            <NA> 2012-06-24 21:53:00
## 1375              70      NA          other            <NA> 2011-07-12 02:50:00
## 1376              65      NA      medicine           health 2012-06-29 22:09:00
## 1377              68      NA entertainment            media 2012-06-22 19:52:00
## 1378              76      NA      artistic         musical  2012-06-26 16:49:00
## 1379              68      NA         sales       marketing  2012-06-29 13:39:00
## 1380              65      NA      artistic         musical  2012-06-19 21:56:00
## 1381              69      NA          other            <NA> 2012-06-29 10:27:00
## 1382              72      NA           <NA>            <NA> 2012-06-29 15:49:00
## 1383              71      NA   hospitality           travel 2012-06-29 18:45:00
## 1384              70  100000         sales       marketing  2012-06-27 20:05:00
## 1385              64      NA      artistic         musical  2012-06-29 15:33:00
## 1386              64      NA       banking       financial  2012-06-29 08:59:00
## 1387              69   20000      computer        hardware  2012-06-04 23:20:00
## 1388              63   30000      artistic         musical  2012-05-27 17:57:00
## 1389              67      NA      medicine           health 2012-05-05 19:57:00
## 1390              62      NA         sales       marketing  2012-06-29 21:59:00
## 1391              68  100000      computer        hardware  2012-02-08 04:42:00
## 1392              65      NA           <NA>            <NA> 2012-06-23 11:39:00
## 1393              68      NA           <NA>            <NA> 2012-06-28 09:41:00
## 1394              70      NA      medicine           health 2012-06-29 16:18:00
## 1395              64      NA     education         academia 2012-06-29 19:19:00
## 1396              73      NA       science            tech  2012-06-15 15:47:00
## 1397              64      NA      artistic         musical  2012-06-29 19:51:00
## 1398              76      NA       banking       financial  2012-06-29 11:23:00
## 1399              66      NA          other            <NA> 2012-06-30 01:12:00
## 1400              71      NA     executive       management 2012-06-26 00:00:00
## 1401              64      NA         sales       marketing  2012-06-22 15:10:00
## 1402              68 1000000        student            <NA> 2011-12-27 19:25:00
## 1403              66      NA      medicine           health 2012-06-29 20:53:00
## 1404              68      NA      clerical   administrative 2011-07-19 01:41:00
## 1405              74      NA           <NA>            <NA> 2012-06-29 23:51:00
## 1406              73  100000      computer        hardware  2012-05-12 02:54:00
## 1407              70   50000          other            <NA> 2012-04-23 13:53:00
## 1408              70      NA           <NA>            <NA> 2012-06-27 22:58:00
## 1409              74      NA        student            <NA> 2012-06-30 01:13:00
## 1410              67      NA     education         academia 2012-06-06 23:34:00
## 1411              67      NA        student            <NA> 2012-06-29 19:29:00
## 1412              65      NA      medicine           health 2012-06-19 22:16:00
## 1413              64      NA        student            <NA> 2012-06-28 06:29:00
## 1414              71   80000     executive       management 2012-06-29 23:31:00
## 1415              64   50000         sales       marketing  2012-06-24 06:48:00
## 1416              68      NA      computer        hardware  2011-08-05 20:36:00
## 1417              69      NA       science            tech  2011-08-13 18:00:00
## 1418              62      NA      medicine           health 2012-06-22 14:31:00
## 1419              65      NA      artistic         musical  2012-05-18 02:07:00
## 1420              68      NA      computer        hardware  2012-06-14 23:19:00
## 1421              65      NA      artistic         musical  2012-06-28 12:52:00
## 1422              72      NA           law   legal services 2012-06-29 11:12:00
## 1423              64      NA     education         academia 2012-06-29 08:38:00
## 1424              68      NA           <NA>            <NA> 2011-09-10 12:25:00
## 1425              72   40000     executive       management 2012-06-24 18:18:00
## 1426              63      NA        student            <NA> 2012-06-29 23:54:00
## 1427              66      NA      medicine           health 2012-06-29 17:24:00
## 1428              67      NA       banking       financial  2012-06-28 22:34:00
## 1429              67      NA       banking       financial  2011-08-24 10:28:00
## 1430              76      NA         sales       marketing  2011-11-17 08:20:00
## 1431              70      NA       science            tech  2012-06-20 11:00:00
## 1432              71      NA       science            tech  2012-06-26 00:21:00
## 1433              73      NA          other            <NA> 2012-06-27 12:24:00
## 1434              70      NA      computer        hardware  2012-05-13 23:01:00
## 1435              67   20000      computer        hardware  2012-06-26 22:05:00
## 1436              72      NA       banking       financial  2012-06-29 00:32:00
## 1437              72      NA       science            tech  2012-06-17 15:42:00
## 1438              68      NA       banking       financial  2012-06-04 00:58:00
## 1439              68      NA      medicine           health 2011-08-15 20:31:00
## 1440              73      NA          other            <NA> 2012-06-29 15:24:00
## 1441              67      NA        student            <NA> 2012-01-04 19:13:00
## 1442              70      NA      artistic         musical  2012-06-29 20:09:00
## 1443              70      NA     executive       management 2012-06-28 21:49:00
## 1444              60      NA           <NA>            <NA> 2011-09-22 12:04:00
## 1445              67      NA       science            tech  2012-03-08 13:41:00
## 1446              65   20000 transportation            <NA> 2011-11-01 22:03:00
## 1447              72  100000     political       government 2012-06-16 10:18:00
## 1448              68      NA           <NA>            <NA> 2012-06-28 20:14:00
## 1449              64      NA       military            <NA> 2011-08-15 22:45:00
## 1450              77      NA     political       government 2012-06-29 22:01:00
## 1451              63      NA        student            <NA> 2012-06-19 15:59:00
## 1452              72   20000          other            <NA> 2012-06-29 13:34:00
## 1453              69      NA          other            <NA> 2012-06-29 23:13:00
## 1454              76      NA     executive       management 2011-07-10 23:16:00
## 1455              68      NA          other            <NA> 2012-06-28 12:56:00
## 1456              71   70000      computer        hardware  2012-06-29 23:40:00
## 1457              70      NA        student            <NA> 2012-02-01 22:16:00
## 1458              67      NA        student            <NA> 2012-05-25 17:11:00
## 1459              68      NA         sales       marketing  2012-06-29 07:31:00
## 1460              72      NA           <NA>            <NA> 2012-06-05 22:31:00
## 1461              64      NA       banking       financial  2012-06-29 09:10:00
## 1462              71   20000        student            <NA> 2012-05-08 20:50:00
## 1463              62      NA        student            <NA> 2012-06-29 14:38:00
## 1464              66      NA         sales       marketing  2012-06-29 17:55:00
## 1465              72      NA   hospitality           travel 2012-06-26 22:37:00
## 1466              69      NA        student            <NA> 2012-06-29 20:07:00
## 1467              66      NA         sales       marketing  2012-04-17 00:43:00
## 1468              70      NA       science            tech  2012-01-31 23:21:00
## 1469              67      NA         sales       marketing  2012-04-29 18:02:00
## 1470              67      NA           <NA>            <NA> 2011-09-15 18:42:00
## 1471              67      NA          other            <NA> 2012-06-07 12:43:00
## 1472              70      NA entertainment            media 2012-06-04 20:35:00
## 1473              63   70000         sales       marketing  2012-06-27 20:29:00
## 1474              70      NA       banking       financial  2012-06-29 06:27:00
## 1475              62      NA      artistic         musical  2012-06-25 06:16:00
## 1476              73      NA          other            <NA> 2012-06-28 08:32:00
## 1477              72   20000 entertainment            media 2012-06-27 14:21:00
## 1478              73  150000           law   legal services 2012-06-29 20:15:00
## 1479              74      NA     executive       management 2012-06-29 23:18:00
## 1480              75      NA entertainment            media 2012-06-29 20:38:00
## 1481              65      NA         sales       marketing  2012-06-29 23:43:00
## 1482              71      NA       banking       financial  2012-02-17 11:34:00
## 1483              60      NA         sales       marketing  2012-06-29 18:31:00
## 1484              72      NA           <NA>            <NA> 2012-06-29 15:12:00
## 1485              70      NA        student            <NA> 2012-01-08 18:07:00
## 1486              66      NA         sales       marketing  2012-06-29 22:51:00
## 1487              66      NA       science            tech  2012-06-29 20:14:00
## 1488              70      NA      computer        hardware  2012-06-19 09:42:00
## 1489              62      NA           <NA>            <NA> 2012-06-29 19:19:00
## 1490              64      NA       banking       financial  2012-06-28 01:20:00
## 1491              68   70000      artistic         musical  2011-10-04 01:18:00
## 1492              65      NA       banking       financial  2012-06-28 18:32:00
## 1493              73      NA     political       government 2012-06-29 21:00:00
## 1494              71      NA        student            <NA> 2012-06-24 10:25:00
## 1495              71      NA      computer        hardware  2012-06-26 18:50:00
## 1496              68      NA        student            <NA> 2012-06-28 00:48:00
## 1497              74      NA      computer        hardware  2012-06-29 23:05:00
## 1498              68   80000      computer        hardware  2012-06-27 18:15:00
## 1499              65      NA     executive       management 2012-06-28 23:56:00
## 1500              77      NA          other            <NA> 2012-06-29 12:43:00
## 1501              67      NA entertainment            media 2012-06-28 13:11:00
## 1502              68      NA      medicine           health 2012-06-29 08:08:00
## 1503              72      NA           <NA>            <NA> 2012-06-29 07:13:00
## 1504              68      NA     executive       management 2012-06-29 21:15:00
## 1505              73      NA     executive       management 2012-06-23 22:37:00
## 1506              65      NA      medicine           health 2012-06-17 10:12:00
## 1507              71   80000       science            tech  2012-03-14 14:45:00
## 1508              67      NA      medicine           health 2012-06-28 22:50:00
## 1509              66      NA      medicine           health 2012-04-23 22:39:00
## 1510              74      NA      medicine           health 2012-06-29 18:47:00
## 1511              70   60000         sales       marketing  2012-06-28 23:03:00
## 1512              71      NA     executive       management 2012-06-27 01:20:00
## 1513              61      NA       science            tech  2012-05-02 23:52:00
## 1514              75      NA     executive       management 2012-06-29 16:54:00
## 1515              73      NA        retired            <NA> 2012-06-29 19:18:00
## 1516              70      NA      computer        hardware  2012-06-29 16:17:00
## 1517              66      NA           <NA>            <NA> 2012-06-13 20:28:00
## 1518              62      NA      medicine           health 2012-05-11 20:06:00
## 1519              64  150000         sales       marketing  2012-05-24 14:54:00
## 1520              74   20000         sales       marketing  2012-06-24 17:55:00
## 1521              72      NA          other            <NA> 2012-06-28 18:02:00
## 1522              68      NA           law   legal services 2012-06-10 21:15:00
## 1523              67      NA      computer        hardware  2012-06-29 16:15:00
## 1524              72      NA      medicine           health 2012-06-29 21:51:00
## 1525              65      NA      computer        hardware  2012-06-30 00:07:00
## 1526              64      NA       banking       financial  2012-06-29 08:48:00
## 1527              76      NA          other            <NA> 2012-06-07 01:05:00
## 1528              69      NA      medicine           health 2012-06-29 23:35:00
## 1529              78      NA     political       government 2012-06-27 23:00:00
## 1530              73      NA          other            <NA> 2012-06-29 22:00:00
## 1531              70      NA     education         academia 2011-08-20 17:55:00
## 1532              71      NA       science            tech  2012-06-27 10:08:00
## 1533              69      NA       science            tech  2012-06-28 14:18:00
## 1534              69      NA          other            <NA> 2011-11-23 13:24:00
## 1535              71      NA       science            tech  2012-04-03 23:17:00
## 1536              68      NA      computer        hardware  2012-04-28 23:39:00
## 1537              68      NA   hospitality           travel 2012-06-25 11:25:00
## 1538              74      NA      artistic         musical  2012-06-25 09:39:00
## 1539              67      NA           <NA>            <NA> 2012-03-04 00:34:00
## 1540              63      NA           <NA>            <NA> 2011-12-03 21:32:00
## 1541              70      NA          other            <NA> 2012-06-25 19:25:00
## 1542              70      NA      computer        hardware  2012-06-27 23:39:00
## 1543              67      NA     executive       management 2012-06-29 03:15:00
## 1544              71      NA         sales       marketing  2012-06-29 21:44:00
## 1545              66      NA     education         academia 2012-05-21 20:20:00
## 1546              72   30000          other            <NA> 2012-06-29 20:40:00
## 1547              63      NA  construction    craftsmanship 2012-06-28 21:29:00
## 1548              70   20000      artistic         musical  2012-06-26 09:23:00
## 1549              69      NA      medicine           health 2012-06-29 18:34:00
## 1550              75      NA entertainment            media 2012-06-29 22:58:00
## 1551              68      NA          other            <NA> 2012-06-29 20:38:00
## 1552              68      NA        student            <NA> 2011-12-05 19:17:00
## 1553              69   70000           <NA>            <NA> 2012-06-29 19:38:00
## 1554              70      NA         sales       marketing  2012-06-26 22:00:00
## 1555              73      NA           <NA>            <NA> 2012-06-29 19:49:00
## 1556              72      NA       banking       financial  2012-06-29 12:14:00
## 1557              71      NA      computer        hardware  2012-06-29 15:18:00
## 1558              68      NA      computer        hardware  2012-06-28 12:49:00
## 1559              72   30000         sales       marketing  2012-03-21 11:21:00
## 1560              72   30000         sales       marketing  2012-06-13 12:36:00
## 1561              71   60000      computer        hardware  2012-05-23 06:36:00
## 1562              72      NA       banking       financial  2012-06-30 01:21:00
## 1563              67   50000          other            <NA> 2012-04-07 19:48:00
## 1564              72      NA      computer        hardware  2012-06-16 14:06:00
## 1565              72      NA           <NA>            <NA> 2012-06-27 12:31:00
## 1566              68   30000   hospitality           travel 2012-06-14 13:10:00
## 1567              71      NA       banking       financial  2012-06-29 17:22:00
## 1568              70      NA        student            <NA> 2012-06-30 01:21:00
## 1569              70   20000        student            <NA> 2012-05-22 21:10:00
## 1570              70      NA           <NA>            <NA> 2012-06-07 22:46:00
## 1571              67      NA        student            <NA> 2012-06-29 20:35:00
## 1572              71      NA      artistic         musical  2012-06-21 20:55:00
## 1573              68      NA entertainment            media 2012-06-29 10:23:00
## 1574              70      NA   hospitality           travel 2012-06-29 23:25:00
## 1575              66      NA      medicine           health 2012-06-29 01:14:00
## 1576              75      NA       science            tech  2012-06-28 21:54:00
## 1577              78      NA      computer        hardware  2012-06-28 21:24:00
## 1578              72  100000       banking       financial  2012-06-29 19:09:00
## 1579              66      NA       science            tech  2012-06-25 21:12:00
## 1580              73   40000 entertainment            media 2012-06-30 01:22:00
## 1581              70      NA     executive       management 2012-04-16 20:35:00
## 1582              71   50000 transportation            <NA> 2012-04-05 09:18:00
## 1583              71      NA      medicine           health 2012-06-29 18:50:00
## 1584              72      NA      medicine           health 2012-05-17 09:02:00
## 1585              76      NA      artistic         musical  2012-06-15 01:14:00
## 1586              73      NA         sales       marketing  2011-11-06 18:34:00
## 1587              70      NA          other            <NA> 2012-06-30 01:22:00
## 1588              72      NA       banking       financial  2012-06-27 13:15:00
## 1589              70      NA       science            tech  2012-06-29 08:25:00
## 1590              72      NA          other            <NA> 2012-06-09 19:21:00
## 1591              72 1000000         sales       marketing  2012-06-24 17:25:00
## 1592              68      NA          other            <NA> 2012-03-17 22:53:00
## 1593              74      NA      computer        hardware  2012-06-29 18:48:00
## 1594              70      NA       banking       financial  2012-06-29 20:38:00
## 1595              70      NA       science            tech  2012-01-03 12:44:00
## 1596              69      NA          other            <NA> 2012-06-28 22:47:00
## 1597              68      NA       banking       financial  2012-06-29 16:12:00
## 1598              75      NA      medicine           health 2012-06-27 09:51:00
## 1599              70      NA      computer        hardware  2012-06-30 00:06:00
## 1600              74  100000       banking       financial  2012-06-29 09:51:00
## 1601              74      NA       science            tech  2012-05-18 22:24:00
## 1602              74      NA         sales       marketing  2012-06-23 18:45:00
## 1603              72      NA      medicine           health 2012-06-27 13:18:00
## 1604              74      NA         sales       marketing  2012-06-29 21:44:00
## 1605              70      NA      artistic         musical  2012-06-30 01:23:00
## 1606              64   40000          other            <NA> 2012-01-25 07:02:00
## 1607              69   40000      medicine           health 2012-06-29 21:22:00
## 1608              70   60000     education         academia 2012-06-27 19:22:00
## 1609              70  100000      computer        hardware  2012-06-01 13:07:00
## 1610              67   60000     education         academia 2012-06-24 21:09:00
## 1611              72      NA      computer        hardware  2012-06-28 11:51:00
## 1612              71      NA           <NA>            <NA> 2012-05-09 20:27:00
## 1613              73      NA           law   legal services 2012-06-30 01:24:00
## 1614              71      NA          other            <NA> 2012-06-28 14:56:00
## 1615              70  100000       science            tech  2012-06-30 01:24:00
## 1616              69      NA        student            <NA> 2012-06-29 20:20:00
## 1617              72      NA rather not say            <NA> 2012-06-28 21:03:00
## 1618              73      NA  construction    craftsmanship 2012-04-20 08:24:00
## 1619              68      NA entertainment            media 2012-06-27 17:27:00
## 1620              71      NA       science            tech  2012-06-28 22:38:00
## 1621              72   40000     political       government 2012-06-27 18:08:00
## 1622              71      NA       science            tech  2012-02-03 16:20:00
## 1623              71  250000      computer        hardware  2012-06-05 01:23:00
## 1624              69  100000     executive       management 2012-06-27 02:22:00
## 1625              66      NA entertainment            media 2012-06-28 17:24:00
## 1626              70   50000         sales       marketing  2012-06-27 08:43:00
## 1627              70      NA        student            <NA> 2011-07-24 06:52:00
## 1628              64      NA entertainment            media 2012-06-30 01:24:00
## 1629              72      NA     education         academia 2012-06-30 01:24:00
## 1630              68      NA           <NA>            <NA> 2012-05-07 17:00:00
## 1631              69      NA       banking       financial  2012-06-29 18:44:00
## 1632              71   30000       military            <NA> 2012-06-25 20:32:00
## 1633              66      NA     education         academia 2012-06-23 12:00:00
## 1634              67      NA           <NA>            <NA> 2012-06-27 23:01:00
## 1635              65      NA      medicine           health 2012-06-30 01:25:00
## 1636              70      NA      artistic         musical  2012-06-29 17:47:00
## 1637              70      NA      computer        hardware  2012-06-05 22:19:00
## 1638              64      NA      computer        hardware  2012-06-07 10:19:00
## 1639              71      NA         sales       marketing  2012-06-11 09:44:00
## 1640              72  150000      computer        hardware  2012-06-25 20:09:00
## 1641              71      NA         sales       marketing  2012-06-29 22:46:00
## 1642              68   80000      computer        hardware  2012-06-29 00:00:00
## 1643              71   40000      medicine           health 2012-04-16 05:23:00
## 1644              75   80000      computer        hardware  2012-03-07 00:09:00
## 1645              73      NA          other            <NA> 2012-01-27 04:45:00
## 1646              71      NA     education         academia 2012-06-20 21:07:00
## 1647              71   20000 entertainment            media 2012-02-03 21:04:00
## 1648              67      NA         sales       marketing  2012-02-24 00:55:00
## 1649              69      NA       science            tech  2012-06-29 07:26:00
## 1650              69      NA      computer        hardware  2012-06-30 01:26:00
## 1651              73      NA     education         academia 2012-06-29 22:45:00
## 1652              69      NA  construction    craftsmanship 2012-06-27 12:24:00
## 1653              67   20000        student            <NA> 2012-01-16 09:47:00
## 1654              62      NA          other            <NA> 2012-06-29 00:15:00
## 1655              67      NA           <NA>            <NA> 2012-06-06 23:32:00
## 1656              67   60000     executive       management 2012-06-29 23:43:00
## 1657              63      NA      clerical   administrative 2012-06-29 20:10:00
## 1658              71      NA     education         academia 2011-10-12 21:30:00
## 1659              70      NA      artistic         musical  2012-06-28 23:58:00
## 1660              65   40000     education         academia 2012-06-28 01:40:00
## 1661              70      NA         sales       marketing  2012-06-27 21:17:00
## 1662              68      NA       science            tech  2012-05-04 21:09:00
## 1663              70      NA      medicine           health 2012-06-20 02:15:00
## 1664              66      NA        student            <NA> 2012-06-25 06:14:00
## 1665              65      NA     executive       management 2012-06-24 16:02:00
## 1666              62      NA      medicine           health 2012-06-21 05:53:00
## 1667              61      NA           law   legal services 2012-06-29 22:47:00
## 1668              70 1000000           <NA>            <NA> 2012-06-28 19:32:00
## 1669              73      NA          other            <NA> 2012-06-27 07:59:00
## 1670              69  100000           <NA>            <NA> 2012-06-29 22:27:00
## 1671              70      NA      artistic         musical  2012-06-29 14:22:00
## 1672              68      NA        student            <NA> 2012-06-29 18:46:00
## 1673              67      NA       science            tech  2012-06-30 01:27:00
## 1674              65      NA     executive       management 2012-06-25 19:28:00
## 1675              67      NA       science            tech  2012-06-29 04:06:00
## 1676              69   80000      computer        hardware  2012-06-06 08:00:00
## 1677              69      NA        student            <NA> 2012-06-21 22:16:00
## 1678              72   50000     political       government 2012-06-27 13:41:00
## 1679              65      NA           <NA>            <NA> 2012-06-29 19:38:00
## 1680              75  150000     executive       management 2012-02-10 19:44:00
## 1681              71      NA          other            <NA> 2011-06-30 04:52:00
## 1682              63      NA       science            tech  2012-06-26 10:13:00
## 1683              74   40000      artistic         musical  2012-06-13 23:17:00
## 1684              66      NA          other            <NA> 2011-09-14 00:48:00
## 1685              62      NA          other            <NA> 2012-06-24 19:51:00
## 1686              66      NA      medicine           health 2012-06-01 01:56:00
## 1687              62      NA         sales       marketing  2012-06-29 09:28:00
## 1688              64 1000000      artistic         musical  2011-10-14 14:27:00
## 1689              70      NA      artistic         musical  2012-06-24 08:46:00
## 1690              62      NA           <NA>            <NA> 2012-03-17 10:03:00
## 1691              73      NA      computer        hardware  2012-06-25 06:10:00
## 1692              63      NA      computer        hardware  2012-06-25 20:45:00
## 1693              70      NA       military            <NA> 2012-06-29 20:32:00
## 1694              68   80000     executive       management 2011-11-12 20:53:00
## 1695              66      NA          other            <NA> 2012-06-24 01:34:00
## 1696              61      NA      medicine           health 2012-06-29 23:27:00
## 1697              70      NA entertainment            media 2012-06-29 18:26:00
## 1698              74   70000     executive       management 2011-12-11 19:07:00
## 1699              66      NA          other            <NA> 2012-04-24 15:20:00
## 1700              62      NA           <NA>            <NA> 2012-06-29 21:02:00
## 1701              65      NA   hospitality           travel 2012-06-30 00:19:00
## 1702              68      NA      artistic         musical  2012-06-28 06:18:00
## 1703              66      NA          other            <NA> 2012-05-29 23:01:00
## 1704              69 1000000        student            <NA> 2012-04-15 23:26:00
## 1705              71      NA          other            <NA> 2012-06-26 22:06:00
## 1706              69   20000         sales       marketing  2012-01-12 11:52:00
## 1707              68      NA         sales       marketing  2012-03-08 09:58:00
## 1708              70   50000          other            <NA> 2012-02-12 10:20:00
## 1709              64   20000         sales       marketing  2012-05-08 07:41:00
## 1710              69      NA          other            <NA> 2012-04-22 02:30:00
## 1711              71      NA         sales       marketing  2012-06-30 01:29:00
## 1712              64      NA           <NA>            <NA> 2012-06-27 20:37:00
## 1713              65      NA        student            <NA> 2012-06-11 17:42:00
## 1714              70      NA      artistic         musical  2012-03-24 15:17:00
## 1715              64      NA       science            tech  2012-06-27 19:14:00
## 1716              62      NA      medicine           health 2012-06-29 22:38:00
## 1717              63      NA          other            <NA> 2012-06-29 22:11:00
## 1718              63   30000     education         academia 2011-07-07 00:15:00
## 1719              70      NA       science            tech  2012-06-26 23:12:00
## 1720              66      NA       banking       financial  2011-08-25 09:24:00
## 1721              70      NA          other            <NA> 2012-06-25 23:41:00
## 1722              72      NA         sales       marketing  2012-02-17 10:34:00
## 1723              67      NA      artistic         musical  2012-06-30 01:29:00
## 1724              68      NA      medicine           health 2012-06-29 16:53:00
## 1725              70      NA           <NA>            <NA> 2012-06-28 17:20:00
## 1726              67      NA         sales       marketing  2012-06-29 17:35:00
## 1727              72      NA      medicine           health 2012-06-30 01:30:00
## 1728              68      NA         sales       marketing  2012-06-29 22:00:00
## 1729              73      NA           <NA>            <NA> 2012-06-25 23:05:00
## 1730              67      NA           <NA>            <NA> 2012-06-29 19:32:00
## 1731              63      NA     education         academia 2012-06-07 03:49:00
## 1732              71      NA           <NA>            <NA> 2012-06-16 13:55:00
## 1733              72      NA       science            tech  2012-06-29 10:26:00
## 1734              69      NA          other            <NA> 2012-05-11 07:14:00
## 1735              59   50000      medicine           health 2012-06-29 15:30:00
## 1736              73      NA     executive       management 2012-06-26 09:12:00
## 1737              72      NA           <NA>            <NA> 2011-09-02 15:49:00
## 1738              72      NA          other            <NA> 2011-07-23 16:47:00
## 1739              74      NA       science            tech  2012-06-26 00:24:00
## 1740              65      NA      computer        hardware  2011-08-08 19:45:00
## 1741              69  100000      computer        hardware  2012-06-23 13:45:00
## 1742              67      NA      computer        hardware  2012-06-29 23:46:00
## 1743              72      NA           <NA>            <NA> 2012-06-26 23:52:00
## 1744              69      NA     executive       management 2012-06-20 13:15:00
## 1745              73      NA         sales       marketing  2012-06-29 20:11:00
## 1746              65   40000      clerical   administrative 2012-06-28 23:17:00
## 1747              70      NA      computer        hardware  2012-06-29 21:47:00
## 1748              72      NA entertainment            media 2012-06-28 18:42:00
## 1749              71      NA  construction    craftsmanship 2012-05-05 13:52:00
## 1750              69  100000           law   legal services 2012-06-29 12:33:00
## 1751              66      NA      medicine           health 2012-06-29 23:15:00
## 1752              68      NA     education         academia 2012-06-25 08:51:00
## 1753              66  100000      medicine           health 2012-06-26 22:05:00
## 1754              64      NA         sales       marketing  2012-06-28 17:10:00
## 1755              67      NA   hospitality           travel 2012-06-29 22:01:00
## 1756              72  100000      medicine           health 2012-05-17 23:10:00
## 1757              63      NA     education         academia 2012-06-30 01:31:00
## 1758              70   80000       science            tech  2012-05-01 07:43:00
## 1759              74 1000000          other            <NA> 2012-06-27 15:11:00
## 1760              64      NA         sales       marketing  2012-03-31 21:42:00
## 1761              70      NA           law   legal services 2012-06-29 22:07:00
## 1762              70      NA     executive       management 2012-06-22 07:34:00
## 1763              66      NA      computer        hardware  2012-06-27 08:55:00
## 1764              74   70000 transportation            <NA> 2012-03-15 01:15:00
## 1765              63      NA           <NA>            <NA> 2012-06-29 19:07:00
## 1766              65 1000000        student            <NA> 2012-06-29 23:44:00
## 1767              68      NA     executive       management 2012-06-29 10:07:00
## 1768              65      NA     executive       management 2012-02-20 11:37:00
## 1769              72      NA           <NA>            <NA> 2011-08-28 14:24:00
## 1770              60      NA      artistic         musical  2012-06-28 01:09:00
## 1771              65   80000         sales       marketing  2012-06-29 13:13:00
## 1772              67      NA   hospitality           travel 2012-06-28 17:06:00
## 1773              63      NA          other            <NA> 2012-06-28 07:44:00
## 1774              70      NA         sales       marketing  2012-06-28 15:52:00
## 1775              74      NA      clerical   administrative 2012-06-29 16:30:00
## 1776              62      NA           <NA>            <NA> 2012-06-05 18:31:00
## 1777              75      NA      medicine           health 2012-06-30 00:21:00
## 1778              70      NA       science            tech  2012-06-11 15:51:00
## 1779              69      NA      computer        hardware  2012-06-27 12:42:00
## 1780              66      NA           <NA>            <NA> 2012-06-29 18:50:00
## 1781              67   20000        student            <NA> 2012-05-31 20:13:00
## 1782              65      NA       science            tech  2012-06-25 11:33:00
## 1783              70      NA          other            <NA> 2012-06-29 04:32:00
## 1784              72      NA       science            tech  2011-09-02 12:32:00
## 1785              64      NA      medicine           health 2012-06-24 11:56:00
## 1786              70      NA       science            tech  2012-06-21 21:16:00
## 1787              70      NA       science            tech  2012-06-25 18:39:00
## 1788              59      NA      computer        hardware  2012-06-26 22:38:00
## 1789              72      NA     executive       management 2012-03-14 21:29:00
## 1790              68      NA     political       government 2012-06-29 13:46:00
## 1791              70      NA           <NA>            <NA> 2012-04-07 14:41:00
## 1792              69   20000        student            <NA> 2012-06-14 19:17:00
## 1793              72      NA      computer        hardware  2012-06-18 21:51:00
## 1794              67      NA  construction    craftsmanship 2012-06-19 20:26:00
## 1795              72      NA      artistic         musical  2012-06-29 23:07:00
## 1796              69      NA           <NA>            <NA> 2012-06-27 18:26:00
## 1797              68      NA      artistic         musical  2012-06-30 01:33:00
## 1798              70   20000          other            <NA> 2012-06-23 18:06:00
## 1799              63   20000        student            <NA> 2012-06-15 14:44:00
## 1800              65 1000000      computer        hardware  2012-06-26 18:37:00
## 1801              64      NA       science            tech  2012-06-29 00:57:00
## 1802              70      NA        student            <NA> 2012-06-29 07:49:00
## 1803              68      NA        student            <NA> 2012-06-27 19:11:00
## 1804              69      NA   hospitality           travel 2012-06-25 12:59:00
## 1805              73      NA           <NA>            <NA> 2012-06-29 20:56:00
## 1806              72   50000      computer        hardware  2012-06-29 08:53:00
## 1807              67      NA      medicine           health 2012-03-27 11:09:00
## 1808              64      NA         sales       marketing  2012-06-20 11:19:00
## 1809              67      NA          other            <NA> 2012-04-25 09:09:00
## 1810              62      NA         sales       marketing  2012-06-11 21:40:00
## 1811              71  100000           <NA>            <NA> 2012-06-29 22:37:00
## 1812              71      NA     executive       management 2012-05-01 21:08:00
## 1813              69      NA     education         academia 2012-06-29 18:02:00
## 1814              74      NA entertainment            media 2012-06-29 06:58:00
## 1815              69  150000     executive       management 2012-06-29 00:26:00
## 1816              60      NA      artistic         musical  2012-06-27 18:33:00
## 1817              75      NA           law   legal services 2012-06-30 01:34:00
## 1818              71      NA     executive       management 2012-06-29 18:28:00
## 1819              72      NA           law   legal services 2012-06-30 01:34:00
## 1820              67      NA     education         academia 2012-06-28 19:17:00
## 1821              67      NA      medicine           health 2012-06-25 00:28:00
## 1822              64      NA      computer        hardware  2012-05-04 17:53:00
## 1823              68      NA         sales       marketing  2012-05-22 23:56:00
## 1824              71      NA        student            <NA> 2012-06-30 01:35:00
## 1825              69      NA     political       government 2012-06-29 23:24:00
## 1826              69      NA      computer        hardware  2012-06-29 20:26:00
## 1827              70  150000     executive       management 2012-06-29 19:37:00
## 1828              70      NA          other            <NA> 2012-06-29 16:40:00
## 1829              74      NA           law   legal services 2012-06-30 00:19:00
## 1830              69   80000 entertainment            media 2012-06-30 00:29:00
## 1831              67      NA      medicine           health 2012-06-27 22:12:00
## 1832              73      NA      medicine           health 2012-06-22 22:21:00
## 1833              69      NA      computer        hardware  2011-10-17 20:24:00
## 1834              66   20000      artistic         musical  2012-02-20 12:22:00
## 1835              69      NA      artistic         musical  2012-05-31 10:55:00
## 1836              71      NA        student            <NA> 2012-06-28 23:20:00
## 1837              65      NA     education         academia 2012-06-11 21:22:00
## 1838              66      NA      medicine           health 2012-02-11 22:55:00
## 1839              65      NA           <NA>            <NA> 2012-05-13 14:06:00
## 1840              68  100000      computer        hardware  2012-06-28 20:21:00
## 1841              66      NA      artistic         musical  2012-06-30 00:08:00
## 1842              67      NA           law   legal services 2012-06-29 13:28:00
## 1843              62   40000     education         academia 2012-04-02 21:52:00
## 1844              70      NA      artistic         musical  2012-05-07 20:43:00
## 1845              72      NA       science            tech  2012-04-10 21:37:00
## 1846              69      NA      artistic         musical  2012-06-30 01:36:00
## 1847              70      NA          other            <NA> 2012-06-29 09:26:00
## 1848              61      NA          other            <NA> 2012-06-29 15:44:00
## 1849              68      NA       banking       financial  2012-06-25 17:47:00
## 1850              68      NA         sales       marketing  2012-06-29 06:31:00
## 1851              67      NA       banking       financial  2012-06-23 15:24:00
## 1852              67      NA      artistic         musical  2012-06-29 23:32:00
## 1853              70      NA         sales       marketing  2012-06-26 07:43:00
## 1854              64   40000      artistic         musical  2012-06-20 00:33:00
## 1855              69      NA          other            <NA> 2012-06-28 21:48:00
## 1856              65      NA      medicine           health 2012-06-27 21:15:00
## 1857              63      NA     political       government 2012-06-29 06:44:00
## 1858              62      NA     education         academia 2012-04-27 02:02:00
## 1859              72      NA       science            tech  2012-06-29 15:05:00
## 1860              63      NA entertainment            media 2012-06-24 15:52:00
## 1861              69      NA       banking       financial  2012-06-29 21:44:00
## 1862              66   40000 entertainment            media 2012-03-13 18:16:00
## 1863              68   60000     political       government 2012-04-23 21:23:00
## 1864              72      NA        student            <NA> 2012-06-28 18:34:00
## 1865              74      NA     political       government 2012-06-29 07:30:00
## 1866              63      NA          other            <NA> 2012-06-26 21:37:00
## 1867              67      NA           <NA>            <NA> 2012-03-30 11:15:00
## 1868              67   20000       science            tech  2012-06-30 01:37:00
## 1869              62      NA          other            <NA> 2012-06-29 15:16:00
## 1870              73      NA     executive       management 2012-06-30 01:37:00
## 1871              72      NA        student            <NA> 2012-06-28 17:05:00
## 1872              73      NA      clerical   administrative 2012-06-25 09:15:00
## 1873              69      NA           <NA>            <NA> 2012-05-22 10:31:00
## 1874              64      NA           <NA>            <NA> 2012-06-28 22:21:00
## 1875              69      NA      computer        hardware  2012-06-27 01:42:00
## 1876              71   80000      artistic         musical  2012-03-17 15:43:00
## 1877              70      NA         sales       marketing  2012-05-29 11:24:00
## 1878              59   30000      clerical   administrative 2011-10-09 08:01:00
## 1879              68      NA      computer        hardware  2012-06-29 11:02:00
## 1880              65      NA        student            <NA> 2012-06-28 16:56:00
## 1881              70      NA         sales       marketing  2012-06-29 14:48:00
## 1882              75      NA           <NA>            <NA> 2012-05-26 21:49:00
## 1883              76   80000           law   legal services 2012-06-28 12:42:00
## 1884              69      NA           <NA>            <NA> 2012-06-29 17:29:00
## 1885              66      NA        student            <NA> 2012-04-15 19:51:00
## 1886              60      NA          other            <NA> 2012-06-29 23:11:00
## 1887              62      NA        retired            <NA> 2012-06-27 21:03:00
## 1888              65      NA          other            <NA> 2012-06-29 21:13:00
## 1889              69      NA      artistic         musical  2012-06-29 12:05:00
## 1890              67      NA  construction    craftsmanship 2012-06-29 17:56:00
## 1891              64      NA      artistic         musical  2011-09-21 14:48:00
## 1892              74      NA     executive       management 2012-06-29 18:53:00
## 1893              65      NA        student            <NA> 2012-06-28 13:28:00
## 1894              74      NA   hospitality           travel 2012-06-29 09:53:00
## 1895              67      NA        student            <NA> 2012-06-29 18:21:00
## 1896              64      NA      artistic         musical  2012-06-29 21:52:00
## 1897              70      NA     executive       management 2012-06-29 14:39:00
## 1898              69      NA          other            <NA> 2012-06-29 15:33:00
## 1899              67      NA rather not say            <NA> 2012-06-29 09:40:00
## 1900              69      NA           <NA>            <NA> 2012-06-29 22:33:00
## 1901              70   50000       science            tech  2012-06-26 18:06:00
## 1902              66      NA         sales       marketing  2012-06-29 20:34:00
## 1903              71      NA       science            tech  2012-06-25 22:58:00
## 1904              65      NA     education         academia 2012-06-28 00:45:00
## 1905              67      NA         sales       marketing  2011-12-16 07:36:00
## 1906              62      NA     executive       management 2012-03-20 18:17:00
## 1907              62      NA      medicine           health 2012-06-18 10:20:00
## 1908              72   20000        student            <NA> 2012-06-30 01:39:00
## 1909              69      NA          other            <NA> 2012-06-28 19:20:00
## 1910              75      NA       science            tech  2012-06-28 21:46:00
## 1911              70      NA        student            <NA> 2012-06-16 10:59:00
## 1912              60      NA      clerical   administrative 2012-06-28 23:31:00
## 1913              70      NA           <NA>            <NA> 2012-06-24 20:35:00
## 1914              64      NA           <NA>            <NA> 2012-06-29 19:09:00
## 1915              64      NA      artistic         musical  2012-06-28 21:03:00
## 1916              70      NA     education         academia 2012-04-01 19:08:00
## 1917              77      NA entertainment            media 2012-04-23 23:12:00
## 1918              64      NA      medicine           health 2012-06-28 18:37:00
## 1919              68      NA           <NA>            <NA> 2012-02-05 00:55:00
## 1920              68      NA     education         academia 2012-06-29 21:35:00
## 1921              70      NA          other            <NA> 2012-06-05 11:56:00
## 1922              69      NA         sales       marketing  2012-06-28 09:25:00
## 1923              83      NA           <NA>            <NA> 2012-06-24 16:39:00
## 1924              72      NA       science            tech  2012-04-21 21:45:00
## 1925              64      NA         sales       marketing  2012-06-29 18:50:00
## 1926              71      NA           <NA>            <NA> 2012-06-29 18:17:00
## 1927              73  150000       science            tech  2012-06-29 22:31:00
## 1928              69      NA       science            tech  2012-06-30 00:19:00
## 1929              68  100000      computer        hardware  2012-06-29 14:57:00
## 1930              69      NA     political       government 2012-06-29 22:50:00
## 1931              70      NA      computer        hardware  2012-04-03 08:44:00
## 1932              68      NA      artistic         musical  2012-02-29 22:25:00
## 1933              72      NA       science            tech  2012-06-29 11:02:00
## 1934              67   70000       science            tech  2012-06-29 19:19:00
## 1935              65      NA        student            <NA> 2012-06-29 22:56:00
## 1936              68      NA           <NA>            <NA> 2012-06-29 22:33:00
## 1937              64   20000        student            <NA> 2012-06-28 18:17:00
## 1938              70   20000        student            <NA> 2012-06-19 03:00:00
## 1939              69   50000       military            <NA> 2012-06-15 15:33:00
## 1940              72      NA       banking       financial  2012-06-13 17:27:00
## 1941              71      NA       banking       financial  2012-06-29 22:36:00
## 1942              67      NA           law   legal services 2012-06-27 13:03:00
## 1943              73      NA       banking       financial  2012-05-03 01:41:00
## 1944              62      NA      clerical   administrative 2012-06-29 18:06:00
## 1945              74      NA        retired            <NA> 2012-05-09 14:37:00
## 1946              68      NA       science            tech  2012-06-28 22:56:00
## 1947              65      NA        student            <NA> 2012-06-29 11:44:00
## 1948              74   30000      artistic         musical  2012-06-29 20:16:00
## 1949              71      NA      computer        hardware  2012-06-24 14:33:00
## 1950              74      NA       science            tech  2012-06-10 20:57:00
## 1951              66   50000     political       government 2012-05-29 23:59:00
## 1952              65      NA        student            <NA> 2011-08-23 23:25:00
## 1953              66      NA          other            <NA> 2012-06-29 22:33:00
## 1954              72      NA         sales       marketing  2012-06-29 15:44:00
## 1955              65      NA       military            <NA> 2011-07-14 16:30:00
## 1956              62      NA      artistic         musical  2012-06-29 03:24:00
## 1957              70   20000      artistic         musical  2012-06-28 19:08:00
## 1958              64      NA        student            <NA> 2012-06-29 18:05:00
## 1959              63      NA         sales       marketing  2012-06-29 22:12:00
## 1960              69   20000      clerical   administrative 2011-12-16 07:55:00
## 1961              67      NA          other            <NA> 2012-01-27 22:06:00
## 1962              77   60000 transportation            <NA> 2012-01-06 18:12:00
## 1963              69      NA       science            tech  2012-06-30 00:32:00
## 1964              63      NA           law   legal services 2012-06-25 11:11:00
## 1965              62      NA           law   legal services 2012-06-26 14:48:00
## 1966              62      NA           <NA>            <NA> 2012-06-26 10:08:00
## 1967              72      NA     executive       management 2012-06-29 23:40:00
## 1968              65      NA          other            <NA> 2012-03-03 11:11:00
## 1969              65      NA rather not say            <NA> 2012-03-11 13:38:00
## 1970              62      NA        student            <NA> 2012-06-25 21:59:00
## 1971              68      NA           <NA>            <NA> 2012-06-22 15:10:00
## 1972              64      NA          other            <NA> 2011-11-03 20:57:00
## 1973              72      NA        student            <NA> 2011-11-08 01:19:00
## 1974              66      NA           <NA>            <NA> 2012-03-21 05:49:00
## 1975              62      NA      medicine           health 2012-05-31 21:47:00
## 1976              67      NA           <NA>            <NA> 2012-04-25 21:45:00
## 1977              67      NA         sales       marketing  2012-06-29 21:00:00
## 1978              75      NA           <NA>            <NA> 2012-05-22 12:21:00
## 1979              63      NA           <NA>            <NA> 2012-06-28 15:17:00
## 1980              73      NA         sales       marketing  2012-06-24 19:42:00
## 1981              61   80000       science            tech  2012-04-03 16:34:00
## 1982              72      NA   hospitality           travel 2012-03-25 14:59:00
## 1983              63      NA        student            <NA> 2012-06-10 13:26:00
## 1984              67      NA        student            <NA> 2012-06-29 23:34:00
## 1985              68      NA      medicine           health 2012-06-28 10:19:00
## 1986              71      NA entertainment            media 2012-06-29 23:36:00
## 1987              64      NA      medicine           health 2012-06-23 17:39:00
## 1988              69 1000000     political       government 2012-06-30 01:43:00
## 1989              65      NA          other            <NA> 2012-06-29 20:28:00
## 1990              66      NA         sales       marketing  2012-04-26 10:17:00
## 1991              71      NA        student            <NA> 2012-04-24 07:05:00
## 1992              65      NA        student            <NA> 2012-06-20 20:07:00
## 1993              65   20000          other            <NA> 2012-06-28 22:09:00
## 1994              68      NA          other            <NA> 2012-06-29 10:26:00
## 1995              67      NA  construction    craftsmanship 2012-01-26 15:45:00
## 1996              66      NA      artistic         musical  2012-06-26 20:16:00
## 1997              68      NA       military            <NA> 2012-06-11 08:25:00
## 1998              61      NA        student            <NA> 2012-06-29 14:48:00
## 1999              67      NA      medicine           health 2012-06-29 23:45:00
## 2000              67      NA entertainment            media 2011-12-11 12:16:00
## 2001              72      NA     education         academia 2012-06-28 12:14:00
## 2002              67   20000     education         academia 2012-06-29 22:57:00
## 2003              72      NA     education         academia 2012-06-26 05:52:00
## 2004              69  100000       banking       financial  2012-06-16 20:27:00
## 2005              60   20000         sales       marketing  2012-05-08 22:10:00
## 2006              58      NA      medicine           health 2012-01-03 08:41:00
## 2007              70      NA           <NA>            <NA> 2012-06-29 22:52:00
## 2008              72      NA        student            <NA> 2012-06-24 02:48:00
## 2009              64      NA           <NA>            <NA> 2012-06-29 22:16:00
## 2010              62   40000      medicine           health 2012-06-19 21:13:00
## 2011              67      NA      artistic         musical  2012-03-10 08:01:00
## 2012              64      NA       science            tech  2012-01-31 22:01:00
## 2013              63      NA           <NA>            <NA> 2012-06-29 21:25:00
## 2014              72  150000       science            tech  2012-05-06 12:31:00
## 2015              73      NA      artistic         musical  2012-06-29 18:15:00
## 2016              64      NA        student            <NA> 2012-06-29 22:41:00
## 2017              68      NA        student            <NA> 2012-06-29 23:30:00
## 2018              65      NA   hospitality           travel 2012-06-29 23:09:00
## 2019              62      NA          other            <NA> 2012-06-29 08:52:00
## 2020              63      NA           <NA>            <NA> 2012-06-29 22:58:00
## 2021              56      NA        student            <NA> 2012-06-22 09:41:00
## 2022              67      NA           <NA>            <NA> 2012-01-20 10:36:00
## 2023              64      NA         sales       marketing  2012-06-28 16:37:00
## 2024              67      NA       science            tech  2012-06-29 10:38:00
## 2025              67      NA        student            <NA> 2012-04-10 02:55:00
## 2026              68      NA          other            <NA> 2012-06-18 23:10:00
## 2027              71      NA         sales       marketing  2012-06-27 11:15:00
## 2028              72   30000     political       government 2012-06-25 08:53:00
## 2029              63      NA      computer        hardware  2012-03-30 23:45:00
## 2030              66      NA           <NA>            <NA> 2012-06-28 19:35:00
## 2031              72      NA      computer        hardware  2012-06-24 16:01:00
## 2032              63      NA           <NA>            <NA> 2012-05-14 09:45:00
## 2033              66      NA           <NA>            <NA> 2012-06-25 13:37:00
## 2034              65   70000      computer        hardware  2012-06-28 10:11:00
## 2035              69      NA      computer        hardware  2012-06-28 19:30:00
## 2036              70      NA        student            <NA> 2012-06-29 22:30:00
## 2037              66 1000000      artistic         musical  2012-06-30 00:32:00
## 2038              71      NA       banking       financial  2012-06-29 09:02:00
## 2039              69      NA      artistic         musical  2012-06-30 00:06:00
## 2040              67 1000000      medicine           health 2012-06-30 01:46:00
## 2041              75      NA          other            <NA> 2012-06-29 16:40:00
## 2042              62      NA          other            <NA> 2012-06-28 22:10:00
## 2043              64      NA        student            <NA> 2012-06-28 21:19:00
## 2044              64      NA           <NA>            <NA> 2012-06-21 14:43:00
## 2045              63      NA        student            <NA> 2012-06-29 17:52:00
## 2046              66      NA          other            <NA> 2012-06-28 22:36:00
## 2047              70      NA      computer        hardware  2012-04-22 12:03:00
## 2048              67      NA        student            <NA> 2012-05-19 23:16:00
## 2049              68      NA        student            <NA> 2012-06-30 01:46:00
## 2050              70      NA           <NA>            <NA> 2012-06-30 01:46:00
## 2051              61   20000        student            <NA> 2012-06-30 01:46:00
## 2052              75   70000      computer        hardware  2012-06-28 14:04:00
## 2053              63      NA entertainment            media 2012-06-09 19:27:00
## 2054              66      NA   hospitality           travel 2012-04-04 18:49:00
## 2055              64   50000     education         academia 2012-06-21 12:04:00
## 2056              71      NA        student            <NA> 2011-09-21 18:51:00
## 2057              69      NA       science            tech  2012-06-27 19:30:00
## 2058              63      NA      artistic         musical  2012-06-09 22:55:00
## 2059              68      NA     education         academia 2012-06-28 18:44:00
## 2060              65      NA          other            <NA> 2012-02-14 19:40:00
## 2061              66      NA           <NA>            <NA> 2012-06-10 23:39:00
## 2062              68      NA      clerical   administrative 2012-06-26 10:52:00
## 2063              66      NA           <NA>            <NA> 2012-06-28 20:26:00
## 2064              69   80000         sales       marketing  2012-06-26 18:28:00
## 2065              64      NA         sales       marketing  2012-06-29 18:23:00
## 2066              70      NA        student            <NA> 2012-06-30 00:08:00
## 2067              68      NA       science            tech  2012-06-27 22:31:00
## 2068              69   20000         sales       marketing  2012-02-15 20:13:00
## 2069              66      NA     executive       management 2012-04-01 17:29:00
## 2070              68      NA      artistic         musical  2012-05-19 07:21:00
## 2071              68      NA   hospitality           travel 2012-06-14 11:14:00
## 2072              71      NA      computer        hardware  2012-01-15 19:01:00
## 2073              69      NA          other            <NA> 2012-06-22 13:41:00
## 2074              66      NA   hospitality           travel 2012-06-26 13:32:00
## 2075              64      NA      medicine           health 2012-05-14 21:25:00
## 2076              75      NA       science            tech  2011-09-21 22:22:00
## 2077              70      NA         sales       marketing  2012-06-28 11:38:00
## 2078              69      NA          other            <NA> 2012-06-29 07:22:00
## 2079              72      NA       science            tech  2012-06-30 01:47:00
## 2080              70  100000  construction    craftsmanship 2011-09-18 20:33:00
## 2081              73      NA           law   legal services 2012-06-28 20:20:00
## 2082              71      NA           <NA>            <NA> 2012-06-29 18:04:00
## 2083              66      NA          other            <NA> 2012-06-27 14:18:00
## 2084              70      NA     education         academia 2012-03-01 11:11:00
## 2085              68      NA       science            tech  2012-06-29 23:00:00
## 2086              68      NA       science            tech  2012-06-29 22:46:00
## 2087              63      NA      medicine           health 2012-05-21 20:16:00
## 2088              70      NA      artistic         musical  2012-06-29 11:50:00
## 2089              63      NA      clerical   administrative 2012-03-07 14:08:00
## 2090              74      NA           <NA>            <NA> 2012-06-26 23:43:00
## 2091              64   20000         sales       marketing  2012-06-08 00:28:00
## 2092              70      NA        student            <NA> 2012-06-29 09:04:00
## 2093              61      NA          other            <NA> 2012-06-08 20:53:00
## 2094              70      NA          other            <NA> 2012-06-29 14:00:00
## 2095              73      NA          other            <NA> 2012-06-19 23:48:00
## 2096              71   20000          other            <NA> 2012-06-26 18:33:00
## 2097              68   40000       science            tech  2012-06-29 19:16:00
## 2098              70      NA      artistic         musical  2012-05-02 10:12:00
## 2099              72      NA       science            tech  2012-06-26 10:22:00
## 2100              65      NA     education         academia 2012-06-23 21:28:00
## 2101              65      NA   hospitality           travel 2012-01-22 03:20:00
## 2102              66      NA           <NA>            <NA> 2011-10-05 00:15:00
## 2103              70      NA         sales       marketing  2012-06-28 06:52:00
## 2104              61      NA     education         academia 2012-06-29 08:03:00
## 2105              70      NA           <NA>            <NA> 2012-05-08 13:15:00
## 2106              68   20000   hospitality           travel 2012-06-27 23:47:00
## 2107              63      NA       banking       financial  2012-06-29 21:14:00
## 2108              62      NA        student            <NA> 2012-06-29 18:10:00
## 2109              74      NA        student            <NA> 2012-06-29 20:47:00
## 2110              73      NA      computer        hardware  2012-06-27 14:47:00
## 2111              72      NA           law   legal services 2012-06-08 18:43:00
## 2112              66   20000     education         academia 2012-06-29 14:53:00
## 2113              59  100000     education         academia 2012-06-30 01:49:00
## 2114              64      NA          other            <NA> 2012-06-29 23:21:00
## 2115              72      NA           law   legal services 2012-06-27 18:22:00
## 2116              69   60000     executive       management 2012-06-10 21:33:00
## 2117              68      NA     education         academia 2012-06-30 01:49:00
## 2118              66  150000     executive       management 2012-06-29 06:55:00
## 2119              71      NA          other            <NA> 2012-06-29 23:03:00
## 2120              63      NA          other            <NA> 2012-06-27 23:57:00
## 2121              63      NA      artistic         musical  2012-06-29 13:50:00
## 2122              68      NA          other            <NA> 2012-06-30 00:47:00
## 2123              65      NA          other            <NA> 2011-07-14 19:40:00
## 2124              69      NA          other            <NA> 2012-06-29 23:43:00
## 2125              71      NA      artistic         musical  2012-06-29 17:45:00
## 2126              62   50000      medicine           health 2012-06-21 22:18:00
## 2127              69   40000     education         academia 2012-06-26 10:07:00
## 2128              70   30000          other            <NA> 2012-06-26 19:59:00
## 2129              72      NA          other            <NA> 2012-06-23 13:18:00
## 2130              71      NA        student            <NA> 2012-06-15 09:10:00
## 2131              71      NA      medicine           health 2012-06-29 23:54:00
## 2132              73      NA          other            <NA> 2012-06-29 23:19:00
## 2133              67      NA        student            <NA> 2012-06-29 23:51:00
## 2134              70      NA      medicine           health 2012-06-24 16:14:00
## 2135              62      NA        student            <NA> 2012-06-28 22:17:00
## 2136              70   30000      medicine           health 2012-06-24 22:39:00
## 2137              74      NA         sales       marketing  2012-06-29 07:33:00
## 2138              63   30000           <NA>            <NA> 2012-06-29 01:15:00
## 2139              69      NA           <NA>            <NA> 2012-06-29 22:53:00
## 2140              67      NA entertainment            media 2012-06-27 23:38:00
## 2141              63      NA     education         academia 2012-06-28 23:47:00
## 2142              71      NA          other            <NA> 2011-12-24 21:41:00
## 2143              68   70000      computer        hardware  2012-06-29 21:52:00
## 2144              69      NA       science            tech  2012-06-26 17:07:00
## 2145              72      NA       banking       financial  2012-06-29 23:43:00
## 2146              70   60000         sales       marketing  2012-06-22 20:09:00
## 2147              69      NA           <NA>            <NA> 2012-06-29 01:53:00
## 2148              58      NA      artistic         musical  2012-06-29 18:52:00
## 2149              69      NA     education         academia 2012-01-16 16:08:00
## 2150              66      NA      computer        hardware  2012-06-24 23:14:00
## 2151              62      NA       science            tech  2012-06-26 00:46:00
## 2152              70  100000      computer        hardware  2012-06-08 13:00:00
## 2153              70      NA        student            <NA> 2011-12-11 18:08:00
## 2154              77   30000        student            <NA> 2012-04-19 20:56:00
## 2155              62      NA           <NA>            <NA> 2012-06-29 21:45:00
## 2156              70   80000       banking       financial  2012-06-25 22:18:00
## 2157              71      NA        student            <NA> 2012-06-30 01:51:00
## 2158              69   80000       banking       financial  2012-03-19 12:03:00
## 2159              69  100000      computer        hardware  2012-06-27 17:24:00
## 2160              65      NA     executive       management 2012-06-29 00:08:00
## 2161              64      NA     education         academia 2012-06-26 07:18:00
## 2162              60      NA entertainment            media 2012-06-27 09:47:00
## 2163              70      NA       banking       financial  2011-12-26 09:39:00
## 2164              69      NA           law   legal services 2012-04-26 06:55:00
## 2165              66      NA           <NA>            <NA> 2012-04-03 12:00:00
## 2166              74      NA      medicine           health 2012-06-29 21:53:00
## 2167              68      NA           <NA>            <NA> 2012-06-29 22:56:00
## 2168              70   80000 entertainment            media 2012-06-27 00:02:00
## 2169              70      NA      medicine           health 2012-06-03 16:25:00
## 2170              69      NA      medicine           health 2012-04-25 15:55:00
## 2171              66      NA           <NA>            <NA> 2012-06-22 23:33:00
## 2172              62      NA     education         academia 2012-06-28 11:48:00
## 2173              68      NA        student            <NA> 2012-06-29 10:02:00
## 2174              72      NA      medicine           health 2012-06-25 12:38:00
## 2175              72      NA       science            tech  2012-06-29 07:18:00
## 2176              73  100000      computer        hardware  2012-06-29 21:48:00
## 2177              68      NA          other            <NA> 2012-06-20 07:39:00
## 2178              66      NA           <NA>            <NA> 2012-06-30 01:52:00
## 2179              76      NA        student            <NA> 2012-06-24 17:09:00
## 2180              62   20000        student            <NA> 2011-10-15 12:57:00
## 2181              67      NA          other            <NA> 2012-06-28 23:59:00
## 2182              61      NA          other            <NA> 2012-06-27 18:23:00
## 2183              75      NA       science            tech  2011-11-14 15:54:00
## 2184              67      NA          other            <NA> 2012-03-30 03:31:00
## 2185              67      NA           law   legal services 2012-06-09 19:41:00
## 2186              73      NA           <NA>            <NA> 2012-04-08 11:39:00
## 2187              70  100000          other            <NA> 2012-01-22 14:27:00
## 2188              71   20000         sales       marketing  2012-06-26 23:36:00
## 2189              69      NA entertainment            media 2012-06-25 15:15:00
## 2190              70      NA      medicine           health 2012-02-29 11:35:00
## 2191              70      NA       banking       financial  2012-06-29 20:11:00
## 2192              66      NA           <NA>            <NA> 2012-02-21 10:24:00
## 2193              65      NA       science            tech  2012-06-30 00:33:00
## 2194              62      NA          other            <NA> 2012-06-29 02:10:00
## 2195              62      NA           <NA>            <NA> 2012-06-29 23:49:00
## 2196              70      NA      computer        hardware  2012-06-29 23:06:00
## 2197              69      NA   hospitality           travel 2012-05-28 23:35:00
## 2198              72      NA           <NA>            <NA> 2012-06-02 22:47:00
## 2199              67      NA          other            <NA> 2012-06-27 20:11:00
## 2200              67      NA        student            <NA> 2011-11-26 12:40:00
## 2201              64      NA      clerical   administrative 2012-06-29 13:27:00
## 2202              69      NA          other            <NA> 2012-03-03 20:56:00
## 2203              72   50000     education         academia 2012-06-27 02:41:00
## 2204              73      NA  construction    craftsmanship 2012-06-28 15:25:00
## 2205              74      NA     education         academia 2012-06-11 18:38:00
## 2206              70      NA           <NA>            <NA> 2012-06-25 11:22:00
## 2207              72      NA           <NA>            <NA> 2012-06-29 13:51:00
## 2208              66      NA      medicine           health 2012-06-20 12:00:00
## 2209              68      NA         sales       marketing  2012-06-27 00:03:00
## 2210              69      NA       science            tech  2012-06-26 19:28:00
## 2211              71      NA           <NA>            <NA> 2012-06-27 16:02:00
## 2212              63      NA           <NA>            <NA> 2012-06-23 16:09:00
## 2213              60   20000      artistic         musical  2011-12-22 13:32:00
## 2214              72   80000      computer        hardware  2012-06-13 03:14:00
## 2215              73   30000          other            <NA> 2012-06-29 10:04:00
## 2216              70   70000  construction    craftsmanship 2012-06-29 13:18:00
## 2217              64      NA          other            <NA> 2011-10-23 19:00:00
## 2218              72      NA       science            tech  2012-05-31 18:37:00
## 2219              68      NA      medicine           health 2012-06-27 20:49:00
## 2220              69      NA        student            <NA> 2012-04-22 17:33:00
## 2221              64      NA      computer        hardware  2012-06-30 01:55:00
## 2222              66      NA         sales       marketing  2012-06-21 14:16:00
## 2223              69      NA         sales       marketing  2012-06-29 22:37:00
## 2224              64      NA     education         academia 2012-06-29 12:56:00
## 2225              72      NA       science            tech  2012-06-30 01:55:00
## 2226              64      NA           <NA>            <NA> 2012-06-20 11:32:00
## 2227              72      NA transportation            <NA> 2011-09-21 00:30:00
## 2228              70      NA  construction    craftsmanship 2012-05-15 22:26:00
## 2229              63   20000        student            <NA> 2012-06-26 22:55:00
## 2230              73   20000      artistic         musical  2011-12-31 09:55:00
## 2231              68      NA      artistic         musical  2012-06-29 19:17:00
## 2232              73      NA      computer        hardware  2012-06-28 23:36:00
## 2233              61      NA          other            <NA> 2012-06-29 19:33:00
## 2234              72      NA     executive       management 2012-06-29 22:05:00
## 2235              64   20000 entertainment            media 2012-06-10 13:32:00
## 2236              69      NA        student            <NA> 2011-12-27 09:57:00
## 2237              72      NA        student            <NA> 2012-06-29 23:03:00
## 2238              69      NA          other            <NA> 2012-06-26 20:02:00
## 2239              67      NA          other            <NA> 2012-06-17 11:02:00
## 2240              72      NA     education         academia 2012-06-29 15:06:00
## 2241              69      NA          other            <NA> 2012-06-27 19:25:00
## 2242              68      NA       science            tech  2012-06-29 15:39:00
## 2243              70      NA           <NA>            <NA> 2011-08-17 00:44:00
## 2244              72      NA           <NA>            <NA> 2011-11-28 13:15:00
## 2245              69      NA         sales       marketing  2012-06-29 08:43:00
## 2246              64      NA        student            <NA> 2012-06-29 07:25:00
## 2247              69      NA        student            <NA> 2012-05-31 12:41:00
## 2248              72      NA        student            <NA> 2012-06-30 01:56:00
## 2249              72      NA     unemployed            <NA> 2012-06-27 20:59:00
## 2250              69   80000      computer        hardware  2012-06-28 03:13:00
## 2251              71      NA      computer        hardware  2012-06-26 09:14:00
## 2252              61      NA entertainment            media 2012-03-20 00:18:00
## 2253              68      NA      medicine           health 2012-06-30 00:41:00
## 2254              70   20000  construction    craftsmanship 2012-06-29 19:42:00
## 2255              73      NA       science            tech  2012-06-29 01:21:00
## 2256              69      NA         sales       marketing  2012-06-25 21:04:00
## 2257              63      NA     education         academia 2012-06-05 08:10:00
## 2258              67      NA         sales       marketing  2012-06-26 09:02:00
## 2259              69      NA        student            <NA> 2012-06-29 09:59:00
## 2260              70   60000       science            tech  2012-02-08 06:57:00
## 2261              68   30000       science            tech  2012-06-28 22:53:00
## 2262              72  150000         sales       marketing  2012-05-03 08:32:00
## 2263              74      NA       banking       financial  2012-06-29 19:46:00
## 2264              71      NA      computer        hardware  2011-06-29 20:34:00
## 2265              71      NA          other            <NA> 2012-06-19 17:17:00
## 2266              70      NA entertainment            media 2012-06-30 00:45:00
## 2267              67   20000        student            <NA> 2011-08-26 13:05:00
## 2268              68      NA      artistic         musical  2012-06-14 00:12:00
## 2269              71  150000      computer        hardware  2012-06-30 00:05:00
## 2270              73      NA       science            tech  2012-06-29 19:46:00
## 2271              67      NA      medicine           health 2012-06-22 21:58:00
## 2272              68      NA      computer        hardware  2012-06-15 19:26:00
## 2273              71      NA      artistic         musical  2012-06-21 10:45:00
## 2274              72   80000 entertainment            media 2012-06-28 16:25:00
## 2275              71      NA      artistic         musical  2012-01-13 13:33:00
## 2276              67   60000  construction    craftsmanship 2012-04-03 19:30:00
## 2277              71      NA     executive       management 2012-06-25 17:26:00
## 2278              74      NA           <NA>            <NA> 2012-02-06 22:31:00
## 2279              72      NA      computer        hardware  2012-03-07 18:09:00
## 2280              66   80000         sales       marketing  2011-10-24 19:00:00
## 2281              61      NA       banking       financial  2012-04-27 11:55:00
## 2282              68   20000   hospitality           travel 2011-11-21 15:05:00
## 2283              68      NA           <NA>            <NA> 2012-06-27 20:17:00
## 2284              66      NA      medicine           health 2011-12-05 10:15:00
## 2285              67      NA       science            tech  2012-06-29 21:28:00
## 2286              72      NA          other            <NA> 2012-06-25 00:42:00
## 2287              65      NA rather not say            <NA> 2012-06-27 20:57:00
## 2288              67      NA      artistic         musical  2012-06-29 22:56:00
## 2289              62      NA       science            tech  2012-06-09 21:30:00
## 2290              64      NA        student            <NA> 2012-06-28 20:09:00
## 2291              67      NA        student            <NA> 2012-06-29 10:29:00
## 2292              74      NA        student            <NA> 2012-06-27 12:57:00
## 2293              72      NA         sales       marketing  2012-06-29 20:51:00
## 2294              74      NA         sales       marketing  2011-09-14 16:29:00
## 2295              64      NA           <NA>            <NA> 2011-12-27 10:02:00
## 2296              65   30000          other            <NA> 2012-06-29 21:16:00
## 2297              74      NA   hospitality           travel 2012-06-04 12:02:00
## 2298              64      NA      artistic         musical  2012-06-29 19:25:00
## 2299              69 1000000 rather not say            <NA> 2012-06-17 11:20:00
## 2300              71      NA       science            tech  2012-06-29 09:27:00
## 2301              74  150000      artistic         musical  2011-12-15 11:49:00
## 2302              69  100000     executive       management 2012-06-28 16:14:00
## 2303              66      NA           <NA>            <NA> 2012-06-29 19:26:00
## 2304              72      NA        student            <NA> 2012-06-27 15:40:00
## 2305              70   20000           <NA>            <NA> 2012-06-25 22:32:00
## 2306              71      NA           <NA>            <NA> 2012-06-29 22:39:00
## 2307              71      NA           <NA>            <NA> 2011-11-22 19:31:00
## 2308              70      NA       science            tech  2012-06-17 10:02:00
## 2309              59   20000        student            <NA> 2011-09-24 20:39:00
## 2310              71  100000      computer        hardware  2011-12-07 17:18:00
## 2311              70      NA          other            <NA> 2012-06-29 23:21:00
## 2312              69      NA           <NA>            <NA> 2012-04-22 20:41:00
## 2313              71      NA           <NA>            <NA> 2012-03-29 10:48:00
## 2314              70      NA        student            <NA> 2012-06-19 20:32:00
## 2315              66      NA        student            <NA> 2011-10-24 19:25:00
## 2316              60      NA           <NA>            <NA> 2012-06-29 18:34:00
## 2317              70      NA entertainment            media 2011-11-10 09:48:00
## 2318              62      NA           law   legal services 2012-06-30 02:00:00
## 2319              66      NA   hospitality           travel 2012-06-27 18:25:00
## 2320              63      NA       banking       financial  2012-04-05 23:15:00
## 2321              69   30000      artistic         musical  2011-12-13 22:38:00
## 2322              65      NA      medicine           health 2012-06-19 13:34:00
## 2323              66      NA       science            tech  2012-06-26 19:09:00
## 2324              72      NA     executive       management 2012-05-10 01:52:00
## 2325              65      NA      artistic         musical  2012-06-29 13:49:00
## 2326              64      NA entertainment            media 2012-06-24 20:53:00
## 2327              64      NA      medicine           health 2012-04-25 21:00:00
## 2328              71      NA           <NA>            <NA> 2012-06-27 10:56:00
## 2329              71      NA      artistic         musical  2012-06-23 13:25:00
## 2330              61      NA entertainment            media 2012-06-30 00:44:00
## 2331              75      NA     education         academia 2012-06-29 18:11:00
## 2332              69      NA         sales       marketing  2012-06-27 17:15:00
## 2333              66      NA      medicine           health 2012-06-23 00:02:00
## 2334              72      NA           <NA>            <NA> 2012-06-29 00:19:00
## 2335              74   50000      computer        hardware  2012-06-30 02:00:00
## 2336              65   40000       military            <NA> 2011-11-17 11:36:00
## 2337              69      NA       banking       financial  2012-06-28 21:49:00
## 2338              71      NA       science            tech  2012-06-14 09:16:00
## 2339              73      NA rather not say            <NA> 2012-06-29 19:40:00
## 2340              67      NA           <NA>            <NA> 2012-06-29 23:31:00
## 2341              72  250000       banking       financial  2012-06-22 10:03:00
## 2342              65  150000         sales       marketing  2012-06-11 23:53:00
## 2343              68      NA      medicine           health 2012-06-10 05:38:00
## 2344              63   20000          other            <NA> 2012-06-10 23:05:00
## 2345              68      NA        student            <NA> 2012-06-29 13:37:00
## 2346              70   30000      medicine           health 2012-03-19 17:07:00
## 2347              70   80000      artistic         musical  2012-03-06 14:32:00
## 2348              72      NA           <NA>            <NA> 2012-01-08 20:48:00
## 2349              67      NA          other            <NA> 2012-06-16 10:44:00
## 2350              72   30000  construction    craftsmanship 2012-06-24 10:31:00
## 2351              63      NA      artistic         musical  2012-06-15 14:31:00
## 2352              72      NA      medicine           health 2012-06-30 00:41:00
## 2353              68      NA           <NA>            <NA> 2012-05-17 18:00:00
## 2354              72      NA     executive       management 2012-06-06 21:32:00
## 2355              72      NA      computer        hardware  2012-06-24 09:47:00
## 2356              72      NA entertainment            media 2012-06-30 00:26:00
## 2357              71      NA       science            tech  2012-06-29 16:52:00
## 2358              72      NA      artistic         musical  2012-06-24 13:02:00
## 2359              74      NA      computer        hardware  2012-06-29 21:46:00
## 2360              68   50000           <NA>            <NA> 2012-06-29 20:17:00
## 2361              71      NA           <NA>            <NA> 2012-06-29 22:22:00
## 2362              73      NA           <NA>            <NA> 2012-06-25 19:21:00
## 2363              65      NA          other            <NA> 2012-06-26 23:41:00
## 2364              70      NA           <NA>            <NA> 2012-06-29 21:57:00
## 2365              65      NA      medicine           health 2011-11-01 01:13:00
## 2366              66      NA     executive       management 2012-06-22 22:13:00
## 2367              61      NA          other            <NA> 2012-06-28 21:54:00
## 2368              70      NA          other            <NA> 2012-05-05 17:08:00
## 2369              71  250000     executive       management 2012-06-29 13:13:00
## 2370              69   50000          other            <NA> 2012-06-16 00:07:00
## 2371              70  100000     political       government 2012-06-29 22:05:00
## 2372              67      NA  construction    craftsmanship 2012-06-28 15:40:00
## 2373              73      NA          other            <NA> 2012-03-06 20:36:00
## 2374              70      NA          other            <NA> 2012-06-29 10:57:00
## 2375              77      NA entertainment            media 2012-06-29 21:34:00
## 2376              71      NA      artistic         musical  2012-06-18 00:42:00
## 2377              69      NA     education         academia 2012-06-29 22:49:00
## 2378              62      NA        student            <NA> 2012-06-30 00:02:00
## 2379              62      NA           <NA>            <NA> 2011-12-01 14:56:00
## 2380              68      NA           <NA>            <NA> 2012-06-29 22:16:00
## 2381              72      NA           <NA>            <NA> 2012-06-16 23:34:00
## 2382              71      NA entertainment            media 2012-03-31 05:54:00
## 2383              77      NA           <NA>            <NA> 2012-05-13 17:48:00
## 2384              72   40000         sales       marketing  2012-06-10 11:10:00
## 2385              75   30000         sales       marketing  2012-06-29 20:11:00
## 2386              68      NA        student            <NA> 2011-11-26 14:24:00
## 2387              67   40000          other            <NA> 2012-06-29 19:39:00
## 2388              68  100000      medicine           health 2012-06-28 19:09:00
## 2389              68      NA      medicine           health 2012-06-25 12:37:00
## 2390              72      NA           <NA>            <NA> 2012-05-09 03:49:00
## 2391              68      NA       banking       financial  2012-06-19 16:20:00
## 2392              70      NA       science            tech  2012-06-28 20:56:00
## 2393              72   20000      artistic         musical  2012-06-04 02:40:00
## 2394              68   20000        student            <NA> 2012-05-08 11:26:00
## 2395              70      NA         sales       marketing  2012-06-28 22:40:00
## 2396              70   30000      medicine           health 2012-06-29 21:47:00
## 2397              72  100000      computer        hardware  2012-06-29 18:47:00
## 2398              73      NA        student            <NA> 2012-06-30 00:27:00
## 2399              72      NA           <NA>            <NA> 2012-04-12 17:39:00
## 2400              72      NA           <NA>            <NA> 2012-05-18 17:26:00
## 2401              68      NA        student            <NA> 2012-06-26 22:39:00
## 2402              72      NA       banking       financial  2012-06-29 09:06:00
## 2403              69      NA        student            <NA> 2012-06-11 21:28:00
## 2404              68      NA         sales       marketing  2012-06-26 22:54:00
## 2405              72      NA   hospitality           travel 2012-06-13 19:54:00
## 2406              67 1000000      artistic         musical  2012-06-28 23:45:00
## 2407              72      NA         sales       marketing  2012-06-30 00:21:00
## 2408              66      NA       science            tech  2012-06-22 22:58:00
## 2409              71      NA  construction    craftsmanship 2012-06-28 10:10:00
## 2410              69   20000     education         academia 2012-06-28 21:58:00
## 2411              66      NA     education         academia 2012-06-26 21:08:00
## 2412              62      NA         sales       marketing  2012-03-14 15:50:00
## 2413              65      NA     education         academia 2012-05-29 10:51:00
## 2414              67      NA       science            tech  2012-06-28 22:59:00
## 2415              70      NA     education         academia 2012-05-10 13:47:00
## 2416              75   50000 entertainment            media 2012-06-29 22:14:00
## 2417              67      NA   hospitality           travel 2012-06-27 13:45:00
## 2418              72      NA          other            <NA> 2012-06-30 02:05:00
## 2419              70      NA     executive       management 2012-06-09 19:37:00
## 2420              69      NA          other            <NA> 2012-06-27 17:17:00
## 2421              65      NA      computer        hardware  2012-06-28 22:03:00
## 2422              68   50000      clerical   administrative 2012-06-28 13:14:00
## 2423              72   40000 transportation            <NA> 2012-06-29 16:20:00
## 2424              71      NA     education         academia 2012-06-28 15:04:00
## 2425              71  250000     executive       management 2012-06-29 11:14:00
## 2426              69      NA      medicine           health 2012-06-29 16:36:00
## 2427              69      NA       banking       financial  2012-06-29 19:01:00
## 2428              58      NA           <NA>            <NA> 2011-11-17 20:16:00
## 2429              68      NA         sales       marketing  2012-06-13 20:38:00
## 2430              61      NA        student            <NA> 2012-06-28 19:56:00
## 2431              63  100000     executive       management 2012-05-23 00:54:00
## 2432              76      NA           <NA>            <NA> 2012-06-30 00:24:00
## 2433              74      NA         sales       marketing  2011-07-06 08:47:00
## 2434              71   80000      computer        hardware  2012-06-21 20:01:00
## 2435              74      NA entertainment            media 2012-06-29 15:52:00
## 2436              68      NA       science            tech  2012-06-28 15:39:00
## 2437              67   60000           law   legal services 2012-06-04 20:32:00
## 2438              75   20000          other            <NA> 2012-06-30 02:06:00
## 2439              71      NA       banking       financial  2012-06-29 22:16:00
## 2440              70      NA      computer        hardware  2012-03-26 17:44:00
## 2441              71   40000  construction    craftsmanship 2012-06-24 17:59:00
## 2442              71      NA      medicine           health 2012-06-27 22:29:00
## 2443              71      NA        student            <NA> 2012-06-29 11:18:00
## 2444              69      NA         sales       marketing  2011-07-20 22:09:00
## 2445              70      NA           <NA>            <NA> 2011-12-14 15:21:00
## 2446              72  100000          other            <NA> 2011-10-02 09:28:00
## 2447              65      NA           <NA>            <NA> 2012-06-29 07:12:00
## 2448              70   50000      medicine           health 2012-06-29 21:05:00
## 2449              74      NA         sales       marketing  2012-03-22 09:20:00
## 2450              70      NA        student            <NA> 2012-06-29 19:50:00
## 2451              75      NA       science            tech  2012-06-05 21:09:00
## 2452              74      NA      computer        hardware  2012-05-19 20:42:00
## 2453              61      NA           <NA>            <NA> 2012-06-29 18:12:00
## 2454              70      NA         sales       marketing  2012-06-30 02:07:00
## 2455              75      NA       science            tech  2012-06-29 12:35:00
## 2456              76      NA           <NA>            <NA> 2012-06-27 22:00:00
## 2457              73      NA           <NA>            <NA> 2011-09-06 22:20:00
## 2458              76  150000       science            tech  2012-06-29 22:50:00
## 2459              67      NA          other            <NA> 2012-06-29 13:18:00
## 2460              71   20000          other            <NA> 2012-06-30 00:30:00
## 2461              68      NA   hospitality           travel 2011-12-29 22:18:00
## 2462              74   60000         sales       marketing  2012-06-29 17:48:00
## 2463              66      NA         sales       marketing  2012-06-28 17:02:00
## 2464              64      NA      artistic         musical  2012-06-12 11:39:00
## 2465              76      NA          other            <NA> 2012-06-28 13:08:00
## 2466              61      NA        student            <NA> 2012-06-22 19:42:00
## 2467              66      NA          other            <NA> 2012-06-29 21:25:00
## 2468              74   20000     education         academia 2012-04-20 10:17:00
## 2469              74      NA          other            <NA> 2012-06-28 07:41:00
## 2470              67      NA          other            <NA> 2012-02-09 00:38:00
## 2471              71      NA       science            tech  2012-06-17 12:08:00
## 2472              65      NA       banking       financial  2012-06-21 21:17:00
## 2473              69  100000       science            tech  2012-02-14 13:25:00
## 2474              64      NA       science            tech  2012-01-05 22:32:00
## 2475              68      NA        student            <NA> 2012-06-06 04:14:00
## 2476              71      NA      computer        hardware  2012-06-29 23:40:00
## 2477              72      NA           <NA>            <NA> 2011-09-24 22:15:00
## 2478              64   20000     education         academia 2012-06-30 02:08:00
## 2479              70      NA        student            <NA> 2012-06-06 18:37:00
## 2480              67      NA         sales       marketing  2012-06-29 19:43:00
## 2481              64      NA      artistic         musical  2012-06-26 09:04:00
## 2482              63      NA        student            <NA> 2012-06-17 12:09:00
## 2483              64      NA     education         academia 2012-06-29 22:58:00
## 2484              65      NA     education         academia 2012-06-29 16:05:00
## 2485              71      NA      artistic         musical  2012-06-29 20:03:00
## 2486              63      NA     executive       management 2012-06-29 21:56:00
## 2487              68      NA     education         academia 2012-06-28 18:35:00
## 2488              70      NA           <NA>            <NA> 2012-06-30 00:04:00
## 2489              72  100000       science            tech  2012-06-30 02:09:00
## 2490              66      NA           <NA>            <NA> 2012-06-28 23:34:00
## 2491              72      NA     education         academia 2012-06-22 10:45:00
## 2492              73      NA      artistic         musical  2012-06-30 00:30:00
## 2493              61   20000     education         academia 2012-06-18 09:51:00
## 2494              70      NA           <NA>            <NA> 2012-06-07 21:36:00
## 2495              64      NA     executive       management 2012-06-21 12:04:00
## 2496              63      NA           <NA>            <NA> 2012-06-29 23:15:00
## 2497              61      NA           <NA>            <NA> 2012-06-29 20:55:00
## 2498              68      NA        student            <NA> 2012-06-27 14:47:00
## 2499              65      NA      artistic         musical  2012-03-19 23:21:00
## 2500              63      NA           <NA>            <NA> 2012-02-15 23:33:00
## 2501              64      NA           <NA>            <NA> 2012-06-29 16:50:00
## 2502              62      NA         sales       marketing  2012-06-29 20:41:00
## 2503              70      NA     executive       management 2012-06-28 08:15:00
## 2504              66      NA      medicine           health 2012-06-30 02:10:00
## 2505              65   20000        student            <NA> 2012-06-28 12:10:00
## 2506              72      NA        student            <NA> 2012-04-16 17:10:00
## 2507              67      NA      medicine           health 2012-06-29 18:40:00
## 2508              62      NA          other            <NA> 2011-08-31 18:38:00
## 2509              62      NA       banking       financial  2012-06-24 00:03:00
## 2510              65      NA          other            <NA> 2012-06-26 07:21:00
## 2511              67      NA     education         academia 2012-06-29 23:43:00
## 2512              68      NA        student            <NA> 2012-06-29 19:25:00
## 2513              67      NA           <NA>            <NA> 2012-06-27 22:16:00
## 2514              68      NA      artistic         musical  2012-06-01 12:54:00
## 2515              66      NA      medicine           health 2012-06-30 02:11:00
## 2516              68      NA           <NA>            <NA> 2012-06-29 08:30:00
## 2517              64      NA        student            <NA> 2012-06-27 23:52:00
## 2518              68   50000         sales       marketing  2012-06-22 14:46:00
## 2519              65      NA          other            <NA> 2012-06-28 17:07:00
## 2520              70      NA        student            <NA> 2012-06-29 22:23:00
## 2521              70      NA           <NA>            <NA> 2012-06-29 14:18:00
## 2522              73      NA           <NA>            <NA> 2012-06-28 11:58:00
## 2523              64      NA           <NA>            <NA> 2012-06-24 08:27:00
## 2524              66      NA           <NA>            <NA> 2012-01-04 20:20:00
## 2525              68   70000 transportation            <NA> 2012-04-08 07:27:00
## 2526              64   20000      artistic         musical  2012-03-25 16:56:00
## 2527              71      NA           <NA>            <NA> 2012-06-29 23:53:00
## 2528              72   80000       science            tech  2012-05-11 20:55:00
## 2529              71      NA           <NA>            <NA> 2011-07-28 09:45:00
## 2530              65      NA          other            <NA> 2012-03-20 08:53:00
## 2531              71      NA       science            tech  2012-06-29 23:34:00
## 2532              67   80000           <NA>            <NA> 2012-06-29 17:46:00
## 2533              68      NA      computer        hardware  2012-06-28 14:38:00
## 2534              62      NA      medicine           health 2012-06-27 16:26:00
## 2535              63      NA           <NA>            <NA> 2012-06-25 01:22:00
## 2536              68      NA        student            <NA> 2012-06-14 12:34:00
## 2537              62      NA         sales       marketing  2012-06-16 09:56:00
## 2538              63   20000      medicine           health 2012-06-10 07:36:00
## 2539              75      NA           <NA>            <NA> 2012-06-29 22:02:00
## 2540              63      NA      artistic         musical  2012-06-23 17:26:00
## 2541              69      NA        retired            <NA> 2012-06-30 01:02:00
## 2542              61      NA          other            <NA> 2011-11-28 07:55:00
## 2543              63      NA          other            <NA> 2012-06-28 11:31:00
## 2544              67      NA     education         academia 2011-10-17 20:12:00
## 2545              68      NA           <NA>            <NA> 2012-06-29 18:25:00
## 2546              66      NA         sales       marketing  2012-06-29 19:49:00
## 2547              76      NA      computer        hardware  2012-06-29 22:27:00
## 2548              68      NA        student            <NA> 2012-06-29 18:16:00
## 2549              67      NA      artistic         musical  2012-05-27 23:19:00
## 2550              64      NA           <NA>            <NA> 2012-05-28 21:48:00
## 2551              72      NA           <NA>            <NA> 2012-06-29 10:59:00
## 2552              63      NA     executive       management 2012-06-24 20:39:00
## 2553              64      NA           <NA>            <NA> 2012-05-29 18:36:00
## 2554              60      NA   hospitality           travel 2012-04-06 19:50:00
## 2555              64      NA          other            <NA> 2012-06-29 22:16:00
## 2556              73      NA           <NA>            <NA> 2012-06-28 12:05:00
## 2557              73      NA      artistic         musical  2012-06-28 11:47:00
## 2558              61      NA     education         academia 2011-07-25 17:38:00
## 2559              65      NA           <NA>            <NA> 2012-06-29 22:37:00
## 2560              62      NA     education         academia 2012-06-30 02:13:00
## 2561              67      NA           <NA>            <NA> 2012-05-26 15:35:00
## 2562              61      NA         sales       marketing  2012-06-12 16:10:00
## 2563              68      NA     executive       management 2012-06-29 20:31:00
## 2564              66      NA      artistic         musical  2012-06-27 00:11:00
## 2565              68 1000000       science            tech  2012-06-29 10:32:00
## 2566              65   60000   hospitality           travel 2012-06-23 02:04:00
## 2567              67      NA         sales       marketing  2012-06-28 20:35:00
## 2568              64      NA     political       government 2012-06-29 22:11:00
## 2569              66   80000     education         academia 2012-06-29 17:19:00
## 2570              95      NA           <NA>            <NA> 2012-06-29 13:41:00
## 2571              70      NA     executive       management 2012-06-29 00:55:00
## 2572              69      NA          other            <NA> 2012-06-24 23:09:00
## 2573              64      NA         sales       marketing  2012-04-21 08:25:00
## 2574              63      NA     education         academia 2012-06-30 02:14:00
## 2575              65      NA           law   legal services 2012-03-02 13:05:00
## 2576              66      NA           <NA>            <NA> 2011-11-19 16:31:00
## 2577              67      NA           <NA>            <NA> 2012-06-29 21:23:00
## 2578              73      NA           <NA>            <NA> 2012-06-30 02:14:00
## 2579              70   50000      artistic         musical  2012-06-20 13:59:00
## 2580              74  250000       banking       financial  2012-06-20 07:36:00
## 2581              67      NA       science            tech  2012-05-21 20:25:00
## 2582              74 1000000      computer        hardware  2012-06-28 02:15:00
## 2583              61      NA         sales       marketing  2012-06-29 23:08:00
## 2584              74  100000       science            tech  2012-01-23 18:46:00
## 2585              57      NA          other            <NA> 2012-06-29 15:13:00
## 2586              61      NA          other            <NA> 2012-06-29 23:16:00
## 2587              68      NA      medicine           health 2012-06-18 21:59:00
## 2588              67      NA      medicine           health 2012-06-26 23:28:00
## 2589              64      NA       science            tech  2012-05-28 23:02:00
## 2590              72      NA       science            tech  2012-06-29 23:52:00
## 2591              62      NA      clerical   administrative 2012-02-19 00:04:00
## 2592              71 1000000      artistic         musical  2012-02-17 23:41:00
## 2593              66      NA         sales       marketing  2012-06-29 22:46:00
## 2594              72      NA       banking       financial  2012-06-29 22:06:00
## 2595              71  250000          other            <NA> 2011-10-30 16:10:00
## 2596              72      NA           <NA>            <NA> 2012-06-29 23:44:00
## 2597              72      NA           <NA>            <NA> 2012-06-10 12:10:00
## 2598              71  100000           <NA>            <NA> 2012-06-28 21:02:00
## 2599              69      NA           <NA>            <NA> 2012-05-03 16:54:00
## 2600              64      NA     education         academia 2011-11-01 10:34:00
## 2601              71   50000 entertainment            media 2012-06-29 20:55:00
## 2602              67      NA        student            <NA> 2011-10-20 20:00:00
## 2603              72   70000 entertainment            media 2012-06-25 11:01:00
## 2604              74      NA        student            <NA> 2012-06-25 21:36:00
## 2605              74      NA       science            tech  2012-06-21 11:18:00
## 2606              67      NA           <NA>            <NA> 2012-06-26 17:43:00
## 2607              65      NA          other            <NA> 2012-05-27 22:20:00
## 2608              71      NA           law   legal services 2012-06-25 21:24:00
## 2609              72      NA       banking       financial  2012-06-24 17:50:00
## 2610              67      NA     executive       management 2012-06-29 20:47:00
## 2611              66      NA      artistic         musical  2012-06-30 02:16:00
## 2612              74      NA     executive       management 2012-06-30 00:14:00
## 2613              62      NA           <NA>            <NA> 2012-06-26 12:36:00
## 2614              69      NA          other            <NA> 2012-06-29 12:05:00
## 2615              64      NA     education         academia 2012-06-09 08:24:00
## 2616              69      NA       banking       financial  2012-06-18 17:35:00
## 2617              66      NA         sales       marketing  2012-06-28 23:17:00
## 2618              75      NA           <NA>            <NA> 2011-10-26 10:48:00
## 2619              70      NA entertainment            media 2012-06-30 00:07:00
## 2620              72      NA        student            <NA> 2012-06-29 16:19:00
## 2621              71      NA           <NA>            <NA> 2012-06-24 20:46:00
## 2622              70      NA      computer        hardware  2012-05-23 15:55:00
## 2623              71      NA entertainment            media 2012-06-26 14:48:00
## 2624              67      NA           <NA>            <NA> 2012-06-29 16:54:00
## 2625              69  100000      computer        hardware  2012-06-28 08:29:00
## 2626              71   60000          other            <NA> 2012-06-16 08:03:00
## 2627              66      NA       science            tech  2012-06-29 01:12:00
## 2628              71   80000      computer        hardware  2012-06-15 21:59:00
## 2629              64      NA       science            tech  2012-05-01 23:12:00
## 2630              68      NA       banking       financial  2012-06-29 16:22:00
## 2631              74      NA      computer        hardware  2012-06-28 11:12:00
## 2632              68      NA      artistic         musical  2012-04-05 06:25:00
## 2633              67      NA      computer        hardware  2012-01-17 20:30:00
## 2634              70   20000      artistic         musical  2012-06-27 16:02:00
## 2635              68      NA     executive       management 2012-06-29 14:09:00
## 2636              67      NA       banking       financial  2012-06-29 12:07:00
## 2637              72   80000  construction    craftsmanship 2012-06-16 19:21:00
## 2638              70      NA      artistic         musical  2012-06-29 18:45:00
## 2639              64   30000        student            <NA> 2012-06-26 20:16:00
## 2640              62   30000      medicine           health 2012-05-24 16:45:00
## 2641              64      NA           <NA>            <NA> 2012-06-20 20:28:00
## 2642              63      NA     executive       management 2012-06-27 21:38:00
## 2643              62      NA        student            <NA> 2012-06-22 01:31:00
## 2644              67      NA         sales       marketing  2012-06-28 19:45:00
## 2645              70      NA      medicine           health 2012-06-27 14:14:00
## 2646              65      NA      medicine           health 2012-06-30 00:24:00
## 2647              66      NA           law   legal services 2012-06-17 22:01:00
## 2648              67      NA          other            <NA> 2011-12-04 16:54:00
## 2649              67      NA      medicine           health 2011-10-15 18:36:00
## 2650              62      NA         sales       marketing  2012-03-23 20:53:00
## 2651              70      NA          other            <NA> 2012-06-29 21:07:00
## 2652              63      NA           law   legal services 2012-06-13 14:18:00
## 2653              63      NA        student            <NA> 2012-04-28 14:49:00
## 2654              62      NA   hospitality           travel 2012-06-16 14:47:00
## 2655              70      NA           <NA>            <NA> 2012-06-29 12:52:00
## 2656              67      NA           <NA>            <NA> 2012-03-23 10:11:00
## 2657              66      NA           <NA>            <NA> 2012-06-29 21:36:00
## 2658              63      NA          other            <NA> 2012-06-22 10:33:00
## 2659              62   30000      medicine           health 2011-09-10 21:57:00
## 2660              60      NA      medicine           health 2012-06-27 12:56:00
## 2661              69      NA        student            <NA> 2012-06-27 23:59:00
## 2662              74   40000      medicine           health 2012-06-29 18:17:00
## 2663              72  100000          other            <NA> 2012-06-26 17:22:00
## 2664              64   20000      artistic         musical  2012-06-29 23:13:00
## 2665              67      NA           <NA>            <NA> 2012-06-20 11:00:00
## 2666              63      NA          other            <NA> 2012-06-24 10:37:00
## 2667              67      NA       science            tech  2012-06-26 19:35:00
## 2668              65      NA     education         academia 2012-06-27 22:03:00
## 2669              64      NA        student            <NA> 2012-06-29 22:50:00
## 2670              67 1000000        student            <NA> 2011-12-12 17:19:00
## 2671              65   30000      medicine           health 2012-06-29 21:05:00
## 2672              66      NA        student            <NA> 2011-10-23 16:09:00
## 2673              62      NA           <NA>            <NA> 2012-06-17 18:13:00
## 2674              62      NA          other            <NA> 2012-05-17 00:00:00
## 2675              71      NA          other            <NA> 2012-06-29 18:48:00
## 2676              69      NA           <NA>            <NA> 2012-05-20 04:47:00
## 2677              67      NA      medicine           health 2011-08-02 20:38:00
## 2678              59      NA      medicine           health 2012-06-24 19:02:00
## 2679              64      NA      computer        hardware  2012-06-10 22:29:00
## 2680              69      NA      computer        hardware  2012-06-30 00:40:00
## 2681              73 1000000        student            <NA> 2012-06-30 02:20:00
## 2682              64      NA          other            <NA> 2012-06-27 11:05:00
## 2683              72      NA       science            tech  2012-06-29 19:54:00
## 2684              75      NA     education         academia 2012-06-27 17:24:00
## 2685              68      NA     education         academia 2012-06-25 23:11:00
## 2686              67      NA          other            <NA> 2012-06-29 12:43:00
## 2687              70      NA   hospitality           travel 2012-04-08 02:38:00
## 2688              64      NA     executive       management 2012-06-18 00:36:00
## 2689              61      NA       banking       financial  2012-06-30 01:15:00
## 2690              66      NA       banking       financial  2012-04-15 11:27:00
## 2691              68      NA           <NA>            <NA> 2012-03-30 18:51:00
## 2692              67      NA        student            <NA> 2012-03-19 14:59:00
## 2693              60   20000         sales       marketing  2012-06-28 10:29:00
## 2694              64      NA          other            <NA> 2012-06-30 01:09:00
## 2695              73      NA           <NA>            <NA> 2012-04-09 23:56:00
## 2696              66      NA           <NA>            <NA> 2012-06-24 18:38:00
## 2697              73   50000       science            tech  2012-06-28 23:49:00
## 2698              62      NA           law   legal services 2012-04-21 21:52:00
## 2699              66      NA        student            <NA> 2012-06-28 04:01:00
## 2700              72      NA          other            <NA> 2012-06-20 15:05:00
## 2701              70      NA  construction    craftsmanship 2012-06-29 22:39:00
## 2702              62      NA         sales       marketing  2012-06-25 18:54:00
## 2703              67   40000          other            <NA> 2012-06-24 14:45:00
## 2704              66      NA         sales       marketing  2012-06-30 00:32:00
## 2705              69      NA           <NA>            <NA> 2011-10-21 16:33:00
## 2706              67      NA        student            <NA> 2012-05-31 14:33:00
## 2707              68      NA           <NA>            <NA> 2012-06-20 19:12:00
## 2708              69   30000           <NA>            <NA> 2012-06-27 22:12:00
## 2709              67      NA     education         academia 2012-06-26 22:05:00
## 2710              65      NA      medicine           health 2012-06-26 08:32:00
## 2711              67      NA           <NA>            <NA> 2012-06-19 18:03:00
## 2712              72      NA           law   legal services 2012-03-24 01:20:00
## 2713              73   50000  construction    craftsmanship 2012-05-08 05:12:00
## 2714              65      NA   hospitality           travel 2012-06-29 19:59:00
## 2715              65  100000       banking       financial  2012-06-20 13:21:00
## 2716              70      NA          other            <NA> 2012-06-29 22:25:00
## 2717              68      NA          other            <NA> 2012-06-29 00:13:00
## 2718              59      NA     education         academia 2011-10-13 15:34:00
## 2719              66      NA entertainment            media 2012-06-29 23:57:00
## 2720              68      NA     education         academia 2012-06-29 21:18:00
## 2721              73  100000      computer        hardware  2012-04-30 22:29:00
## 2722              68      NA   hospitality           travel 2012-06-30 02:22:00
## 2723              74      NA        student            <NA> 2012-06-13 17:51:00
## 2724              67      NA      medicine           health 2012-06-28 00:26:00
## 2725              65  250000     executive       management 2012-04-10 23:40:00
## 2726              74      NA      computer        hardware  2012-06-30 00:41:00
## 2727              71      NA      computer        hardware  2012-06-27 06:07:00
## 2728              72      NA entertainment            media 2012-06-29 12:31:00
## 2729              60      NA           <NA>            <NA> 2012-05-16 21:10:00
## 2730              64      NA     education         academia 2012-05-16 07:29:00
## 2731              68      NA      artistic         musical  2012-06-26 20:27:00
## 2732              69      NA           law   legal services 2012-06-29 13:16:00
## 2733              68      NA      medicine           health 2012-05-29 22:39:00
## 2734              71  100000 entertainment            media 2012-06-29 21:46:00
## 2735              71      NA           <NA>            <NA> 2012-04-23 15:59:00
## 2736              74      NA         sales       marketing  2012-06-28 20:42:00
## 2737              67   50000      computer        hardware  2012-06-30 00:01:00
## 2738              68  100000           <NA>            <NA> 2012-06-21 19:48:00
## 2739              67      NA           <NA>            <NA> 2012-06-21 06:27:00
## 2740              63      NA           <NA>            <NA> 2012-06-30 00:58:00
## 2741              67 1000000           <NA>            <NA> 2012-06-10 01:21:00
## 2742              68      NA      computer        hardware  2012-06-27 08:57:00
## 2743              61   40000      medicine           health 2012-06-27 23:26:00
## 2744              64      NA      medicine           health 2012-06-28 22:36:00
## 2745              67      NA       banking       financial  2012-05-17 01:01:00
## 2746              74      NA       science            tech  2012-06-29 15:09:00
## 2747              62      NA          other            <NA> 2012-05-19 14:31:00
## 2748              69  100000       science            tech  2012-06-29 17:54:00
## 2749              64      NA        student            <NA> 2012-05-23 21:45:00
## 2750              64      NA      medicine           health 2012-06-30 02:23:00
## 2751              65      NA       science            tech  2012-06-28 21:55:00
## 2752              70      NA     education         academia 2012-06-27 21:28:00
## 2753              62      NA          other            <NA> 2012-06-29 17:50:00
## 2754              70      NA      artistic         musical  2012-06-28 20:44:00
## 2755              68  150000     executive       management 2012-06-29 22:56:00
## 2756              75      NA      computer        hardware  2012-06-30 01:11:00
## 2757              77      NA      computer        hardware  2012-06-29 07:17:00
## 2758              67      NA     education         academia 2012-05-29 10:49:00
## 2759              67      NA       science            tech  2012-03-31 01:48:00
## 2760              71      NA         sales       marketing  2012-06-28 20:28:00
## 2761              68      NA           <NA>            <NA> 2012-06-29 17:47:00
## 2762              71      NA      medicine           health 2012-06-25 09:21:00
## 2763              72      NA     executive       management 2012-06-29 18:09:00
## 2764              73      NA          other            <NA> 2012-06-18 19:35:00
## 2765              71      NA     executive       management 2012-06-29 13:32:00
## 2766              69      NA           <NA>            <NA> 2012-06-29 14:39:00
## 2767              69      NA       science            tech  2012-06-29 19:25:00
## 2768              66      NA         sales       marketing  2012-06-20 19:29:00
## 2769              68      NA           <NA>            <NA> 2012-06-27 20:05:00
## 2770              72      NA           <NA>            <NA> 2012-04-12 01:32:00
## 2771              68      NA       science            tech  2012-06-29 22:21:00
## 2772              78      NA      artistic         musical  2012-06-29 13:23:00
## 2773              70   20000  construction    craftsmanship 2012-06-11 16:59:00
## 2774              71      NA      artistic         musical  2012-06-29 14:44:00
## 2775              73   20000        retired            <NA> 2012-06-17 15:32:00
## 2776              75      NA           <NA>            <NA> 2012-06-27 09:04:00
## 2777              71      NA        student            <NA> 2012-06-12 16:25:00
## 2778              74      NA           law   legal services 2012-06-27 12:11:00
## 2779              68      NA     executive       management 2012-06-25 16:49:00
## 2780              65      NA entertainment            media 2012-05-02 13:16:00
## 2781              70      NA        student            <NA> 2012-06-27 17:15:00
## 2782              74   60000     executive       management 2012-06-30 00:49:00
## 2783              74 1000000           <NA>            <NA> 2012-06-26 23:08:00
## 2784              72   70000       science            tech  2011-06-29 20:30:00
## 2785              70      NA          other            <NA> 2012-06-27 15:29:00
## 2786              72      NA      artistic         musical  2012-06-23 07:39:00
## 2787              73      NA       science            tech  2012-06-29 20:04:00
## 2788              69      NA           <NA>            <NA> 2012-06-27 22:43:00
## 2789              74      NA      computer        hardware  2012-06-13 22:30:00
## 2790              73      NA           law   legal services 2012-06-30 02:25:00
## 2791              66      NA        retired            <NA> 2012-06-22 14:14:00
## 2792              70      NA transportation            <NA> 2011-09-06 17:47:00
## 2793              76      NA       science            tech  2012-06-28 17:31:00
## 2794              66      NA       science            tech  2012-06-14 03:02:00
## 2795              73   30000   hospitality           travel 2012-02-21 21:16:00
## 2796              65      NA entertainment            media 2012-06-16 10:02:00
## 2797              65      NA        student            <NA> 2012-06-30 00:00:00
## 2798              66      NA         sales       marketing  2012-06-21 19:10:00
## 2799              72      NA          other            <NA> 2012-06-29 22:58:00
## 2800              62      NA          other            <NA> 2012-06-24 15:33:00
## 2801              76      NA      computer        hardware  2012-06-30 00:54:00
## 2802              65      NA          other            <NA> 2012-06-29 21:25:00
## 2803              63      NA      artistic         musical  2011-07-23 21:10:00
## 2804              68      NA         sales       marketing  2012-06-27 16:51:00
## 2805              65   40000       banking       financial  2011-07-07 15:11:00
## 2806              69      NA         sales       marketing  2012-06-29 02:50:00
## 2807              74      NA       science            tech  2012-06-28 23:03:00
## 2808              62      NA           <NA>            <NA> 2012-06-27 22:57:00
## 2809              72      NA      computer        hardware  2012-06-29 23:20:00
## 2810              66      NA     education         academia 2012-06-29 22:09:00
## 2811              62      NA           <NA>            <NA> 2012-06-29 00:06:00
## 2812              67      NA      medicine           health 2012-06-17 21:22:00
## 2813              70   80000      medicine           health 2012-02-09 17:26:00
## 2814              69      NA      medicine           health 2012-05-17 21:32:00
## 2815              64      NA           <NA>            <NA> 2012-06-29 20:40:00
## 2816              70      NA      computer        hardware  2012-06-29 19:15:00
## 2817              71      NA          other            <NA> 2012-06-29 13:14:00
## 2818              72      NA       banking       financial  2012-06-13 19:53:00
## 2819              60      NA           <NA>            <NA> 2012-06-28 22:36:00
## 2820              70      NA      computer        hardware  2012-06-29 20:53:00
## 2821              68      NA           <NA>            <NA> 2011-12-08 20:21:00
## 2822              68      NA       banking       financial  2012-05-16 19:41:00
## 2823              67      NA          other            <NA> 2012-06-28 21:53:00
## 2824              69      NA           <NA>            <NA> 2012-06-28 07:36:00
## 2825              67      NA         sales       marketing  2012-06-29 22:39:00
## 2826              72      NA           <NA>            <NA> 2012-06-29 22:37:00
## 2827              64      NA         sales       marketing  2012-06-25 23:03:00
## 2828              69   20000      medicine           health 2012-06-28 20:08:00
## 2829              68   20000          other            <NA> 2012-06-28 23:37:00
## 2830              66      NA          other            <NA> 2012-06-27 15:40:00
## 2831              64      NA     education         academia 2012-05-19 14:27:00
## 2832              70      NA      computer        hardware  2012-06-25 03:07:00
## 2833              66   70000      artistic         musical  2012-06-30 00:29:00
## 2834              73      NA       banking       financial  2012-06-29 21:46:00
## 2835              72      NA      artistic         musical  2012-06-29 21:03:00
## 2836              67   60000       science            tech  2011-10-25 15:42:00
## 2837              69      NA entertainment            media 2012-06-15 11:42:00
## 2838              73      NA       science            tech  2012-06-28 07:11:00
## 2839              68   80000          other            <NA> 2012-01-16 21:18:00
## 2840              70      NA           <NA>            <NA> 2012-06-29 23:52:00
## 2841              69   40000       banking       financial  2012-06-29 11:25:00
## 2842              63      NA          other            <NA> 2012-06-29 12:01:00
## 2843              65      NA          other            <NA> 2012-06-19 14:00:00
## 2844              68      NA        student            <NA> 2012-06-09 16:24:00
## 2845              73      NA       science            tech  2012-06-29 19:25:00
## 2846              68      NA      artistic         musical  2012-06-18 15:56:00
## 2847              66      NA     executive       management 2012-05-30 09:57:00
## 2848              66      NA transportation            <NA> 2012-06-29 22:22:00
## 2849              64      NA          other            <NA> 2012-02-01 09:32:00
## 2850              65      NA          other            <NA> 2012-02-28 22:52:00
## 2851              72   70000  construction    craftsmanship 2012-06-28 22:05:00
## 2852              68  100000         sales       marketing  2012-06-25 11:00:00
## 2853              71  150000           <NA>            <NA> 2012-04-26 15:38:00
## 2854              71      NA        student            <NA> 2012-06-26 22:10:00
## 2855              67      NA           <NA>            <NA> 2012-06-23 09:07:00
## 2856              62      NA      medicine           health 2012-05-07 09:53:00
## 2857              68      NA      computer        hardware  2011-12-07 17:48:00
## 2858              60      NA           <NA>            <NA> 2011-11-09 15:29:00
## 2859              73   40000         sales       marketing  2012-02-06 16:55:00
## 2860              71      NA rather not say            <NA> 2011-09-12 10:59:00
## 2861              71   40000      computer        hardware  2011-10-19 19:52:00
## 2862              70      NA       banking       financial  2012-06-29 21:29:00
## 2863              72      NA           <NA>            <NA> 2012-06-28 21:58:00
## 2864              64      NA          other            <NA> 2012-06-19 21:38:00
## 2865              66      NA      medicine           health 2012-06-23 23:55:00
## 2866              64      NA     executive       management 2012-06-17 00:04:00
## 2867              67   80000         sales       marketing  2012-06-06 23:37:00
## 2868              61      NA      clerical   administrative 2012-06-28 15:40:00
## 2869              68      NA         sales       marketing  2012-06-25 22:55:00
## 2870              65      NA          other            <NA> 2012-06-07 11:07:00
## 2871              62      NA      medicine           health 2012-06-26 20:21:00
## 2872              64      NA entertainment            media 2012-06-29 23:48:00
## 2873              69   30000         sales       marketing  2012-06-29 07:56:00
## 2874              60      NA           law   legal services 2012-06-29 23:22:00
## 2875              66      NA       science            tech  2012-06-03 15:56:00
## 2876              62      NA     executive       management 2012-06-09 12:56:00
## 2877              72      NA        student            <NA> 2012-06-29 22:50:00
## 2878              64      NA        student            <NA> 2012-01-04 22:47:00
## 2879              73      NA       science            tech  2012-06-30 01:06:00
## 2880              61      NA           <NA>            <NA> 2012-06-25 14:11:00
## 2881              70      NA       banking       financial  2012-06-24 20:34:00
## 2882              65      NA         sales       marketing  2012-06-29 16:39:00
## 2883              61      NA        student            <NA> 2012-03-23 01:08:00
## 2884              60      NA         sales       marketing  2012-06-25 22:51:00
## 2885              65      NA      artistic         musical  2012-06-25 22:21:00
## 2886              74      NA           <NA>            <NA> 2012-06-29 23:54:00
## 2887              68      NA      artistic         musical  2012-04-25 21:25:00
## 2888              70      NA      artistic         musical  2012-06-28 22:14:00
## 2889              68      NA       banking       financial  2012-05-18 06:04:00
## 2890              71      NA        student            <NA> 2012-05-23 01:13:00
## 2891              73   60000       science            tech  2012-06-16 23:56:00
## 2892              66      NA          other            <NA> 2012-06-25 14:48:00
## 2893              63      NA         sales       marketing  2012-06-24 00:03:00
## 2894              76      NA entertainment            media 2012-06-29 23:02:00
## 2895              68      NA        student            <NA> 2012-06-15 16:09:00
## 2896              74      NA   hospitality           travel 2012-06-28 09:03:00
## 2897              70   40000      clerical   administrative 2011-09-14 07:06:00
## 2898              69      NA         sales       marketing  2012-06-27 21:21:00
## 2899              68      NA       science            tech  2012-06-29 23:42:00
## 2900              61   50000      computer        hardware  2012-06-22 14:22:00
## 2901              62      NA   hospitality           travel 2012-06-25 09:25:00
## 2902              66   50000   hospitality           travel 2011-09-12 22:32:00
## 2903              68      NA           <NA>            <NA> 2011-11-25 20:48:00
## 2904              67      NA rather not say            <NA> 2012-06-28 14:29:00
## 2905              62      NA           <NA>            <NA> 2012-06-29 11:51:00
## 2906              62      NA     political       government 2012-06-25 10:23:00
## 2907              67      NA     education         academia 2012-06-29 19:52:00
## 2908              70   60000         sales       marketing  2012-06-20 09:40:00
## 2909              67      NA           <NA>            <NA> 2012-06-29 21:47:00
## 2910              63      NA           <NA>            <NA> 2011-11-01 15:42:00
## 2911              63      NA         sales       marketing  2012-06-28 23:02:00
## 2912              65      NA         sales       marketing  2012-06-27 21:26:00
## 2913              64      NA           <NA>            <NA> 2012-01-17 18:41:00
## 2914              70      NA      artistic         musical  2012-06-28 21:32:00
## 2915              63      NA        student            <NA> 2012-06-29 17:11:00
## 2916              69   20000        student            <NA> 2012-06-23 10:31:00
## 2917              63      NA        student            <NA> 2012-06-19 22:38:00
## 2918              66  250000          other            <NA> 2012-04-06 22:14:00
## 2919              70   50000   hospitality           travel 2012-06-27 12:42:00
## 2920              63      NA           <NA>            <NA> 2011-10-07 07:22:00
## 2921              65      NA        student            <NA> 2012-06-29 21:13:00
## 2922              63      NA        student            <NA> 2012-03-03 12:48:00
## 2923              65      NA           <NA>            <NA> 2012-06-27 15:09:00
## 2924              63      NA entertainment            media 2012-06-28 14:08:00
## 2925              66      NA           <NA>            <NA> 2012-06-29 15:15:00
## 2926              66      NA          other            <NA> 2011-11-20 12:11:00
## 2927              65      NA      artistic         musical  2012-06-30 01:32:00
## 2928              65      NA     education         academia 2012-06-25 11:04:00
## 2929              63      NA        student            <NA> 2012-06-28 18:08:00
## 2930              73      NA rather not say            <NA> 2012-06-28 17:50:00
## 2931              70      NA           <NA>            <NA> 2011-11-03 15:20:00
## 2932              75  150000      computer        hardware  2012-03-31 00:35:00
## 2933              68      NA      computer        hardware  2011-07-28 18:34:00
## 2934              67  100000           <NA>            <NA> 2012-06-28 21:46:00
## 2935              73      NA       banking       financial  2012-06-30 00:48:00
## 2936              68      NA         sales       marketing  2012-06-29 14:05:00
## 2937              73      NA     education         academia 2012-05-24 22:41:00
## 2938              64   20000           <NA>            <NA> 2012-06-25 06:09:00
## 2939              68   20000        student            <NA> 2012-06-03 20:26:00
## 2940              71      NA           <NA>            <NA> 2012-06-11 20:17:00
## 2941              66      NA          other            <NA> 2012-04-13 10:40:00
## 2942              64      NA     education         academia 2012-06-30 00:34:00
## 2943              62      NA      medicine           health 2012-06-27 13:39:00
## 2944              72      NA         sales       marketing  2012-03-26 22:26:00
## 2945              64      NA           <NA>            <NA> 2012-06-29 23:52:00
## 2946              73      NA      artistic         musical  2012-06-29 23:53:00
## 2947              69      NA      computer        hardware  2012-06-29 14:41:00
## 2948              67      NA           <NA>            <NA> 2011-10-12 09:58:00
## 2949              68      NA       science            tech  2012-06-25 21:05:00
## 2950              67      NA  construction    craftsmanship 2012-03-20 23:54:00
## 2951              72      NA       science            tech  2012-06-24 23:31:00
## 2952              64      NA           <NA>            <NA> 2012-06-27 01:16:00
## 2953              74      NA           <NA>            <NA> 2012-06-15 09:45:00
## 2954              71      NA      medicine           health 2012-06-29 23:52:00
## 2955              71      NA          other            <NA> 2012-06-24 20:03:00
## 2956              63      NA entertainment            media 2012-03-07 11:38:00
## 2957              73      NA          other            <NA> 2012-06-22 17:31:00
## 2958              70      NA  construction    craftsmanship 2012-05-24 21:41:00
## 2959              65      NA          other            <NA> 2012-06-29 21:16:00
## 2960              65      NA     education         academia 2012-06-09 18:37:00
## 2961              66      NA          other            <NA> 2012-06-08 14:50:00
## 2962              58      NA          other            <NA> 2012-06-27 01:41:00
## 2963              76   20000        student            <NA> 2011-11-04 14:40:00
## 2964              70      NA     education         academia 2012-01-22 13:19:00
## 2965              64   20000     unemployed            <NA> 2012-04-12 20:16:00
## 2966              68      NA rather not say            <NA> 2012-06-30 02:35:00
## 2967              70      NA          other            <NA> 2012-01-01 22:56:00
## 2968              64      NA      medicine           health 2012-06-28 13:44:00
## 2969              63      NA          other            <NA> 2012-05-29 08:43:00
## 2970              66      NA      medicine           health 2012-06-29 20:25:00
## 2971              65      NA     education         academia 2012-06-29 15:32:00
## 2972              67      NA     executive       management 2012-06-29 18:44:00
## 2973              66      NA     executive       management 2012-06-26 14:42:00
## 2974              67      NA           <NA>            <NA> 2012-06-27 12:12:00
## 2975              64      NA     education         academia 2011-11-14 22:13:00
## 2976              60   20000     education         academia 2011-11-23 16:23:00
## 2977              70   20000   hospitality           travel 2011-07-11 23:12:00
## 2978              65 1000000         sales       marketing  2012-06-14 15:07:00
## 2979              60   20000        student            <NA> 2012-02-15 11:03:00
## 2980              64      NA           law   legal services 2012-06-20 17:58:00
## 2981              63      NA           law   legal services 2012-06-29 20:23:00
## 2982              63      NA      artistic         musical  2012-02-06 17:31:00
## 2983              66      NA          other            <NA> 2012-06-06 23:54:00
## 2984              63      NA           <NA>            <NA> 2012-06-29 23:31:00
## 2985              66      NA     education         academia 2012-06-29 19:39:00
## 2986              69   20000 rather not say            <NA> 2011-08-13 18:06:00
## 2987              66      NA      medicine           health 2011-09-06 21:36:00
## 2988              72      NA      medicine           health 2012-04-11 23:50:00
## 2989              66      NA      artistic         musical  2012-04-27 21:34:00
## 2990              72      NA         sales       marketing  2012-06-27 18:25:00
## 2991              71      NA      computer        hardware  2011-12-29 00:26:00
## 2992              68      NA          other            <NA> 2012-06-29 09:38:00
## 2993              65      NA         sales       marketing  2012-06-28 22:17:00
## 2994              70  100000       banking       financial  2012-06-29 02:29:00
## 2995              75      NA       science            tech  2012-06-29 17:16:00
## 2996              74      NA       science            tech  2012-06-21 13:24:00
## 2997              66      NA transportation            <NA> 2012-06-20 21:57:00
## 2998              70      NA          other            <NA> 2012-06-22 12:31:00
## 2999              66      NA         sales       marketing  2012-06-30 00:19:00
## 3000              72      NA          other            <NA> 2011-10-16 23:55:00
## 3001              69      NA           <NA>            <NA> 2012-06-28 22:42:00
## 3002              68      NA       science            tech  2012-05-29 11:46:00
## 3003              66      NA      artistic         musical  2012-06-25 18:32:00
## 3004              65   20000          other            <NA> 2011-12-11 15:57:00
## 3005              61      NA      artistic         musical  2012-06-30 00:21:00
## 3006              64      NA           <NA>            <NA> 2011-08-26 00:05:00
## 3007              66      NA      computer        hardware  2012-03-04 21:37:00
## 3008              65      NA     education         academia 2012-06-29 22:58:00
## 3009              70      NA          other            <NA> 2012-06-29 20:57:00
## 3010              67      NA      medicine           health 2012-06-30 01:02:00
## 3011              67   20000     political       government 2012-05-17 02:33:00
## 3012              70      NA          other            <NA> 2011-12-27 12:27:00
## 3013              68   20000        student            <NA> 2012-06-24 18:37:00
## 3014              66      NA entertainment            media 2012-06-29 17:31:00
## 3015              65      NA entertainment            media 2012-06-29 16:14:00
## 3016              69      NA          other            <NA> 2012-06-29 14:02:00
## 3017              95      NA           law   legal services 2012-04-23 23:36:00
## 3018              67      NA           <NA>            <NA> 2011-09-25 03:47:00
## 3019              67      NA          other            <NA> 2012-04-24 22:45:00
## 3020              75      NA     executive       management 2012-06-19 16:15:00
## 3021              69      NA         sales       marketing  2012-06-24 11:11:00
## 3022              66      NA       science            tech  2012-06-25 20:37:00
## 3023              71      NA           <NA>            <NA> 2011-09-20 11:36:00
## 3024              70   40000  construction    craftsmanship 2012-06-30 02:38:00
## 3025              65      NA           <NA>            <NA> 2012-06-26 08:26:00
## 3026              64      NA     education         academia 2012-02-25 10:47:00
## 3027              69      NA          other            <NA> 2012-06-24 16:18:00
## 3028              72      NA      artistic         musical  2012-03-29 05:55:00
## 3029              70      NA       science            tech  2012-06-30 00:11:00
## 3030              68      NA       banking       financial  2012-04-15 18:04:00
## 3031              63      NA           <NA>            <NA> 2012-06-30 01:32:00
## 3032              70      NA         sales       marketing  2012-06-28 21:06:00
## 3033              63      NA         sales       marketing  2012-06-05 01:15:00
## 3034              66      NA         sales       marketing  2012-06-29 16:39:00
## 3035              63      NA           <NA>            <NA> 2011-11-10 22:51:00
## 3036              65   80000      computer        hardware  2012-06-29 14:19:00
## 3037              65      NA       science            tech  2012-06-29 22:02:00
## 3038              65      NA         sales       marketing  2012-06-25 23:17:00
## 3039              66  100000          other            <NA> 2012-06-20 14:58:00
## 3040              63      NA      medicine           health 2012-06-29 19:17:00
## 3041              67      NA      medicine           health 2012-06-22 10:22:00
## 3042              62   30000     education         academia 2012-06-29 22:51:00
## 3043              68      NA     education         academia 2012-06-23 16:54:00
## 3044              73  100000      medicine           health 2012-06-29 12:26:00
## 3045              61      NA      artistic         musical  2012-06-29 20:15:00
## 3046              73      NA     education         academia 2012-02-22 20:57:00
## 3047              61   20000      medicine           health 2012-06-30 00:52:00
## 3048              74      NA           <NA>            <NA> 2012-02-12 22:05:00
## 3049              65      NA  construction    craftsmanship 2012-06-29 18:21:00
## 3050              74      NA     education         academia 2012-04-20 21:09:00
## 3051              65      NA           law   legal services 2012-06-17 13:50:00
## 3052              65      NA entertainment            media 2012-06-19 13:50:00
## 3053              70      NA          other            <NA> 2012-06-29 14:50:00
## 3054              73      NA  construction    craftsmanship 2012-06-16 11:02:00
## 3055              74      NA       science            tech  2012-06-28 07:16:00
## 3056              68  100000         sales       marketing  2012-06-29 08:36:00
## 3057              71   80000  construction    craftsmanship 2012-06-20 08:11:00
## 3058              71      NA           <NA>            <NA> 2012-06-14 21:33:00
## 3059              67      NA      artistic         musical  2012-06-29 22:42:00
## 3060              73      NA        student            <NA> 2012-01-27 22:07:00
## 3061              73   20000      medicine           health 2011-11-06 05:49:00
## 3062              72   70000      artistic         musical  2012-05-01 08:05:00
## 3063              74      NA      computer        hardware  2012-05-29 20:25:00
## 3064              70      NA           law   legal services 2012-06-29 21:54:00
## 3065              74      NA        student            <NA> 2012-06-28 18:05:00
## 3066              73      NA           <NA>            <NA> 2012-06-22 17:28:00
## 3067              71      NA      artistic         musical  2012-06-29 23:45:00
## 3068              67      NA      computer        hardware  2012-06-30 01:27:00
## 3069              68  150000     executive       management 2012-03-09 15:09:00
## 3070              76   70000      medicine           health 2012-04-30 07:15:00
## 3071              66      NA           law   legal services 2012-06-29 19:39:00
## 3072              68      NA      artistic         musical  2012-06-29 14:22:00
## 3073              68      NA     education         academia 2012-06-24 16:59:00
## 3074              62      NA      medicine           health 2012-05-29 00:38:00
## 3075              72      NA       science            tech  2012-06-10 22:43:00
## 3076              67      NA rather not say            <NA> 2012-06-26 13:52:00
## 3077              63      NA        student            <NA> 2012-06-29 21:31:00
## 3078              67      NA      medicine           health 2012-06-23 19:52:00
## 3079              74      NA           <NA>            <NA> 2012-06-27 01:27:00
## 3080              78  100000      computer        hardware  2012-06-29 21:36:00
## 3081              67      NA          other            <NA> 2012-06-28 11:48:00
## 3082              65   20000        student            <NA> 2012-04-04 21:14:00
## 3083              67      NA      artistic         musical  2012-06-17 03:37:00
## 3084              71      NA          other            <NA> 2012-06-29 11:16:00
## 3085              70      NA rather not say            <NA> 2011-10-13 21:49:00
## 3086              69   50000      artistic         musical  2012-06-30 00:35:00
## 3087              68  150000           <NA>            <NA> 2012-06-12 14:50:00
## 3088              66   30000      artistic         musical  2012-06-25 10:42:00
## 3089              71   50000         sales       marketing  2012-06-26 08:56:00
## 3090              69      NA           <NA>            <NA> 2012-06-29 15:12:00
## 3091              62   20000 entertainment            media 2011-10-10 02:49:00
## 3092              65      NA        student            <NA> 2012-06-30 02:41:00
## 3093              72  100000     executive       management 2012-06-29 11:11:00
## 3094              63      NA     education         academia 2012-06-07 15:41:00
## 3095              64      NA     education         academia 2012-06-12 12:40:00
## 3096              65      NA      medicine           health 2012-06-21 21:30:00
## 3097              70      NA entertainment            media 2012-06-14 19:05:00
## 3098              76  250000       banking       financial  2012-06-30 00:02:00
## 3099              65   80000     education         academia 2012-06-25 07:51:00
## 3100              69      NA      medicine           health 2012-06-29 11:27:00
## 3101              70      NA        student            <NA> 2012-06-29 18:59:00
## 3102              74   80000       science            tech  2012-06-30 01:18:00
## 3103              68   30000      artistic         musical  2012-05-19 11:46:00
## 3104              68      NA      artistic         musical  2012-06-29 20:01:00
## 3105              77      NA     executive       management 2012-06-30 02:42:00
## 3106              70      NA        student            <NA> 2012-01-09 11:40:00
## 3107              70      NA     executive       management 2012-05-05 15:54:00
## 3108              62      NA   hospitality           travel 2012-03-15 23:17:00
## 3109              70      NA      artistic         musical  2012-06-30 00:38:00
## 3110              66      NA          other            <NA> 2012-06-23 09:24:00
## 3111              67      NA        student            <NA> 2012-03-13 12:07:00
## 3112              69      NA entertainment            media 2012-05-17 14:42:00
## 3113              69      NA      artistic         musical  2012-06-29 23:05:00
## 3114              62      NA     unemployed            <NA> 2012-06-28 21:48:00
## 3115              69      NA          other            <NA> 2012-06-29 23:39:00
## 3116              65      NA         sales       marketing  2012-06-26 12:34:00
## 3117              69      NA           <NA>            <NA> 2012-06-28 12:12:00
## 3118              66   20000     unemployed            <NA> 2011-12-26 23:32:00
## 3119              61      NA entertainment            media 2012-06-28 22:03:00
## 3120              67      NA         sales       marketing  2012-05-12 15:24:00
## 3121              73      NA         sales       marketing  2012-06-24 13:46:00
## 3122              61      NA       science            tech  2012-06-30 00:54:00
## 3123              64      NA      artistic         musical  2012-06-28 00:56:00
## 3124              70      NA      computer        hardware  2012-06-29 00:11:00
## 3125              66      NA      clerical   administrative 2012-06-27 23:37:00
## 3126              65      NA      medicine           health 2012-06-30 02:43:00
## 3127              68  100000           law   legal services 2012-06-30 02:43:00
## 3128              76      NA       science            tech  2012-01-02 15:31:00
## 3129              60      NA          other            <NA> 2012-06-30 00:08:00
## 3130              67      NA        student            <NA> 2012-06-29 22:45:00
## 3131              65      NA      artistic         musical  2012-06-28 18:49:00
## 3132              68      NA       banking       financial  2012-06-30 02:43:00
## 3133              70   20000          other            <NA> 2012-06-24 02:04:00
## 3134              65      NA     education         academia 2012-05-10 15:40:00
## 3135              70   60000       science            tech  2012-04-26 16:08:00
## 3136              69   20000        student            <NA> 2012-06-28 21:27:00
## 3137              68      NA        student            <NA> 2012-06-27 18:55:00
## 3138              64      NA      artistic         musical  2012-06-28 22:52:00
## 3139              65   20000      medicine           health 2012-06-29 10:21:00
## 3140              63      NA     political       government 2012-06-29 19:44:00
## 3141              67      NA          other            <NA> 2012-06-29 13:44:00
## 3142              68      NA     education         academia 2012-06-02 08:21:00
## 3143              70   20000     education         academia 2012-06-03 23:18:00
## 3144              75      NA       banking       financial  2012-06-29 20:35:00
## 3145              61      NA        student            <NA> 2012-06-05 15:26:00
## 3146              67      NA       science            tech  2012-06-02 11:21:00
## 3147              64      NA           <NA>            <NA> 2012-06-29 16:19:00
## 3148              66      NA   hospitality           travel 2012-06-29 20:12:00
## 3149              67   50000          other            <NA> 2012-06-29 08:11:00
## 3150              66      NA          other            <NA> 2012-06-27 10:58:00
## 3151              64      NA   hospitality           travel 2011-12-16 08:59:00
## 3152              65      NA      medicine           health 2012-05-26 10:07:00
## 3153              64      NA          other            <NA> 2012-06-28 16:34:00
## 3154              63   60000      artistic         musical  2012-06-28 16:57:00
## 3155              64      NA           <NA>            <NA> 2012-06-29 22:56:00
## 3156              76      NA     political       government 2012-02-15 22:32:00
## 3157              65      NA       science            tech  2012-06-28 00:45:00
## 3158              67      NA     executive       management 2012-06-29 23:16:00
## 3159              64      NA       science            tech  2012-05-14 14:23:00
## 3160              66      NA          other            <NA> 2012-06-26 22:27:00
## 3161              68      NA      artistic         musical  2012-06-29 07:29:00
## 3162              70      NA          other            <NA> 2012-06-29 21:03:00
## 3163              65      NA           <NA>            <NA> 2012-06-26 01:58:00
## 3164              62      NA      medicine           health 2012-06-22 05:10:00
## 3165              61   30000       science            tech  2012-05-25 14:00:00
## 3166              66      NA           <NA>            <NA> 2012-06-24 10:07:00
## 3167              65      NA        student            <NA> 2012-06-27 12:13:00
## 3168              64      NA         sales       marketing  2012-06-27 20:54:00
## 3169              68 1000000       science            tech  2012-05-04 18:41:00
## 3170              68      NA transportation            <NA> 2012-06-26 07:44:00
## 3171              68      NA           <NA>            <NA> 2012-06-26 21:29:00
## 3172              65      NA           <NA>            <NA> 2012-06-23 10:23:00
## 3173              65      NA          other            <NA> 2012-06-27 01:03:00
## 3174              66      NA      artistic         musical  2012-05-21 01:51:00
## 3175              68      NA      artistic         musical  2012-06-10 13:07:00
## 3176              62      NA        student            <NA> 2012-06-22 18:24:00
## 3177              63      NA          other            <NA> 2012-01-21 17:48:00
## 3178              63      NA       science            tech  2012-06-14 13:56:00
## 3179              66      NA          other            <NA> 2012-06-29 10:29:00
## 3180              63      NA          other            <NA> 2012-06-30 00:35:00
## 3181              65      NA     education         academia 2012-06-27 13:09:00
## 3182              67      NA         sales       marketing  2012-06-29 22:05:00
## 3183              63      NA       science            tech  2012-06-28 22:05:00
## 3184              62      NA           <NA>            <NA> 2011-08-11 02:27:00
## 3185              62      NA      medicine           health 2011-06-30 20:03:00
## 3186              64      NA           <NA>            <NA> 2012-06-05 02:02:00
## 3187              63      NA          other            <NA> 2012-04-16 21:46:00
## 3188              72   20000        student            <NA> 2012-06-29 14:28:00
## 3189              74      NA     education         academia 2012-06-29 14:27:00
## 3190              72  150000     executive       management 2012-06-29 23:50:00
## 3191              63      NA           <NA>            <NA> 2012-06-13 23:55:00
## 3192              69      NA       science            tech  2012-06-28 23:32:00
## 3193              67      NA          other            <NA> 2012-04-11 10:29:00
## 3194              66      NA      medicine           health 2011-07-27 21:53:00
## 3195              65   50000      clerical   administrative 2012-06-30 00:04:00
## 3196              61      NA     unemployed            <NA> 2012-03-01 20:50:00
## 3197              72      NA        student            <NA> 2012-06-29 02:45:00
## 3198              63      NA      clerical   administrative 2012-04-08 19:10:00
## 3199              63      NA        student            <NA> 2012-06-18 22:28:00
## 3200              64      NA      artistic         musical  2012-06-29 18:50:00
## 3201              69      NA       science            tech  2012-06-29 22:31:00
## 3202              66      NA      artistic         musical  2012-06-29 15:21:00
## 3203              68 1000000          other            <NA> 2012-06-30 00:54:00
## 3204              72 1000000          other            <NA> 2011-10-11 16:03:00
## 3205              66      NA          other            <NA> 2011-06-27 22:05:00
## 3206              71      NA entertainment            media 2012-06-29 23:40:00
## 3207              68      NA      medicine           health 2012-06-27 22:05:00
## 3208              67      NA     education         academia 2012-06-26 08:44:00
## 3209              68   30000          other            <NA> 2012-05-30 00:45:00
## 3210              65   50000       banking       financial  2012-06-29 22:42:00
## 3211              67  250000     executive       management 2012-06-25 23:20:00
## 3212              69      NA      computer        hardware  2012-06-09 18:05:00
## 3213              67      NA     education         academia 2012-06-30 00:38:00
## 3214              66      NA     education         academia 2012-06-29 09:04:00
## 3215              67      NA          other            <NA> 2012-06-26 09:44:00
## 3216              70      NA      medicine           health 2012-04-09 15:42:00
## 3217              74   80000      artistic         musical  2012-06-29 23:05:00
## 3218              64      NA         sales       marketing  2012-06-25 23:27:00
## 3219              62      NA  construction    craftsmanship 2012-06-22 22:56:00
## 3220              68      NA          other            <NA> 2012-06-29 21:46:00
## 3221              64   20000        student            <NA> 2012-06-29 13:50:00
## 3222              67      NA      medicine           health 2012-05-08 00:50:00
## 3223              74   20000          other            <NA> 2012-06-29 20:44:00
## 3224              63      NA           <NA>            <NA> 2012-06-28 09:31:00
## 3225              64      NA           <NA>            <NA> 2012-06-22 15:15:00
## 3226              66      NA entertainment            media 2011-08-24 17:26:00
## 3227              59      NA       science            tech  2012-06-28 22:03:00
## 3228              67      NA           <NA>            <NA> 2012-06-18 22:12:00
## 3229              65      NA          other            <NA> 2012-06-24 20:28:00
## 3230              66      NA     education         academia 2012-06-29 16:16:00
## 3231              72  150000      computer        hardware  2012-06-27 22:15:00
## 3232              70      NA           <NA>            <NA> 2012-05-09 22:35:00
## 3233              68      NA      artistic         musical  2012-06-28 07:34:00
## 3234              68   30000     education         academia 2012-06-30 00:40:00
## 3235              69      NA           <NA>            <NA> 2011-09-12 11:43:00
## 3236              67      NA           <NA>            <NA> 2012-06-21 10:16:00
## 3237              66      NA          other            <NA> 2012-06-25 14:59:00
## 3238              66      NA      artistic         musical  2011-07-07 22:00:00
## 3239              70      NA      computer        hardware  2012-06-29 11:30:00
## 3240              67      NA       banking       financial  2012-06-29 22:52:00
## 3241              69      NA entertainment            media 2012-06-29 19:49:00
## 3242              67      NA transportation            <NA> 2011-10-25 23:38:00
## 3243              76      NA          other            <NA> 2011-10-29 12:27:00
## 3244              69      NA        student            <NA> 2012-06-29 23:23:00
## 3245              69      NA        student            <NA> 2012-06-29 21:19:00
## 3246              72      NA       banking       financial  2012-06-28 20:22:00
## 3247              67      NA           law   legal services 2012-04-05 21:01:00
## 3248              69      NA      artistic         musical  2012-06-29 21:57:00
## 3249              72      NA      medicine           health 2012-06-27 22:16:00
## 3250              64      NA     education         academia 2012-06-19 16:16:00
## 3251              70      NA           <NA>            <NA> 2012-06-28 21:19:00
## 3252              67      NA           <NA>            <NA> 2012-05-20 18:00:00
## 3253              67      NA      artistic         musical  2012-06-14 22:47:00
## 3254              67      NA     education         academia 2012-06-29 22:43:00
## 3255              64      NA      artistic         musical  2012-06-29 22:42:00
## 3256              68      NA     executive       management 2012-02-07 09:11:00
## 3257              70  100000       science            tech  2012-06-29 08:47:00
## 3258              74      NA      artistic         musical  2012-06-29 14:12:00
## 3259              70   20000      artistic         musical  2012-06-26 05:23:00
## 3260              73      NA           <NA>            <NA> 2012-06-24 15:47:00
## 3261              72   20000        student            <NA> 2012-06-21 20:03:00
## 3262              65      NA       science            tech  2012-01-01 20:21:00
## 3263              67  100000      computer        hardware  2012-06-30 00:34:00
## 3264              66      NA         sales       marketing  2012-06-23 08:56:00
## 3265              64      NA   hospitality           travel 2012-06-26 17:42:00
## 3266              69      NA       banking       financial  2012-06-25 22:33:00
## 3267              69   30000         sales       marketing  2012-06-28 19:09:00
## 3268              62      NA     political       government 2012-06-28 16:23:00
## 3269              67      NA           <NA>            <NA> 2012-06-28 08:57:00
## 3270              68      NA     education         academia 2012-06-28 18:05:00
## 3271              63      NA        student            <NA> 2012-06-29 13:49:00
## 3272              64      NA        student            <NA> 2012-06-29 21:42:00
## 3273              62      NA          other            <NA> 2012-06-30 02:51:00
## 3274              76      NA entertainment            media 2012-06-28 00:22:00
## 3275              73      NA       science            tech  2012-06-17 15:31:00
## 3276              70      NA      artistic         musical  2012-06-29 01:18:00
## 3277              64  100000         sales       marketing  2012-06-29 11:38:00
## 3278              64      NA           <NA>            <NA> 2012-06-27 19:20:00
## 3279              69      NA          other            <NA> 2012-06-28 20:48:00
## 3280              73      NA           <NA>            <NA> 2012-06-27 15:13:00
## 3281              71      NA       science            tech  2012-06-28 23:40:00
## 3282              76      NA       banking       financial  2012-06-27 17:20:00
## 3283              68      NA       science            tech  2012-06-28 06:42:00
## 3284              67      NA       science            tech  2012-06-29 15:28:00
## 3285              72      NA rather not say            <NA> 2012-06-25 01:53:00
## 3286              68      NA         sales       marketing  2012-04-29 22:20:00
## 3287              62      NA     executive       management 2012-06-29 10:51:00
## 3288              68      NA        student            <NA> 2012-05-13 12:34:00
## 3289              66      NA     executive       management 2012-06-29 21:19:00
## 3290              66      NA           <NA>            <NA> 2012-06-27 06:24:00
## 3291              61      NA         sales       marketing  2012-06-26 23:57:00
## 3292              70      NA           <NA>            <NA> 2012-03-17 12:50:00
## 3293              64      NA      clerical   administrative 2012-06-28 20:41:00
## 3294              65      NA          other            <NA> 2011-12-08 00:11:00
## 3295              71      NA      computer        hardware  2012-06-30 00:11:00
## 3296              63      NA     education         academia 2012-06-19 23:19:00
## 3297              71      NA     executive       management 2012-06-29 19:13:00
## 3298              67      NA          other            <NA> 2012-06-02 22:22:00
## 3299              69      NA          other            <NA> 2012-06-30 01:18:00
## 3300              66      NA         sales       marketing  2012-06-26 09:57:00
## 3301              71      NA      computer        hardware  2012-04-29 21:35:00
## 3302              65      NA           <NA>            <NA> 2012-06-30 00:43:00
## 3303              67      NA      artistic         musical  2012-05-20 22:25:00
## 3304              69   20000  construction    craftsmanship 2012-06-07 17:35:00
## 3305              71      NA          other            <NA> 2012-06-30 01:12:00
## 3306              66      NA     executive       management 2011-11-13 09:53:00
## 3307              74      NA       science            tech  2012-06-28 20:50:00
## 3308              70      NA     executive       management 2012-06-28 13:39:00
## 3309              70   50000      artistic         musical  2012-05-01 15:16:00
## 3310              74      NA      computer        hardware  2012-06-29 23:06:00
## 3311              67      NA     education         academia 2012-06-29 21:21:00
## 3312              67      NA      artistic         musical  2012-06-30 00:55:00
## 3313              67      NA      artistic         musical  2012-06-29 22:49:00
## 3314              74  100000          other            <NA> 2012-06-29 18:40:00
## 3315              70      NA     executive       management 2012-06-27 11:20:00
## 3316              72   20000        student            <NA> 2012-01-01 18:26:00
## 3317              71      NA      computer        hardware  2012-06-28 20:17:00
## 3318              70   50000       military            <NA> 2011-12-09 20:42:00
## 3319              75      NA       science            tech  2012-06-29 19:29:00
## 3320              72      NA      artistic         musical  2012-05-13 13:20:00
## 3321              77   30000   hospitality           travel 2012-06-27 13:29:00
## 3322              69      NA        student            <NA> 2012-06-25 23:15:00
## 3323              67      NA       science            tech  2012-06-07 21:07:00
## 3324              70      NA           <NA>            <NA> 2012-06-29 21:42:00
## 3325              72      NA      medicine           health 2012-06-13 15:33:00
## 3326              71      NA entertainment            media 2012-01-26 00:49:00
## 3327              73      NA           <NA>            <NA> 2012-06-28 23:48:00
## 3328              67      NA      computer        hardware  2012-06-30 02:55:00
## 3329              68   30000       military            <NA> 2011-12-27 13:47:00
## 3330              70      NA           <NA>            <NA> 2011-08-25 13:55:00
## 3331              71      NA           <NA>            <NA> 2012-06-29 23:37:00
## 3332              70      NA           <NA>            <NA> 2012-06-29 19:55:00
## 3333              73      NA         sales       marketing  2012-06-21 22:47:00
## 3334              70      NA entertainment            media 2012-01-25 09:17:00
## 3335              69      NA       science            tech  2012-06-29 16:21:00
## 3336              66      NA entertainment            media 2012-06-30 01:41:00
## 3337              73   30000     education         academia 2012-01-23 23:12:00
## 3338              71      NA transportation            <NA> 2012-01-20 10:29:00
## 3339              72      NA        student            <NA> 2012-06-28 11:18:00
## 3340              67      NA          other            <NA> 2012-06-08 23:01:00
## 3341              74      NA      artistic         musical  2012-06-29 23:43:00
## 3342              67      NA entertainment            media 2012-06-29 20:41:00
## 3343              69      NA      computer        hardware  2012-06-22 22:30:00
## 3344              64      NA           <NA>            <NA> 2012-06-29 19:27:00
## 3345              71      NA           law   legal services 2012-05-31 02:02:00
## 3346              67      NA       science            tech  2012-06-14 09:44:00
## 3347              69   40000        student            <NA> 2012-06-26 18:16:00
## 3348              69      NA       science            tech  2012-03-17 21:52:00
## 3349              74      NA       science            tech  2012-03-19 11:07:00
## 3350              72      NA          other            <NA> 2012-06-26 16:12:00
## 3351              68      NA           <NA>            <NA> 2012-06-05 13:45:00
## 3352              72      NA          other            <NA> 2012-06-22 17:11:00
## 3353              70      NA           law   legal services 2012-04-17 11:29:00
## 3354              70   40000         sales       marketing  2012-06-22 17:55:00
## 3355              70      NA        student            <NA> 2011-09-12 13:24:00
## 3356              70      NA       science            tech  2012-06-27 08:27:00
## 3357              71      NA           <NA>            <NA> 2012-06-19 18:03:00
## 3358              72 1000000         sales       marketing  2012-06-27 19:05:00
## 3359              70      NA      artistic         musical  2012-04-02 00:06:00
## 3360              68      NA           <NA>            <NA> 2012-03-21 23:19:00
## 3361              71      NA entertainment            media 2012-06-24 12:28:00
## 3362              68      NA          other            <NA> 2012-06-27 20:12:00
## 3363              72   20000        student            <NA> 2012-06-19 10:44:00
## 3364              66      NA      medicine           health 2012-06-17 20:25:00
## 3365              76      NA      medicine           health 2011-07-19 22:57:00
## 3366              68   80000          other            <NA> 2012-06-29 22:54:00
## 3367              69   20000        student            <NA> 2012-06-13 15:38:00
## 3368              71  100000      computer        hardware  2012-06-27 19:19:00
## 3369              73      NA     executive       management 2012-02-11 09:35:00
## 3370              75      NA           <NA>            <NA> 2012-06-02 23:16:00
## 3371              77      NA        student            <NA> 2012-06-29 09:11:00
## 3372              69      NA          other            <NA> 2011-12-24 14:37:00
## 3373              71      NA       science            tech  2012-06-26 23:28:00
## 3374              67   40000     education         academia 2012-05-26 17:26:00
## 3375              75   20000   hospitality           travel 2012-06-28 16:24:00
## 3376              69      NA       science            tech  2012-06-28 18:44:00
## 3377              69      NA        student            <NA> 2011-09-15 23:22:00
## 3378              70   20000      medicine           health 2012-06-30 01:25:00
## 3379              66      NA           <NA>            <NA> 2012-04-28 21:46:00
## 3380              72      NA           <NA>            <NA> 2012-06-25 17:31:00
## 3381              67      NA          other            <NA> 2012-06-29 21:59:00
## 3382              68      NA       science            tech  2012-06-29 18:15:00
## 3383              74   30000          other            <NA> 2012-06-22 12:02:00
## 3384              64      NA          other            <NA> 2012-06-29 17:55:00
## 3385              68      NA           <NA>            <NA> 2012-06-11 23:59:00
## 3386              65      NA        student            <NA> 2012-06-27 21:14:00
## 3387              72      NA           <NA>            <NA> 2012-06-29 18:36:00
## 3388              68      NA        retired            <NA> 2012-06-29 23:46:00
## 3389              64      NA      computer        hardware  2011-09-19 22:44:00
## 3390              73      NA         sales       marketing  2012-06-29 20:06:00
## 3391              70      NA         sales       marketing  2012-06-27 17:51:00
## 3392              74 1000000  construction    craftsmanship 2012-06-28 22:10:00
## 3393              70      NA           law   legal services 2012-06-29 02:42:00
## 3394              70      NA      artistic         musical  2012-06-27 18:13:00
## 3395              68      NA           <NA>            <NA> 2012-06-21 11:37:00
## 3396              70      NA          other            <NA> 2012-06-21 14:51:00
## 3397              73      NA     executive       management 2011-12-22 21:20:00
## 3398              71      NA        student            <NA> 2012-06-30 02:59:00
## 3399              70      NA       banking       financial  2012-06-29 11:38:00
## 3400              63      NA           <NA>            <NA> 2012-06-29 21:54:00
## 3401              69      NA       science            tech  2012-06-17 20:46:00
## 3402              73      NA entertainment            media 2012-06-29 14:05:00
## 3403              69  150000       science            tech  2012-06-26 23:43:00
## 3404              71      NA        student            <NA> 2012-06-24 20:57:00
## 3405              70      NA      computer        hardware  2012-06-28 14:08:00
## 3406              74      NA          other            <NA> 2012-06-27 19:34:00
## 3407              66      NA          other            <NA> 2012-06-28 03:10:00
## 3408              73      NA           <NA>            <NA> 2012-06-29 00:49:00
## 3409              68   70000           <NA>            <NA> 2011-09-28 18:28:00
## 3410              71      NA     political       government 2012-05-31 15:30:00
## 3411              69      NA entertainment            media 2012-01-23 19:41:00
## 3412              69      NA         sales       marketing  2012-06-24 10:03:00
## 3413              75  150000       science            tech  2012-06-30 00:16:00
## 3414              67      NA      artistic         musical  2012-06-29 15:56:00
## 3415              73      NA           <NA>            <NA> 2012-05-30 22:47:00
## 3416              66      NA      computer        hardware  2012-06-26 01:11:00
## 3417              71   20000        student            <NA> 2011-09-18 18:33:00
## 3418              70  100000          other            <NA> 2012-02-04 02:18:00
## 3419              70   80000      computer        hardware  2012-06-28 18:34:00
## 3420              71   50000      artistic         musical  2012-06-27 12:05:00
## 3421              69      NA      medicine           health 2012-06-29 16:57:00
## 3422              74      NA           <NA>            <NA> 2012-06-29 08:36:00
## 3423              71      NA        student            <NA> 2012-06-27 15:35:00
## 3424              71      NA      clerical   administrative 2012-06-05 15:26:00
## 3425              70      NA entertainment            media 2012-01-04 10:14:00
## 3426              68      NA          other            <NA> 2012-06-26 21:30:00
## 3427              70      NA     education         academia 2012-06-30 00:58:00
## 3428              72      NA entertainment            media 2012-06-22 01:10:00
## 3429              64  150000          other            <NA> 2012-05-21 01:01:00
## 3430              70      NA           <NA>            <NA> 2012-06-30 03:00:00
## 3431              72   80000     executive       management 2012-06-29 17:53:00
## 3432              71      NA           law   legal services 2012-06-29 22:59:00
## 3433              72      NA      artistic         musical  2012-06-25 00:25:00
## 3434              61      NA           <NA>            <NA> 2012-06-25 17:27:00
## 3435              66      NA          other            <NA> 2012-06-30 01:04:00
## 3436              62      NA           <NA>            <NA> 2012-06-29 00:16:00
## 3437              65   20000 entertainment            media 2012-06-29 09:43:00
## 3438              65      NA rather not say            <NA> 2012-06-15 11:00:00
## 3439              70      NA      computer        hardware  2012-06-29 00:45:00
## 3440              64      NA   hospitality           travel 2012-06-28 10:15:00
## 3441              74      NA       science            tech  2012-01-08 12:54:00
## 3442              67   70000      artistic         musical  2012-06-29 22:35:00
## 3443              66   20000      computer        hardware  2011-08-24 20:19:00
## 3444              68      NA          other            <NA> 2012-06-24 23:14:00
## 3445              60      NA          other            <NA> 2012-06-27 14:49:00
## 3446              68      NA       banking       financial  2012-01-07 22:55:00
## 3447              64      NA          other            <NA> 2012-03-11 19:57:00
## 3448              62      NA     political       government 2012-06-30 00:54:00
## 3449              63  100000         sales       marketing  2012-06-29 23:21:00
## 3450              74      NA      computer        hardware  2012-04-09 21:47:00
## 3451              61   60000       science            tech  2012-06-28 20:16:00
## 3452              66      NA      medicine           health 2012-06-26 20:44:00
## 3453              66      NA      artistic         musical  2012-06-29 07:48:00
## 3454              60      NA           law   legal services 2012-05-29 23:33:00
## 3455              62      NA          other            <NA> 2012-06-05 01:21:00
## 3456              74      NA         sales       marketing  2011-10-21 03:57:00
## 3457              73      NA       science            tech  2012-06-30 03:02:00
## 3458              66      NA         sales       marketing  2012-06-28 22:43:00
## 3459              70      NA           <NA>            <NA> 2012-01-29 22:21:00
## 3460              67      NA      artistic         musical  2012-06-30 01:54:00
## 3461              62      NA           <NA>            <NA> 2012-04-23 21:49:00
## 3462              64      NA        student            <NA> 2012-06-28 00:45:00
## 3463              64      NA         sales       marketing  2012-06-27 10:24:00
## 3464              66      NA           <NA>            <NA> 2012-06-28 12:54:00
## 3465              64      NA          other            <NA> 2012-06-26 20:54:00
## 3466              67      NA       banking       financial  2012-03-27 16:33:00
## 3467              65      NA      medicine           health 2011-11-26 15:50:00
## 3468              63      NA           <NA>            <NA> 2012-06-27 22:40:00
## 3469              63      NA entertainment            media 2012-06-25 21:46:00
## 3470              60      NA      clerical   administrative 2012-06-28 10:21:00
## 3471              62      NA         sales       marketing  2012-06-29 22:55:00
## 3472              68   20000      medicine           health 2011-12-10 20:28:00
## 3473              67      NA          other            <NA> 2011-07-01 20:46:00
## 3474              69      NA         sales       marketing  2012-06-26 07:07:00
## 3475              60      NA           <NA>            <NA> 2012-06-28 12:53:00
## 3476              68      NA         sales       marketing  2012-06-27 19:06:00
## 3477              68      NA           <NA>            <NA> 2011-07-06 23:19:00
## 3478              72   80000      medicine           health 2012-06-29 22:41:00
## 3479              61   50000     education         academia 2012-05-13 16:16:00
## 3480              63   70000         sales       marketing  2011-07-15 20:18:00
## 3481              67      NA           <NA>            <NA> 2012-06-29 17:48:00
## 3482              64      NA     unemployed            <NA> 2012-02-27 08:46:00
## 3483              68      NA           <NA>            <NA> 2011-07-13 00:36:00
## 3484              69      NA     executive       management 2012-06-29 02:35:00
## 3485              66      NA           <NA>            <NA> 2012-05-19 01:54:00
## 3486              62      NA      medicine           health 2012-06-29 23:32:00
## 3487              66   40000     education         academia 2012-01-02 22:23:00
## 3488              62   60000       banking       financial  2012-05-02 15:55:00
## 3489              73      NA           <NA>            <NA> 2012-04-06 20:53:00
## 3490              72      NA rather not say            <NA> 2012-06-29 14:53:00
## 3491              61      NA      medicine           health 2012-06-26 10:53:00
## 3492              62      NA        student            <NA> 2012-06-29 04:15:00
## 3493              64      NA      artistic         musical  2012-06-28 21:49:00
## 3494              62      NA          other            <NA> 2012-06-24 09:00:00
## 3495              64      NA          other            <NA> 2011-10-29 17:53:00
## 3496              62      NA      artistic         musical  2012-05-07 18:30:00
## 3497              68      NA      artistic         musical  2012-06-28 20:52:00
## 3498              70      NA          other            <NA> 2012-05-10 15:42:00
## 3499              68   60000 transportation            <NA> 2012-04-22 10:15:00
## 3500              68      NA      artistic         musical  2012-06-29 20:50:00
## 3501              62   20000     unemployed            <NA> 2012-06-26 17:45:00
## 3502              63      NA rather not say            <NA> 2011-09-02 17:35:00
## 3503              67      NA           <NA>            <NA> 2011-11-22 13:53:00
## 3504              65      NA     unemployed            <NA> 2012-05-31 23:50:00
## 3505              69      NA      artistic         musical  2012-04-10 13:52:00
## 3506              68      NA         sales       marketing  2012-06-29 23:49:00
## 3507              65      NA      computer        hardware  2012-06-29 22:29:00
## 3508              69      NA      computer        hardware  2012-06-28 19:25:00
## 3509              63      NA          other            <NA> 2012-06-27 21:53:00
## 3510              65      NA        student            <NA> 2012-06-29 00:18:00
## 3511              59      NA           <NA>            <NA> 2012-06-28 18:29:00
## 3512              63      NA         sales       marketing  2012-06-29 22:03:00
## 3513              67      NA          other            <NA> 2012-06-30 01:32:00
## 3514              65      NA           <NA>            <NA> 2012-06-29 14:44:00
## 3515              63      NA          other            <NA> 2012-03-28 20:55:00
## 3516              60      NA        student            <NA> 2011-12-03 10:06:00
## 3517              70      NA          other            <NA> 2012-06-30 03:05:00
## 3518              75   20000          other            <NA> 2012-06-30 03:05:00
## 3519              66      NA transportation            <NA> 2012-06-30 02:04:00
## 3520              70      NA           <NA>            <NA> 2012-03-29 19:38:00
## 3521              71      NA           <NA>            <NA> 2012-06-29 12:51:00
## 3522              71      NA           <NA>            <NA> 2012-06-28 11:22:00
## 3523              72      NA      artistic         musical  2012-06-16 22:57:00
## 3524              72      NA        student            <NA> 2012-06-29 22:32:00
## 3525              74   70000      computer        hardware  2012-06-30 01:48:00
## 3526              75  100000      computer        hardware  2012-06-29 02:46:00
## 3527              63      NA      artistic         musical  2012-06-29 22:59:00
## 3528              70      NA         sales       marketing  2012-06-19 23:36:00
## 3529              72      NA     executive       management 2012-05-04 13:27:00
## 3530              63      NA         sales       marketing  2012-06-27 21:37:00
## 3531              66      NA     education         academia 2012-06-30 01:21:00
## 3532              68      NA        student            <NA> 2012-06-19 12:48:00
## 3533              67      NA     executive       management 2012-06-19 14:03:00
## 3534              70      NA     executive       management 2012-06-29 07:15:00
## 3535              61      NA   hospitality           travel 2012-06-27 01:32:00
## 3536              75   70000     executive       management 2012-01-23 09:17:00
## 3537              70   20000        student            <NA> 2012-06-27 10:16:00
## 3538              69      NA         sales       marketing  2012-06-01 10:01:00
## 3539              65      NA           <NA>            <NA> 2012-01-16 13:16:00
## 3540              72      NA          other            <NA> 2012-06-28 00:27:00
## 3541              69      NA         sales       marketing  2012-06-28 00:55:00
## 3542              71      NA entertainment            media 2012-06-30 00:59:00
## 3543              63      NA      artistic         musical  2012-06-22 22:36:00
## 3544              70      NA          other            <NA> 2012-05-01 09:21:00
## 3545              66   40000      medicine           health 2012-06-29 22:26:00
## 3546              70  100000      computer        hardware  2012-06-26 23:31:00
## 3547              67      NA       science            tech  2012-06-29 23:12:00
## 3548              70   20000        student            <NA> 2012-06-29 11:08:00
## 3549              67  100000 entertainment            media 2012-06-29 01:02:00
## 3550              74      NA      artistic         musical  2012-06-29 18:04:00
## 3551              70      NA entertainment            media 2012-06-29 23:20:00
## 3552              68      NA      artistic         musical  2012-06-30 00:37:00
## 3553              64      NA        student            <NA> 2012-06-17 00:42:00
## 3554              68      NA        student            <NA> 2012-05-14 22:58:00
## 3555              71  150000       science            tech  2011-09-27 22:19:00
## 3556              64      NA       science            tech  2012-06-09 03:46:00
## 3557              72      NA           <NA>            <NA> 2012-06-24 15:44:00
## 3558              65      NA           <NA>            <NA> 2012-06-29 22:14:00
## 3559              65   30000        student            <NA> 2012-06-17 10:00:00
## 3560              63      NA          other            <NA> 2012-01-21 23:32:00
## 3561              63      NA        student            <NA> 2012-06-24 19:42:00
## 3562              59      NA        student            <NA> 2012-06-29 01:49:00
## 3563              65      NA     education         academia 2012-06-29 00:12:00
## 3564              64      NA          other            <NA> 2012-06-28 16:46:00
## 3565              74      NA  construction    craftsmanship 2012-06-29 08:43:00
## 3566              69      NA        student            <NA> 2012-06-28 23:20:00
## 3567              66      NA       banking       financial  2012-06-25 16:10:00
## 3568              65      NA     executive       management 2012-06-29 23:51:00
## 3569              71      NA        student            <NA> 2012-06-23 13:36:00
## 3570              63      NA          other            <NA> 2012-06-27 14:58:00
## 3571              70      NA     executive       management 2012-06-29 11:49:00
## 3572              61      NA        student            <NA> 2012-06-07 20:11:00
## 3573              73      NA       science            tech  2012-06-28 21:01:00
## 3574              66      NA          other            <NA> 2012-06-28 02:36:00
## 3575              75      NA          other            <NA> 2012-06-30 01:36:00
## 3576              63   20000       banking       financial  2012-06-29 19:51:00
## 3577              64      NA           <NA>            <NA> 2012-06-30 02:06:00
## 3578              64      NA          other            <NA> 2012-06-29 19:29:00
## 3579              64      NA           <NA>            <NA> 2012-06-29 23:39:00
## 3580              69   20000          other            <NA> 2012-06-29 14:53:00
## 3581              63      NA          other            <NA> 2012-06-23 17:24:00
## 3582              66      NA           <NA>            <NA> 2012-06-29 09:52:00
## 3583              64      NA     education         academia 2012-06-25 22:43:00
## 3584              64      NA         sales       marketing  2012-06-29 13:03:00
## 3585              63      NA     education         academia 2012-06-29 23:49:00
## 3586              63      NA          other            <NA> 2012-06-30 00:25:00
## 3587              68      NA          other            <NA> 2011-07-02 19:40:00
## 3588              61      NA        student            <NA> 2012-06-19 07:11:00
## 3589              64      NA      artistic         musical  2012-05-01 23:50:00
## 3590              72      NA      clerical   administrative 2012-06-28 18:14:00
## 3591              67      NA        student            <NA> 2012-06-27 23:14:00
## 3592              66      NA           <NA>            <NA> 2012-06-28 12:21:00
## 3593              66      NA          other            <NA> 2012-03-22 18:33:00
## 3594              64   80000     executive       management 2012-06-10 18:23:00
## 3595              67      NA     education         academia 2012-06-28 13:32:00
## 3596              63      NA   hospitality           travel 2012-06-29 22:45:00
## 3597              66      NA          other            <NA> 2012-06-29 23:24:00
## 3598              60      NA      artistic         musical  2012-06-07 18:50:00
## 3599              67      NA           <NA>            <NA> 2012-06-29 23:05:00
## 3600              66      NA       science            tech  2012-05-14 06:10:00
## 3601              61      NA        student            <NA> 2012-05-13 14:18:00
## 3602              65      NA           <NA>            <NA> 2011-12-21 23:45:00
## 3603              66      NA      medicine           health 2012-06-27 21:39:00
## 3604              67      NA          other            <NA> 2012-06-28 02:07:00
## 3605              60      NA     education         academia 2012-06-09 19:48:00
## 3606              66      NA       science            tech  2012-06-30 00:35:00
## 3607              66      NA           <NA>            <NA> 2012-06-11 08:57:00
## 3608              63      NA      artistic         musical  2012-06-28 00:34:00
## 3609              61      NA          other            <NA> 2012-06-28 21:11:00
## 3610              66      NA     education         academia 2012-06-29 19:43:00
## 3611              60      NA      clerical   administrative 2012-03-28 07:12:00
## 3612              76   30000       science            tech  2012-06-27 22:36:00
## 3613              60      NA           law   legal services 2012-06-29 06:30:00
## 3614              71      NA        student            <NA> 2012-06-29 17:26:00
## 3615              60      NA        retired            <NA> 2012-06-24 15:04:00
## 3616              66   30000          other            <NA> 2012-06-22 06:57:00
## 3617              62      NA           <NA>            <NA> 2011-07-26 21:54:00
## 3618              65      NA      medicine           health 2012-06-26 21:43:00
## 3619              68      NA   hospitality           travel 2012-06-28 08:46:00
## 3620              66      NA           <NA>            <NA> 2011-08-06 20:00:00
## 3621              64      NA entertainment            media 2012-05-23 16:25:00
## 3622              63      NA entertainment            media 2012-02-14 12:46:00
## 3623              67      NA           <NA>            <NA> 2012-06-27 07:33:00
## 3624              64      NA           law   legal services 2012-05-30 12:13:00
## 3625              68   70000     political       government 2012-06-27 15:35:00
## 3626              66      NA           <NA>            <NA> 2012-06-16 18:18:00
## 3627              64      NA       science            tech  2012-06-30 02:05:00
## 3628              63      NA          other            <NA> 2012-06-28 05:37:00
## 3629              66      NA       banking       financial  2012-06-29 08:02:00
## 3630              64   30000      artistic         musical  2012-06-29 20:51:00
## 3631              60      NA           <NA>            <NA> 2012-06-29 23:45:00
## 3632              64      NA           <NA>            <NA> 2012-05-11 12:46:00
## 3633              65      NA   hospitality           travel 2012-06-17 19:54:00
## 3634              68      NA          other            <NA> 2012-06-20 10:55:00
## 3635              61      NA      medicine           health 2012-06-30 01:23:00
## 3636              62      NA      medicine           health 2012-06-24 12:05:00
## 3637              69      NA           <NA>            <NA> 2011-10-05 20:52:00
## 3638              61      NA          other            <NA> 2012-06-29 18:44:00
## 3639              63      NA           <NA>            <NA> 2012-05-11 03:33:00
## 3640              66      NA           <NA>            <NA> 2012-06-29 19:34:00
## 3641              69      NA      medicine           health 2012-06-25 21:49:00
## 3642              60      NA       banking       financial  2012-04-14 11:06:00
## 3643              62      NA         sales       marketing  2012-06-30 00:03:00
## 3644              63   30000     education         academia 2012-06-29 20:50:00
## 3645              69      NA      artistic         musical  2012-06-12 23:08:00
## 3646              69      NA          other            <NA> 2012-06-29 16:26:00
## 3647              63      NA      medicine           health 2012-02-21 21:24:00
## 3648              65      NA       banking       financial  2012-06-28 15:41:00
## 3649              64      NA   hospitality           travel 2012-06-29 17:48:00
## 3650              62      NA           <NA>            <NA> 2012-06-29 10:38:00
## 3651              66   50000      artistic         musical  2012-06-19 20:36:00
## 3652              67      NA           <NA>            <NA> 2012-06-11 14:12:00
## 3653              65      NA         sales       marketing  2012-06-28 20:47:00
## 3654              68      NA      artistic         musical  2012-06-29 22:55:00
## 3655              69   20000      clerical   administrative 2012-06-30 03:13:00
## 3656              61      NA           <NA>            <NA> 2012-06-30 01:42:00
## 3657              59      NA     political       government 2011-12-02 20:39:00
## 3658              72      NA           law   legal services 2012-06-29 22:08:00
## 3659              65      NA          other            <NA> 2012-06-29 19:22:00
## 3660              61      NA         sales       marketing  2012-06-28 20:46:00
## 3661              65   80000         sales       marketing  2012-01-22 22:47:00
## 3662              66      NA      medicine           health 2012-06-21 23:20:00
## 3663              63      NA        student            <NA> 2012-06-26 11:04:00
## 3664              70      NA     education         academia 2012-06-30 01:59:00
## 3665              67      NA      medicine           health 2012-06-18 20:28:00
## 3666              69      NA           <NA>            <NA> 2011-08-08 22:32:00
## 3667              63      NA        student            <NA> 2012-06-30 03:13:00
## 3668              63      NA      artistic         musical  2012-06-26 22:30:00
## 3669              59      NA        student            <NA> 2012-06-28 19:13:00
## 3670              63      NA     education         academia 2012-06-25 15:31:00
## 3671              60      NA      medicine           health 2012-05-13 20:24:00
## 3672              72      NA     executive       management 2012-06-29 23:23:00
## 3673              71      NA           <NA>            <NA> 2012-06-27 18:00:00
## 3674              65      NA       science            tech  2012-06-29 00:35:00
## 3675              70      NA          other            <NA> 2012-06-30 01:46:00
## 3676              68      NA       science            tech  2012-04-19 09:03:00
## 3677              72      NA       science            tech  2012-06-29 01:34:00
## 3678              70      NA     education         academia 2012-06-29 18:04:00
## 3679              67      NA           <NA>            <NA> 2012-06-29 13:22:00
## 3680              63      NA      artistic         musical  2012-06-29 17:22:00
## 3681              73      NA         sales       marketing  2012-05-10 01:54:00
## 3682              73  150000      computer        hardware  2012-06-09 18:02:00
## 3683              66      NA entertainment            media 2012-04-28 03:21:00
## 3684              63      NA     education         academia 2012-06-25 07:19:00
## 3685              72      NA       science            tech  2012-06-29 23:15:00
## 3686              72      NA       science            tech  2012-05-23 15:00:00
## 3687              69      NA           <NA>            <NA> 2012-03-24 03:10:00
## 3688              63      NA     education         academia 2012-06-20 10:41:00
## 3689              74      NA entertainment            media 2012-06-28 00:58:00
## 3690              67      NA      computer        hardware  2012-06-28 23:11:00
## 3691              69      NA       banking       financial  2012-06-08 06:00:00
## 3692              73      NA   hospitality           travel 2012-06-25 00:12:00
## 3693              70      NA         sales       marketing  2012-06-13 13:48:00
## 3694              69      NA         sales       marketing  2012-06-22 21:58:00
## 3695              72   80000      computer        hardware  2012-06-30 00:14:00
## 3696              70      NA      computer        hardware  2012-04-27 04:55:00
## 3697              65      NA      clerical   administrative 2012-06-29 21:52:00
## 3698              71   80000       science            tech  2012-06-29 22:54:00
## 3699              61      NA entertainment            media 2012-03-06 19:49:00
## 3700              72      NA      medicine           health 2012-06-28 21:48:00
## 3701              67      NA      artistic         musical  2012-06-26 22:15:00
## 3702              71      NA        student            <NA> 2012-06-30 03:15:00
## 3703              69      NA      artistic         musical  2012-06-29 18:03:00
## 3704              69      NA      artistic         musical  2012-06-19 14:57:00
## 3705              69      NA     executive       management 2012-03-09 00:12:00
## 3706              73      NA        student            <NA> 2012-06-28 09:42:00
## 3707              67      NA           <NA>            <NA> 2012-06-29 17:15:00
## 3708              73      NA        student            <NA> 2012-06-28 18:50:00
## 3709              67   20000  construction    craftsmanship 2011-10-29 01:46:00
## 3710              63      NA entertainment            media 2012-06-24 09:03:00
## 3711              73      NA      artistic         musical  2012-06-29 20:08:00
## 3712              72      NA      artistic         musical  2012-06-29 13:16:00
## 3713              70      NA entertainment            media 2012-06-12 02:41:00
## 3714              69      NA         sales       marketing  2012-06-29 20:46:00
## 3715              65      NA      artistic         musical  2012-06-30 03:16:00
## 3716              64      NA entertainment            media 2012-02-18 00:34:00
## 3717              70      NA           <NA>            <NA> 2012-06-10 02:06:00
## 3718              66      NA       science            tech  2012-06-29 22:07:00
## 3719              72      NA       science            tech  2012-06-27 08:43:00
## 3720              66      NA           <NA>            <NA> 2012-06-29 13:54:00
## 3721              69   30000          other            <NA> 2012-06-29 16:33:00
## 3722              69      NA           <NA>            <NA> 2012-06-25 18:36:00
## 3723              68      NA       science            tech  2012-06-28 23:15:00
## 3724              71   20000      medicine           health 2012-06-29 00:01:00
## 3725              69      NA        student            <NA> 2012-06-14 10:11:00
## 3726              68      NA        student            <NA> 2012-06-29 21:20:00
## 3727              72      NA           <NA>            <NA> 2012-05-16 18:08:00
## 3728              68      NA           <NA>            <NA> 2012-05-14 11:09:00
## 3729              71      NA           <NA>            <NA> 2012-01-25 21:48:00
## 3730              73      NA          other            <NA> 2012-06-28 07:09:00
## 3731              70   50000          other            <NA> 2012-06-29 13:21:00
## 3732              72      NA           <NA>            <NA> 2012-02-17 18:17:00
## 3733              70   20000      artistic         musical  2012-03-20 13:16:00
## 3734              70   20000      artistic         musical  2012-03-25 17:05:00
## 3735              71      NA   hospitality           travel 2012-06-28 22:26:00
## 3736              69      NA           <NA>            <NA> 2012-06-29 22:07:00
## 3737              76   20000          other            <NA> 2012-05-29 21:00:00
## 3738              68      NA  construction    craftsmanship 2012-06-30 03:17:00
## 3739              70  100000      computer        hardware  2012-06-29 19:57:00
## 3740              60      NA           <NA>            <NA> 2011-12-31 17:36:00
## 3741              70      NA        student            <NA> 2012-06-30 00:51:00
## 3742              70      NA  construction    craftsmanship 2012-03-18 21:15:00
## 3743              69 1000000  construction    craftsmanship 2012-06-29 08:47:00
## 3744              67      NA      artistic         musical  2012-06-29 10:43:00
## 3745              72      NA          other            <NA> 2012-06-30 00:33:00
## 3746              64   20000          other            <NA> 2012-06-27 19:09:00
## 3747              76      NA        student            <NA> 2012-06-30 00:42:00
## 3748              70   50000     education         academia 2012-06-30 00:27:00
## 3749              68      NA        student            <NA> 2012-06-29 00:58:00
## 3750              64      NA   hospitality           travel 2012-06-19 05:17:00
## 3751              71      NA       science            tech  2012-06-26 18:03:00
## 3752              69   80000       banking       financial  2011-11-08 15:37:00
## 3753              67   20000           <NA>            <NA> 2011-11-07 16:01:00
## 3754              72      NA      artistic         musical  2011-12-22 22:17:00
## 3755              73      NA        student            <NA> 2012-06-23 13:23:00
## 3756              72      NA       military            <NA> 2011-12-24 02:57:00
## 3757              66   20000        student            <NA> 2011-07-31 18:01:00
## 3758              71      NA           <NA>            <NA> 2011-10-25 20:42:00
## 3759              65      NA      clerical   administrative 2011-12-28 13:20:00
## 3760              67      NA          other            <NA> 2012-06-29 12:10:00
## 3761              70   80000      computer        hardware  2012-06-25 09:08:00
## 3762              73      NA      computer        hardware  2012-06-29 13:52:00
## 3763              66      NA rather not say            <NA> 2012-06-23 21:09:00
## 3764              69   60000      computer        hardware  2012-05-30 00:59:00
## 3765              74      NA      computer        hardware  2012-06-29 17:37:00
## 3766              66      NA      medicine           health 2012-06-21 09:39:00
## 3767              70      NA           <NA>            <NA> 2012-06-30 00:04:00
## 3768              76      NA      artistic         musical  2012-06-08 18:04:00
## 3769              70      NA      computer        hardware  2012-06-29 23:04:00
## 3770              66      NA          other            <NA> 2012-04-09 21:55:00
## 3771              64      NA        student            <NA> 2012-06-23 16:15:00
## 3772              74  100000       science            tech  2012-06-29 15:27:00
## 3773              72      NA       science            tech  2011-08-31 01:46:00
## 3774              73      NA           <NA>            <NA> 2012-06-26 08:07:00
## 3775              73      NA         sales       marketing  2012-06-28 20:01:00
## 3776              72  100000 entertainment            media 2012-06-30 03:19:00
## 3777              68      NA      artistic         musical  2012-06-30 03:19:00
## 3778              74   20000          other            <NA> 2012-06-28 15:50:00
## 3779              74      NA       science            tech  2012-06-30 02:14:00
## 3780              68      NA      computer        hardware  2012-06-29 23:33:00
## 3781              67      NA          other            <NA> 2011-08-02 13:30:00
## 3782              69      NA      computer        hardware  2012-06-27 22:02:00
## 3783              69      NA        student            <NA> 2011-09-03 14:32:00
## 3784              67      NA           law   legal services 2012-06-29 23:56:00
## 3785              70      NA        retired            <NA> 2011-09-02 21:38:00
## 3786              72   20000      artistic         musical  2012-06-29 22:24:00
## 3787              74      NA          other            <NA> 2012-06-29 19:15:00
## 3788              62   30000          other            <NA> 2012-06-23 18:26:00
## 3789              65      NA     executive       management 2012-05-20 17:51:00
## 3790              73      NA       science            tech  2012-06-29 21:08:00
## 3791              65      NA       science            tech  2012-06-26 21:13:00
## 3792              71      NA           <NA>            <NA> 2012-06-30 00:09:00
## 3793              67      NA     education         academia 2012-02-07 17:34:00
## 3794              66      NA           <NA>            <NA> 2012-06-26 16:19:00
## 3795              64   20000      artistic         musical  2012-06-19 21:16:00
## 3796              74   40000     education         academia 2012-06-29 22:57:00
## 3797              69      NA      computer        hardware  2011-11-18 07:44:00
## 3798              69      NA           <NA>            <NA> 2011-08-21 12:24:00
## 3799              65      NA      artistic         musical  2012-06-13 04:03:00
## 3800              71      NA  construction    craftsmanship 2012-06-29 01:53:00
## 3801              72      NA          other            <NA> 2012-06-29 17:58:00
## 3802              68      NA      computer        hardware  2012-06-19 15:47:00
## 3803              77      NA         sales       marketing  2012-06-28 09:41:00
## 3804              63      NA     education         academia 2012-06-29 16:25:00
## 3805              64      NA          other            <NA> 2012-06-30 00:40:00
## 3806              64      NA           <NA>            <NA> 2012-06-03 08:26:00
## 3807              64      NA       science            tech  2012-01-12 19:22:00
## 3808              68   40000   hospitality           travel 2011-07-23 02:15:00
## 3809              68      NA           <NA>            <NA> 2012-06-10 07:15:00
## 3810              65      NA          other            <NA> 2012-06-16 18:48:00
## 3811              61      NA     education         academia 2012-06-22 15:31:00
## 3812              66      NA     education         academia 2012-06-19 15:09:00
## 3813              74      NA           <NA>            <NA> 2012-04-23 15:54:00
## 3814              68      NA       science            tech  2012-06-18 21:25:00
## 3815              67      NA      computer        hardware  2012-06-29 16:48:00
## 3816              68      NA        student            <NA> 2012-06-28 22:40:00
## 3817              64      NA          other            <NA> 2012-06-29 00:23:00
## 3818              73   50000 entertainment            media 2012-06-22 15:06:00
## 3819              73      NA       science            tech  2012-06-20 14:37:00
## 3820              67  100000      computer        hardware  2012-06-29 00:23:00
## 3821              70   60000       science            tech  2011-10-25 23:39:00
## 3822              70      NA          other            <NA> 2012-06-02 12:38:00
## 3823              63      NA          other            <NA> 2012-06-24 13:14:00
## 3824              66   20000      artistic         musical  2012-06-29 15:49:00
## 3825              66      NA          other            <NA> 2012-05-30 19:05:00
## 3826              72      NA        student            <NA> 2012-06-29 07:21:00
## 3827              71      NA        student            <NA> 2012-06-14 11:43:00
## 3828              60   20000     education         academia 2012-06-29 06:23:00
## 3829              69      NA        student            <NA> 2012-03-07 21:32:00
## 3830              60      NA           law   legal services 2012-06-28 19:02:00
## 3831              76      NA      artistic         musical  2012-06-30 00:34:00
## 3832              70      NA       science            tech  2012-06-29 20:38:00
## 3833              66      NA           <NA>            <NA> 2011-07-13 17:38:00
## 3834              67      NA     political       government 2012-06-29 18:11:00
## 3835              74      NA      artistic         musical  2012-06-28 07:31:00
## 3836              65      NA        student            <NA> 2012-04-09 21:09:00
## 3837              67      NA     education         academia 2012-06-25 21:13:00
## 3838              68   60000       science            tech  2012-03-27 11:00:00
## 3839              68      NA      computer        hardware  2012-06-12 23:58:00
## 3840              74      NA      artistic         musical  2012-06-30 03:23:00
## 3841              63      NA       science            tech  2012-06-28 08:36:00
## 3842              62      NA      computer        hardware  2012-06-17 19:33:00
## 3843              70      NA         sales       marketing  2011-09-29 23:44:00
## 3844              65      NA      medicine           health 2012-06-29 13:15:00
## 3845              70   40000      computer        hardware  2012-06-29 22:47:00
## 3846              61      NA       banking       financial  2012-06-30 01:16:00
## 3847              73      NA        student            <NA> 2012-06-28 21:36:00
## 3848              67   50000      computer        hardware  2012-06-09 08:43:00
## 3849              71      NA           <NA>            <NA> 2011-10-27 05:41:00
## 3850              68      NA        student            <NA> 2012-06-20 06:55:00
## 3851              73      NA           <NA>            <NA> 2011-11-19 12:23:00
## 3852              64      NA         sales       marketing  2012-06-26 17:11:00
## 3853              65      NA      medicine           health 2012-06-19 23:46:00
## 3854              73   30000 entertainment            media 2012-06-29 18:00:00
## 3855              69      NA      computer        hardware  2012-06-24 14:50:00
## 3856              66      NA         sales       marketing  2012-06-29 05:10:00
## 3857              69      NA       science            tech  2012-06-28 19:57:00
## 3858              63      NA       banking       financial  2012-06-25 22:25:00
## 3859              67      NA      medicine           health 2012-06-29 08:29:00
## 3860              79      NA      computer        hardware  2012-06-25 12:06:00
## 3861              71      NA       science            tech  2012-06-26 08:20:00
## 3862              70      NA      medicine           health 2012-06-28 21:12:00
## 3863              71      NA       science            tech  2012-05-05 16:30:00
## 3864              67      NA     education         academia 2012-06-30 01:11:00
## 3865              67      NA      artistic         musical  2012-06-26 20:02:00
## 3866              70      NA      computer        hardware  2012-04-25 11:00:00
## 3867              68      NA           <NA>            <NA> 2012-06-29 12:43:00
## 3868              71      NA      medicine           health 2012-01-17 18:48:00
## 3869              68      NA           <NA>            <NA> 2012-06-29 06:02:00
## 3870              73      NA           <NA>            <NA> 2012-06-28 17:10:00
## 3871              69   30000         sales       marketing  2012-06-06 14:41:00
## 3872              70      NA      artistic         musical  2012-06-26 00:33:00
## 3873              63      NA      medicine           health 2012-06-28 00:02:00
## 3874              64      NA         sales       marketing  2012-06-29 22:30:00
## 3875              70      NA     education         academia 2012-06-27 15:51:00
## 3876              64      NA     education         academia 2012-06-29 19:13:00
## 3877              69      NA           <NA>            <NA> 2012-06-27 18:34:00
## 3878              71      NA        student            <NA> 2012-05-01 01:05:00
## 3879              71      NA         sales       marketing  2012-06-17 13:25:00
## 3880              72      NA      medicine           health 2012-06-07 19:24:00
## 3881              65      NA      medicine           health 2012-06-27 22:32:00
## 3882              71      NA      computer        hardware  2011-11-10 23:14:00
## 3883              69      NA     executive       management 2012-06-29 20:06:00
## 3884              67      NA           <NA>            <NA> 2012-06-27 00:48:00
## 3885              65      NA           <NA>            <NA> 2012-06-29 13:51:00
## 3886              68      NA           <NA>            <NA> 2012-06-29 07:47:00
## 3887              72      NA           <NA>            <NA> 2012-06-26 17:43:00
## 3888              69      NA        student            <NA> 2011-12-01 20:40:00
## 3889              62      NA     education         academia 2012-06-29 21:28:00
## 3890              73      NA           <NA>            <NA> 2012-06-29 09:50:00
## 3891              71  100000      computer        hardware  2012-06-25 18:20:00
## 3892              64      NA         sales       marketing  2011-12-23 11:53:00
## 3893              61      NA        student            <NA> 2012-06-30 00:10:00
## 3894              66      NA      medicine           health 2012-06-29 14:33:00
## 3895              68      NA         sales       marketing  2012-06-28 14:52:00
## 3896              72      NA      computer        hardware  2012-06-20 00:11:00
## 3897              64      NA          other            <NA> 2012-06-20 05:22:00
## 3898              70      NA        student            <NA> 2012-06-29 23:57:00
## 3899              69      NA          other            <NA> 2012-06-28 16:23:00
## 3900              66      NA          other            <NA> 2012-06-29 21:34:00
## 3901              61      NA         sales       marketing  2011-10-25 01:00:00
## 3902              69      NA           <NA>            <NA> 2011-11-13 12:26:00
## 3903              75   20000           <NA>            <NA> 2012-06-29 09:50:00
## 3904              78   50000       science            tech  2012-01-01 15:37:00
## 3905              69      NA        student            <NA> 2012-06-29 17:34:00
## 3906              71      NA           <NA>            <NA> 2012-06-25 20:05:00
## 3907              67      NA entertainment            media 2012-06-24 20:46:00
## 3908              69      NA      medicine           health 2012-06-29 17:36:00
## 3909              72      NA       science            tech  2012-04-16 23:26:00
## 3910              72      NA         sales       marketing  2012-06-29 11:18:00
## 3911              70   20000           <NA>            <NA> 2012-06-26 18:39:00
## 3912              71      NA     executive       management 2012-06-30 02:22:00
## 3913              66      NA     education         academia 2012-06-30 01:33:00
## 3914              64   40000      clerical   administrative 2012-01-31 14:29:00
## 3915              60      NA          other            <NA> 2012-06-29 13:13:00
## 3916              69   50000          other            <NA> 2012-01-01 19:58:00
## 3917              64      NA        student            <NA> 2012-06-29 03:56:00
## 3918              68   20000        student            <NA> 2012-06-29 16:47:00
## 3919              66      NA         sales       marketing  2012-06-29 21:42:00
## 3920              63   40000     education         academia 2012-06-29 16:52:00
## 3921              65      NA          other            <NA> 2012-03-22 22:35:00
## 3922              68   80000     political       government 2012-02-25 01:17:00
## 3923              65      NA       science            tech  2011-08-29 16:14:00
## 3924              64      NA      computer        hardware  2012-03-31 22:29:00
## 3925              67      NA      medicine           health 2012-01-20 02:12:00
## 3926              66      NA           <NA>            <NA> 2012-06-18 23:28:00
## 3927              71      NA  construction    craftsmanship 2012-06-29 17:58:00
## 3928              72      NA   hospitality           travel 2012-04-17 23:56:00
## 3929              69   60000          other            <NA> 2012-06-14 21:48:00
## 3930              65      NA  construction    craftsmanship 2011-10-17 21:32:00
## 3931              69      NA          other            <NA> 2012-06-29 20:08:00
## 3932              68      NA      computer        hardware  2012-06-30 00:41:00
## 3933              68      NA         sales       marketing  2012-06-29 19:11:00
## 3934              68      NA         sales       marketing  2012-06-29 15:15:00
## 3935              65      NA           <NA>            <NA> 2012-06-29 07:53:00
## 3936              69      NA       science            tech  2012-06-24 22:05:00
## 3937              65      NA           <NA>            <NA> 2011-12-02 21:10:00
## 3938              66      NA          other            <NA> 2012-06-30 00:32:00
## 3939              70      NA      medicine           health 2012-06-29 10:38:00
## 3940              68      NA          other            <NA> 2011-10-18 17:07:00
## 3941              63      NA         sales       marketing  2012-06-20 08:12:00
## 3942              64      NA           <NA>            <NA> 2012-06-29 17:58:00
## 3943              70      NA       science            tech  2012-06-29 23:34:00
## 3944              64      NA        student            <NA> 2011-12-25 17:09:00
## 3945              70      NA           <NA>            <NA> 2012-04-07 09:16:00
## 3946              66      NA        student            <NA> 2012-06-29 16:49:00
## 3947              72      NA       science            tech  2012-06-29 08:22:00
## 3948              64      NA      computer        hardware  2012-06-28 22:15:00
## 3949              70      NA        student            <NA> 2012-06-29 17:15:00
## 3950              68      NA           law   legal services 2012-06-28 11:26:00
## 3951              75   30000     executive       management 2012-06-28 20:08:00
## 3952              70   30000     education         academia 2012-06-26 19:40:00
## 3953              67  150000          other            <NA> 2012-05-11 21:52:00
## 3954              70      NA           <NA>            <NA> 2012-06-29 17:21:00
## 3955              62      NA          other            <NA> 2012-06-28 22:05:00
## 3956              70      NA        student            <NA> 2012-06-29 19:44:00
## 3957              61      NA      medicine           health 2012-06-23 14:02:00
## 3958              64      NA           <NA>            <NA> 2012-06-30 03:29:00
## 3959              72  150000          other            <NA> 2012-03-25 12:25:00
## 3960              67      NA           <NA>            <NA> 2012-06-29 21:35:00
## 3961              64      NA       science            tech  2012-06-26 21:00:00
## 3962              60      NA     education         academia 2012-06-23 18:15:00
## 3963              70      NA          other            <NA> 2012-06-27 02:37:00
## 3964              67      NA      computer        hardware  2012-04-15 22:49:00
## 3965              65      NA entertainment            media 2012-06-29 14:06:00
## 3966              70      NA          other            <NA> 2012-03-12 12:17:00
## 3967              68      NA      computer        hardware  2012-06-30 00:23:00
## 3968              71      NA entertainment            media 2012-06-29 05:38:00
## 3969              70      NA          other            <NA> 2012-06-29 23:51:00
## 3970              65      NA entertainment            media 2012-06-10 12:43:00
## 3971              70      NA       science            tech  2012-06-30 01:43:00
## 3972              71      NA      artistic         musical  2012-02-10 15:44:00
## 3973              68   80000         sales       marketing  2012-06-28 11:07:00
## 3974              64   80000      computer        hardware  2012-06-29 20:44:00
## 3975              70      NA        student            <NA> 2012-06-29 02:21:00
## 3976              69   80000      computer        hardware  2012-06-29 00:17:00
## 3977              69      NA     executive       management 2012-06-18 22:19:00
## 3978              70      NA       science            tech  2012-06-02 20:40:00
## 3979              64      NA           <NA>            <NA> 2011-10-12 16:38:00
## 3980              64      NA           law   legal services 2012-06-30 00:12:00
## 3981              70      NA        student            <NA> 2012-05-25 16:22:00
## 3982              66  100000      artistic         musical  2012-06-29 19:14:00
## 3983              70      NA           <NA>            <NA> 2012-06-30 01:44:00
## 3984              74   80000      computer        hardware  2012-06-13 06:50:00
## 3985              73      NA       science            tech  2012-06-30 00:55:00
## 3986              72      NA     executive       management 2012-06-29 21:05:00
## 3987              73      NA          other            <NA> 2012-06-27 18:38:00
## 3988              68      NA      artistic         musical  2012-06-29 23:36:00
## 3989              69      NA           <NA>            <NA> 2012-06-24 19:49:00
## 3990              69      NA      computer        hardware  2012-06-19 21:59:00
## 3991              66      NA      artistic         musical  2012-06-27 17:10:00
## 3992              69  150000       science            tech  2012-06-29 21:43:00
## 3993              77      NA      computer        hardware  2012-06-30 00:43:00
## 3994              67      NA          other            <NA> 2012-06-29 14:53:00
## 3995              70      NA      artistic         musical  2012-06-29 16:28:00
## 3996              64      NA       science            tech  2012-06-29 00:43:00
## 3997              72      NA      medicine           health 2012-06-02 17:18:00
## 3998              66      NA           <NA>            <NA> 2012-06-27 20:56:00
## 3999              71      NA  construction    craftsmanship 2012-06-28 19:13:00
## 4000              75      NA entertainment            media 2011-12-26 18:39:00
## 4001              73      NA     executive       management 2012-06-29 23:06:00
## 4002              74      NA       science            tech  2012-06-17 19:50:00
## 4003              74      NA  construction    craftsmanship 2012-06-30 01:15:00
## 4004              73      NA          other            <NA> 2012-06-09 22:29:00
## 4005              69      NA      artistic         musical  2012-06-29 22:16:00
## 4006              73  100000           <NA>            <NA> 2012-06-17 13:55:00
## 4007              74   70000       science            tech  2012-06-27 16:33:00
## 4008              64   60000      artistic         musical  2012-06-18 23:10:00
## 4009              67 1000000       science            tech  2012-06-30 00:29:00
## 4010              68      NA           <NA>            <NA> 2012-06-29 16:53:00
## 4011              71      NA     education         academia 2011-12-07 01:14:00
## 4012              63      NA      medicine           health 2012-06-29 19:23:00
## 4013              76      NA      computer        hardware  2012-04-22 10:24:00
## 4014              74      NA           <NA>            <NA> 2012-06-25 01:01:00
## 4015              67      NA       science            tech  2012-06-04 18:35:00
## 4016              69  100000      computer        hardware  2012-06-29 14:58:00
## 4017              71      NA       science            tech  2012-06-18 09:44:00
## 4018              73      NA        student            <NA> 2011-10-01 10:49:00
## 4019              66      NA        student            <NA> 2012-06-29 13:57:00
## 4020              63      NA      medicine           health 2012-06-29 09:58:00
## 4021              69      NA      artistic         musical  2012-06-09 15:18:00
## 4022              73  100000      computer        hardware  2012-06-20 14:56:00
## 4023              67      NA      computer        hardware  2012-06-29 12:16:00
## 4024              71   40000  construction    craftsmanship 2011-12-18 08:52:00
## 4025              66      NA     executive       management 2012-06-20 23:02:00
## 4026              71      NA entertainment            media 2012-06-29 22:06:00
## 4027              76      NA           <NA>            <NA> 2012-02-15 22:52:00
## 4028              60      NA     education         academia 2012-06-30 03:33:00
## 4029              69      NA       science            tech  2012-06-26 21:51:00
## 4030              72      NA           <NA>            <NA> 2012-06-30 00:16:00
## 4031              73      NA      artistic         musical  2012-06-30 03:33:00
## 4032              69  100000      computer        hardware  2012-06-28 00:03:00
## 4033              72   20000      clerical   administrative 2012-06-28 19:26:00
## 4034              64      NA      medicine           health 2012-06-29 22:03:00
## 4035              69      NA        student            <NA> 2012-06-29 15:36:00
## 4036              74      NA     education         academia 2012-06-19 22:13:00
## 4037              64      NA  construction    craftsmanship 2012-05-21 18:54:00
## 4038              72      NA entertainment            media 2012-05-09 13:15:00
## 4039              65      NA          other            <NA> 2011-09-04 17:50:00
## 4040              67      NA         sales       marketing  2012-06-29 16:09:00
## 4041              65  150000         sales       marketing  2012-04-29 10:14:00
## 4042              79      NA      computer        hardware  2012-06-29 20:54:00
## 4043              64      NA          other            <NA> 2012-06-28 22:38:00
## 4044              74      NA     executive       management 2012-06-29 22:09:00
## 4045              67      NA      artistic         musical  2012-06-26 20:35:00
## 4046              66      NA       science            tech  2012-06-20 14:53:00
## 4047              70      NA         sales       marketing  2012-06-28 22:11:00
## 4048              70      NA      artistic         musical  2012-06-30 02:08:00
## 4049              70      NA        student            <NA> 2012-06-21 16:36:00
## 4050              64      NA          other            <NA> 2012-06-29 08:42:00
## 4051              65      NA          other            <NA> 2012-06-29 22:38:00
## 4052              67      NA           law   legal services 2012-06-30 00:20:00
## 4053              71      NA       banking       financial  2012-06-25 08:14:00
## 4054              71   20000        student            <NA> 2012-02-05 17:37:00
## 4055              61      NA      artistic         musical  2012-06-29 20:06:00
## 4056              64      NA entertainment            media 2012-06-26 14:39:00
## 4057              64      NA     education         academia 2012-06-29 16:17:00
## 4058              62      NA     education         academia 2012-06-29 22:02:00
## 4059              64      NA      artistic         musical  2012-06-27 22:40:00
## 4060              64      NA         sales       marketing  2012-06-23 18:22:00
## 4061              66      NA           <NA>            <NA> 2012-06-30 02:13:00
## 4062              69   20000          other            <NA> 2012-06-18 02:53:00
## 4063              65      NA        student            <NA> 2012-06-14 13:22:00
## 4064              61      NA       science            tech  2012-06-30 02:01:00
## 4065              69      NA       banking       financial  2012-06-29 08:59:00
## 4066              65      NA      medicine           health 2012-06-25 19:58:00
## 4067              67      NA          other            <NA> 2012-02-15 01:35:00
## 4068              68      NA     executive       management 2012-06-30 02:15:00
## 4069              64      NA      computer        hardware  2012-06-30 01:44:00
## 4070              69      NA     executive       management 2011-08-31 22:08:00
## 4071              73      NA entertainment            media 2012-06-29 20:59:00
## 4072              69      NA      artistic         musical  2012-06-20 23:43:00
## 4073              61      NA        student            <NA> 2012-06-29 18:02:00
## 4074              65      NA          other            <NA> 2012-06-22 18:47:00
## 4075              65      NA      artistic         musical  2012-06-29 00:53:00
## 4076              65      NA           <NA>            <NA> 2011-11-07 23:36:00
## 4077              63      NA        student            <NA> 2012-06-28 15:59:00
## 4078              66      NA     education         academia 2012-04-23 14:31:00
## 4079              68      NA      computer        hardware  2012-04-22 15:38:00
## 4080              67      NA           law   legal services 2011-08-25 10:29:00
## 4081              61      NA       banking       financial  2012-06-26 07:09:00
## 4082              64      NA      medicine           health 2012-06-28 09:09:00
## 4083              71   40000     education         academia 2012-06-30 03:36:00
## 4084              64      NA      medicine           health 2012-06-26 19:30:00
## 4085              71      NA entertainment            media 2012-03-09 22:08:00
## 4086              63      NA          other            <NA> 2012-06-28 21:21:00
## 4087              65      NA          other            <NA> 2012-06-25 23:54:00
## 4088              67      NA           <NA>            <NA> 2012-06-24 21:36:00
## 4089              67      NA         sales       marketing  2012-06-19 01:02:00
## 4090              69      NA      computer        hardware  2012-06-29 01:30:00
## 4091              72      NA rather not say            <NA> 2011-09-22 01:38:00
## 4092              69      NA          other            <NA> 2012-06-05 17:06:00
## 4093              73      NA           <NA>            <NA> 2012-06-29 21:16:00
## 4094              69      NA           <NA>            <NA> 2012-06-26 08:49:00
## 4095              67  150000     executive       management 2012-06-29 22:22:00
## 4096              71   20000      artistic         musical  2012-06-13 17:38:00
## 4097              62      NA         sales       marketing  2012-06-18 14:03:00
## 4098              68      NA           <NA>            <NA> 2012-06-22 16:56:00
## 4099              71      NA       science            tech  2012-06-29 09:26:00
## 4100              67      NA       banking       financial  2012-06-19 08:20:00
## 4101              64      NA      computer        hardware  2012-06-24 08:55:00
## 4102              68      NA          other            <NA> 2012-06-29 15:08:00
## 4103              69      NA        student            <NA> 2012-01-31 18:41:00
## 4104              66      NA       banking       financial  2012-06-19 22:57:00
## 4105              67      NA        student            <NA> 2011-12-05 03:14:00
## 4106              69      NA           <NA>            <NA> 2012-06-27 16:08:00
## 4107              70  100000      computer        hardware  2011-10-19 01:43:00
## 4108              69      NA        student            <NA> 2012-06-18 08:32:00
## 4109              70      NA      artistic         musical  2012-06-21 23:04:00
## 4110              64   40000     education         academia 2012-06-28 08:32:00
## 4111              68      NA         sales       marketing  2012-05-18 13:14:00
## 4112              69      NA           <NA>            <NA> 2012-06-22 18:03:00
## 4113              67      NA      computer        hardware  2011-12-29 00:19:00
## 4114              72   80000         sales       marketing  2012-06-20 02:23:00
## 4115              63      NA       science            tech  2012-06-28 21:48:00
## 4116              69      NA      artistic         musical  2012-06-29 19:41:00
## 4117              62      NA           law   legal services 2012-06-09 19:48:00
## 4118              67      NA      computer        hardware  2012-06-06 22:56:00
## 4119              71      NA        student            <NA> 2012-06-27 21:26:00
## 4120              74   20000        student            <NA> 2012-06-02 14:01:00
## 4121              68      NA rather not say            <NA> 2012-06-30 00:53:00
## 4122              67      NA        student            <NA> 2012-06-29 19:25:00
## 4123              70      NA         sales       marketing  2012-06-21 19:13:00
## 4124              67      NA       science            tech  2012-06-30 01:52:00
## 4125              67      NA           <NA>            <NA> 2012-06-20 20:52:00
## 4126              60      NA       banking       financial  2012-06-19 08:30:00
## 4127              68      NA         sales       marketing  2012-06-28 09:20:00
## 4128              73      NA       military            <NA> 2012-06-30 03:38:00
## 4129              67   60000       military            <NA> 2012-06-02 12:11:00
## 4130              65      NA       military            <NA> 2012-04-28 18:07:00
## 4131              67      NA      medicine           health 2012-06-29 21:43:00
## 4132              72   30000          other            <NA> 2011-12-20 11:50:00
## 4133              71      NA       science            tech  2012-06-27 23:56:00
## 4134              70   80000       science            tech  2012-06-22 20:29:00
## 4135              72  150000     executive       management 2012-06-28 00:41:00
## 4136              63      NA         sales       marketing  2012-06-29 22:15:00
## 4137              76      NA        student            <NA> 2012-06-27 13:47:00
## 4138              66      NA           law   legal services 2012-06-28 02:20:00
## 4139              69      NA           <NA>            <NA> 2012-06-27 23:25:00
## 4140              69      NA        retired            <NA> 2012-06-25 10:17:00
## 4141              70      NA       science            tech  2012-06-30 02:18:00
## 4142              75      NA       science            tech  2012-06-29 20:43:00
## 4143              73      NA      medicine           health 2012-06-18 09:52:00
## 4144              62      NA      medicine           health 2012-06-04 04:28:00
## 4145              70      NA entertainment            media 2011-07-21 20:00:00
## 4146              65      NA   hospitality           travel 2011-10-16 23:28:00
## 4147              60      NA     education         academia 2012-06-30 00:17:00
## 4148              69      NA        student            <NA> 2012-06-12 19:57:00
## 4149              73      NA     executive       management 2012-06-28 18:17:00
## 4150              65      NA      artistic         musical  2012-06-29 17:48:00
## 4151              69      NA       science            tech  2012-06-20 09:07:00
## 4152              69      NA     education         academia 2012-05-25 11:09:00
## 4153              66   80000     political       government 2012-06-28 16:22:00
## 4154              70      NA   hospitality           travel 2012-06-27 23:48:00
## 4155              70      NA       banking       financial  2012-06-27 18:32:00
## 4156              73      NA entertainment            media 2012-06-23 15:25:00
## 4157              60      NA         sales       marketing  2012-06-28 13:22:00
## 4158              64      NA      artistic         musical  2012-06-29 11:46:00
## 4159              68      NA      medicine           health 2012-06-26 22:55:00
## 4160              68   50000      medicine           health 2012-06-29 08:04:00
## 4161              64      NA      medicine           health 2012-05-23 15:33:00
## 4162              69      NA      computer        hardware  2012-04-05 13:48:00
## 4163              67      NA          other            <NA> 2012-03-10 18:35:00
## 4164              69      NA       science            tech  2012-06-29 10:55:00
## 4165              70      NA      medicine           health 2012-06-29 21:57:00
## 4166              66      NA      artistic         musical  2012-06-29 10:46:00
##                     city       state                               offspring
## 1    south san francisco  california  doesn't have kids, but might want them
## 2                oakland  california  doesn't have kids, but might want them
## 3          san francisco  california                                    <NA>
## 4               berkeley  california                       doesn't want kids
## 5          san francisco  california                                    <NA>
## 6          san francisco  california  doesn't have kids, but might want them
## 7          san francisco  california                                    <NA>
## 8          san francisco  california       doesn't have kids, but wants them
## 9      belvedere tiburon  california                       doesn't have kids
## 10             san mateo  california                                    <NA>
## 11         san francisco  california                                    <NA>
## 12             daly city  california                                    <NA>
## 13         san francisco  california                       doesn't have kids
## 14         san francisco  california                                    <NA>
## 15           san leandro  california       doesn't have kids, but wants them
## 16         san francisco  california                       doesn't have kids
## 17               oakland  california                                    <NA>
## 18         san francisco  california                       doesn't have kids
## 19         san francisco  california                                    <NA>
## 20         san francisco  california                       doesn't have kids
## 21         san francisco  california                                    <NA>
## 22         san francisco  california  doesn't have kids, but might want them
## 23         san francisco  california  doesn't have kids, but might want them
## 24         san francisco  california                                    <NA>
## 25               oakland  california                                    <NA>
## 26              atherton  california       doesn't have kids, but wants them
## 27         san francisco  california                                    <NA>
## 28               oakland  california                                    <NA>
## 29         san francisco  california                                    <NA>
## 30         san francisco  california                                    <NA>
## 31         san francisco  california                                    <NA>
## 32         san francisco  california       doesn't have kids, but wants them
## 33           san leandro  california                       doesn't have kids
## 34            san rafael  california                       doesn't want kids
## 35         san francisco  california                                    <NA>
## 36         san francisco  california                                    <NA>
## 37         san francisco  california       doesn't have kids, but wants them
## 38               oakland  california  doesn't have kids, but might want them
## 39          walnut creek  california                                    <NA>
## 40            san rafael  california                                    <NA>
## 41            menlo park  california                       doesn't have kids
## 42               oakland  california       doesn't have kids, but wants them
## 43              berkeley  california                                    <NA>
## 44         san francisco  california                       doesn't have kids
## 45         san francisco  california                       doesn't have kids
## 46               oakland  california                       doesn't have kids
## 47         san francisco  california                                    <NA>
## 48         san francisco  california                       doesn't have kids
## 49         san francisco  california                       doesn't have kids
## 50               belmont  california                       doesn't have kids
## 51               oakland  california                                    <NA>
## 52               oakland  california                              wants kids
## 53         san francisco  california                       doesn't have kids
## 54               oakland  california                                    <NA>
## 55            menlo park  california                                    <NA>
## 56         san francisco  california                       doesn't have kids
## 57              berkeley  california                                    <NA>
## 58         san francisco  california                                    <NA>
## 59         san francisco  california                                    <NA>
## 60         san francisco  california                                    <NA>
## 61         san francisco  california                                    <NA>
## 62         san francisco  california                       doesn't have kids
## 63         san francisco  california                       doesn't have kids
## 64         san francisco  california  doesn't have kids, but might want them
## 65         san francisco  california                       doesn't have kids
## 66         san francisco  california                       doesn't have kids
## 67              san jose  california                                    <NA>
## 68         san francisco  california                                    <NA>
## 69             palo alto  california                       doesn't want kids
## 70              berkeley  california                                    <NA>
## 71               belmont  california                                    <NA>
## 72         san francisco  california                                    <NA>
## 73            emeryville  california  doesn't have kids, but might want them
## 74               oakland  california  doesn't have kids, but might want them
## 75               oakland  california                                    <NA>
## 76               oakland  california                       doesn't have kids
## 77              berkeley  california  doesn't have kids, but might want them
## 78         san francisco  california                                    <NA>
## 79         san francisco  california                       doesn't have kids
## 80         san francisco  california                                    <NA>
## 81         san francisco  california                       doesn't have kids
## 82         san francisco  california                                    <NA>
## 83         san francisco  california                                    <NA>
## 84         san francisco  california                                    <NA>
## 85         san francisco  california                                    <NA>
## 86             palo alto  california                                    <NA>
## 87         san francisco  california                                    <NA>
## 88         san francisco  california                                    <NA>
## 89               oakland  california                       doesn't have kids
## 90         san francisco  california                                    <NA>
## 91         san francisco  california                                    <NA>
## 92            san rafael  california                                    <NA>
## 93            el granada  california                                    <NA>
## 94         san francisco  california                       doesn't have kids
## 95         san francisco  california                       doesn't want kids
## 96         san francisco  california  doesn't have kids, but might want them
## 97         san francisco  california                                    <NA>
## 98         san francisco  california                       doesn't have kids
## 99         san francisco  california  doesn't have kids, but might want them
## 100        castro valley  california                               has a kid
## 101        san francisco  california  doesn't have kids, but might want them
## 102            daly city  california                                    <NA>
## 103              fairfax  california                                    <NA>
## 104        san francisco  california                                    <NA>
## 105        san francisco  california       doesn't have kids, but wants them
## 106        mountain view  california                                has kids
## 107           menlo park  california                       doesn't have kids
## 108           burlingame  california                                    <NA>
## 109        san francisco  california  doesn't have kids, but might want them
## 110             martinez  california                       doesn't have kids
## 111        san francisco  california                                    <NA>
## 112              oakland  california                       doesn't have kids
## 113              oakland  california                                    <NA>
## 114        san francisco  california                               has a kid
## 115           emeryville  california                                    <NA>
## 116        pleasant hill  california                                    <NA>
## 117              hayward  california                                    <NA>
## 118              alameda  california                                has kids
## 119        san francisco  california                       doesn't have kids
## 120             berkeley  california                                    <NA>
## 121        san francisco  california                                    <NA>
## 122              vallejo  california                                has kids
## 123        san francisco  california                                    <NA>
## 124        san francisco  california doesn't have kids, and doesn't want any
## 125        san francisco  california                                    <NA>
## 126        san francisco  california                                    <NA>
## 127           emeryville  california                                    <NA>
## 128        san francisco  california                                    <NA>
## 129        san francisco  california                       doesn't want kids
## 130           menlo park  california                       doesn't want kids
## 131        san francisco  california                                    <NA>
## 132             berkeley  california                                    <NA>
## 133        san francisco  california                                    <NA>
## 134        san francisco  california                                    <NA>
## 135             berkeley  california                       doesn't have kids
## 136        san francisco  california       doesn't have kids, but wants them
## 137             berkeley  california                       doesn't have kids
## 138              benicia  california                       doesn't want kids
## 139              oakland  california                                    <NA>
## 140        castro valley  california  doesn't have kids, but might want them
## 141        san francisco  california  doesn't have kids, but might want them
## 142            daly city  california                       doesn't want kids
## 143              oakland  california                                    <NA>
## 144              oakland  california                       doesn't have kids
## 145             berkeley  california                                has kids
## 146        san francisco  california                                    <NA>
## 147           el cerrito  california                       doesn't have kids
## 148              vallejo  california                                has kids
## 149           menlo park  california                                    <NA>
## 150          mill valley  california                                    <NA>
## 151        san francisco  california                                has kids
## 152        san francisco  california                                    <NA>
## 153              oakland  california                       doesn't want kids
## 154              oakland  california                                    <NA>
## 155              oakland  california       doesn't have kids, but wants them
## 156            san mateo  california                                    <NA>
## 157             richmond  california                               has a kid
## 158        san francisco  california                                    <NA>
## 159         redwood city  california                                    <NA>
## 160           san rafael  california                                    <NA>
## 161              oakland  california                                has kids
## 162           el cerrito  california                                    <NA>
## 163        san francisco  california                                    <NA>
## 164        san francisco  california                                    <NA>
## 165             berkeley  california doesn't have kids, and doesn't want any
## 166        san francisco  california                       doesn't have kids
## 167        san francisco  california                                    <NA>
## 168             berkeley  california  doesn't have kids, but might want them
## 169        san francisco  california       doesn't have kids, but wants them
## 170              oakland  california  doesn't have kids, but might want them
## 171        san francisco  california                                    <NA>
## 172           san rafael  california                       doesn't have kids
## 173           menlo park  california                                has kids
## 174        san francisco  california                                    <NA>
## 175          el sobrante  california                                    <NA>
## 176        san francisco  california                               has a kid
## 177         walnut creek  california       doesn't have kids, but wants them
## 178        san francisco  california                       doesn't want kids
## 179         walnut creek  california                                    <NA>
## 180           el cerrito  california doesn't have kids, and doesn't want any
## 181              oakland  california                                    <NA>
## 182          mill valley  california                       doesn't have kids
## 183        san francisco  california doesn't have kids, and doesn't want any
## 184            san mateo  california                                    <NA>
## 185              hayward  california                       doesn't have kids
## 186              alameda  california                               has a kid
## 187        san francisco  california         has kids, but doesn't want more
## 188        san francisco  california                                    <NA>
## 189        san francisco  california                                    <NA>
## 190        san francisco  california  doesn't have kids, but might want them
## 191             berkeley  california  doesn't have kids, but might want them
## 192              belmont  california                                    <NA>
## 193              oakland  california                                    <NA>
## 194              oakland  california                                    <NA>
## 195             stanford  california       doesn't have kids, but wants them
## 196        san francisco  california       doesn't have kids, but wants them
## 197        san francisco  california                       doesn't have kids
## 198        san francisco  california                                    <NA>
## 199        san francisco  california                                    <NA>
## 200            daly city  california                                    <NA>
## 201            san pablo  california                                    <NA>
## 202        san francisco  california  doesn't have kids, but might want them
## 203           menlo park  california                       doesn't have kids
## 204              oakland  california       doesn't have kids, but wants them
## 205        san francisco  california                                    <NA>
## 206              oakland  california                                    <NA>
## 207        san francisco  california                       doesn't have kids
## 208            san mateo  california                                    <NA>
## 209        san francisco  california                                    <NA>
## 210           menlo park  california                                    <NA>
## 211           menlo park  california         has kids, but doesn't want more
## 212        san francisco  california                       doesn't have kids
## 213        san francisco  california                                    <NA>
## 214              oakland  california                                has kids
## 215               novato  california                       doesn't have kids
## 216             pacifica  california                               has a kid
## 217              oakland  california                                    <NA>
## 218        san francisco  california                                has kids
## 219             berkeley  california       doesn't have kids, but wants them
## 220        san francisco  california       doesn't have kids, but wants them
## 221              vallejo  california                                    <NA>
## 222         redwood city  california                                    <NA>
## 223        san francisco  california                                    <NA>
## 224            lafayette  california                                has kids
## 225              oakland  california                                    <NA>
## 226        half moon bay  california                                    <NA>
## 227        san francisco  california                                    <NA>
## 228        san francisco  california                                    <NA>
## 229        san francisco  california  doesn't have kids, but might want them
## 230             berkeley  california                                    <NA>
## 231        san francisco  california                                    <NA>
## 232              fremont  california                                has kids
## 233               orinda  california                                    <NA>
## 234              oakland  california                                    <NA>
## 235              alameda  california                                    <NA>
## 236            san mateo  california        has a kid, but doesn't want more
## 237               orinda  california                                has kids
## 238              hayward  california                                    <NA>
## 239        san francisco  california doesn't have kids, and doesn't want any
## 240            san mateo  california                                    <NA>
## 241        san francisco  california  doesn't have kids, but might want them
## 242            san mateo  california                                    <NA>
## 243            san mateo  california  doesn't have kids, but might want them
## 244             berkeley  california                                    <NA>
## 245        san francisco  california                                    <NA>
## 246              oakland  california                                has kids
## 247              oakland  california  doesn't have kids, but might want them
## 248        san francisco  california                                    <NA>
## 249               novato  california                                    <NA>
## 250           el cerrito  california       doesn't have kids, but wants them
## 251          san anselmo  california                                    <NA>
## 252        san francisco  california                                has kids
## 253             berkeley  california                                    <NA>
## 254        san francisco  california                                    <NA>
## 255        castro valley  california                               has a kid
## 256              oakland  california                                    <NA>
## 257              oakland  california                                    <NA>
## 258        san francisco  california                                has kids
## 259            san pablo  california                               has a kid
## 260              vallejo  california         has kids, but doesn't want more
## 261             berkeley  california                                has kids
## 262        mountain view  california               has a kid, and wants more
## 263            san mateo  california                       doesn't have kids
## 264        san francisco  california  doesn't have kids, but might want them
## 265           burlingame  california                       doesn't have kids
## 266              oakland  california                                    <NA>
## 267            san mateo  california                       doesn't have kids
## 268             berkeley  california  doesn't have kids, but might want them
## 269        san francisco  california                                    <NA>
## 270        san francisco  california                                    <NA>
## 271        san francisco  california       doesn't have kids, but wants them
## 272              oakland  california                                    <NA>
## 273         corte madera  california                                    <NA>
## 274        san francisco  california                                    <NA>
## 275        san francisco  california                                    <NA>
## 276             berkeley  california                                    <NA>
## 277  south san francisco  california                                    <NA>
## 278        san francisco  california       doesn't have kids, but wants them
## 279           san rafael  california                       doesn't want kids
## 280          mill valley  california                                    <NA>
## 281              hayward  california                                    <NA>
## 282           menlo park  california           has kids, and might want more
## 283              oakland  california                                    <NA>
## 284        san francisco  california  doesn't have kids, but might want them
## 285              oakland  california                               has a kid
## 286               albany  california                                has kids
## 287        san francisco  california                                    <NA>
## 288           san rafael  california                                    <NA>
## 289        san francisco  california                                    <NA>
## 290        pleasant hill  california                                    <NA>
## 291             berkeley  california                                    <NA>
## 292        san francisco  california                                    <NA>
## 293        san francisco  california                       doesn't have kids
## 294             berkeley  california                                    <NA>
## 295              oakland  california        has a kid, but doesn't want more
## 296         walnut creek  california                                    <NA>
## 297          san leandro  california                               has a kid
## 298        san francisco  california                       doesn't have kids
## 299        san francisco  california                       doesn't want kids
## 300              oakland  california                                    <NA>
## 301              oakland  california                       doesn't want kids
## 302        castro valley  california                                    <NA>
## 303        san francisco  california                                    <NA>
## 304        san francisco  california                       doesn't have kids
## 305        san francisco  california  doesn't have kids, but might want them
## 306             berkeley  california       doesn't have kids, but wants them
## 307              vallejo  california                               has a kid
## 308        san francisco  california  doesn't have kids, but might want them
## 309        san francisco  california                                    <NA>
## 310           el cerrito  california                                    <NA>
## 311         redwood city  california                       doesn't have kids
## 312        san francisco  california                                    <NA>
## 313             berkeley  california                                    <NA>
## 314           burlingame  california                                    <NA>
## 315        san francisco  california                                has kids
## 316        mountain view  california doesn't have kids, and doesn't want any
## 317             berkeley  california         has kids, but doesn't want more
## 318         redwood city  california       doesn't have kids, but wants them
## 319               novato  california         has kids, but doesn't want more
## 320        san francisco  california                                    <NA>
## 321             berkeley  california                       doesn't want kids
## 322              oakland  california                       doesn't have kids
## 323        san francisco  california                       doesn't have kids
## 324           san carlos  california                       doesn't have kids
## 325        san francisco  california                                    <NA>
## 326        san francisco  california                                    <NA>
## 327        san francisco  california                       doesn't have kids
## 328        san francisco  california                                    <NA>
## 329          mill valley  california                               has a kid
## 330        san francisco  california                               has a kid
## 331              vallejo  california                                has kids
## 332        san francisco  california                                    <NA>
## 333        san francisco  california                                    <NA>
## 334            san mateo  california                                    <NA>
## 335        san francisco  california                                    <NA>
## 336         walnut creek  california doesn't have kids, and doesn't want any
## 337          san lorenzo  california       doesn't have kids, but wants them
## 338        san francisco  california                       doesn't have kids
## 339        san francisco  california       doesn't have kids, but wants them
## 340        san francisco  california  doesn't have kids, but might want them
## 341        san francisco  california                                    <NA>
## 342           san carlos  california                                    <NA>
## 343              oakland  california       doesn't have kids, but wants them
## 344        san francisco  california                       doesn't have kids
## 345               novato  california                                    <NA>
## 346        san francisco  california                       doesn't have kids
## 347           menlo park  california                       doesn't have kids
## 348              belmont  california                       doesn't want kids
## 349             richmond  california                                    <NA>
## 350             pacifica  california                                has kids
## 351        san francisco  california  doesn't have kids, but might want them
## 352           emeryville  california                                    <NA>
## 353             berkeley  california                                    <NA>
## 354         redwood city  california                                    <NA>
## 355              hayward  california       doesn't have kids, but wants them
## 356        san francisco  california                                    <NA>
## 357        san francisco  california                       doesn't want kids
## 358          foster city  california                                    <NA>
## 359        san francisco  california                                    <NA>
## 360         redwood city  california                                has kids
## 361              oakland  california                                    <NA>
## 362           san rafael  california                       doesn't want kids
## 363        san francisco  california doesn't have kids, and doesn't want any
## 364        san francisco  california                                    <NA>
## 365              alameda  california       doesn't have kids, but wants them
## 366        san francisco  california  doesn't have kids, but might want them
## 367            san mateo  california  doesn't have kids, but might want them
## 368           menlo park  california                               has a kid
## 369        san francisco  california                                    <NA>
## 370             hercules  california                       doesn't have kids
## 371        san francisco  california                                    <NA>
## 372        san francisco  california                                    <NA>
## 373              oakland  california                       doesn't have kids
## 374        san francisco  california                                    <NA>
## 375        mountain view  california                                    <NA>
## 376              alameda  california                                has kids
## 377        san francisco  california  doesn't have kids, but might want them
## 378        san francisco  california                                    <NA>
## 379        san francisco  california                                    <NA>
## 380             berkeley  california                                    <NA>
## 381        mountain view  california                                    <NA>
## 382        san francisco  california                                    <NA>
## 383              oakland  california doesn't have kids, and doesn't want any
## 384        san francisco  california                       doesn't have kids
## 385        san francisco  california                                    <NA>
## 386        san francisco  california                               has a kid
## 387              oakland  california                                    <NA>
## 388        san francisco  california                                    <NA>
## 389            daly city  california                                    <NA>
## 390        san francisco  california                         might want kids
## 391            palo alto  california                                    <NA>
## 392               novato  california                                has kids
## 393             pacifica  california                                    <NA>
## 394        san francisco  california                       doesn't have kids
## 395              oakland  california                                    <NA>
## 396             berkeley  california                                has kids
## 397        san francisco  california       doesn't have kids, but wants them
## 398             berkeley  california                                    <NA>
## 399        san francisco  california         has kids, but doesn't want more
## 400        san francisco  california                                    <NA>
## 401               orinda  california                                    <NA>
## 402        san francisco  california                       doesn't have kids
## 403        san francisco  california                                    <NA>
## 404           menlo park  california                       doesn't want kids
## 405         walnut creek  california         has kids, but doesn't want more
## 406             berkeley  california          has a kid, and might want more
## 407              oakland  california                       doesn't have kids
## 408        san francisco  california                                    <NA>
## 409              oakland  california                       doesn't want kids
## 410           santa cruz  california                                    <NA>
## 411            palo alto  california                                has kids
## 412              vallejo  california         has kids, but doesn't want more
## 413         redwood city  california                                    <NA>
## 414            palo alto  california                                    <NA>
## 415           san rafael  california        has a kid, but doesn't want more
## 416              hayward  california                       doesn't have kids
## 417              oakland  california           has kids, and might want more
## 418              alameda  california                                    <NA>
## 419           menlo park  california                                    <NA>
## 420        san francisco  california  doesn't have kids, but might want them
## 421        san francisco  california                       doesn't want kids
## 422        san francisco  california                       doesn't want kids
## 423        san francisco  california                                    <NA>
## 424              oakland  california                                    <NA>
## 425        san francisco  california                                    <NA>
## 426              oakland  california                                    <NA>
## 427        san francisco  california                                    <NA>
## 428              oakland  california                                    <NA>
## 429        san francisco  california       doesn't have kids, but wants them
## 430             berkeley  california                       doesn't have kids
## 431        san francisco  california                                    <NA>
## 432        san francisco  california                                    <NA>
## 433        san francisco  california                                has kids
## 434              oakland  california                       doesn't want kids
## 435            palo alto  california                       doesn't have kids
## 436        san francisco  california                                    <NA>
## 437            san mateo  california                                has kids
## 438              alameda  california                                    <NA>
## 439        san francisco  california                       doesn't have kids
## 440              oakland  california                                    <NA>
## 441        san francisco  california                                    <NA>
## 442              oakland  california                               has a kid
## 443        san francisco  california                                    <NA>
## 444        san francisco  california                                    <NA>
## 445        san francisco  california                       doesn't have kids
## 446              oakland  california                                    <NA>
## 447        san francisco  california                                    <NA>
## 448        san francisco  california                                    <NA>
## 449             berkeley  california       doesn't have kids, but wants them
## 450         walnut creek  california                                    <NA>
## 451        san francisco  california                                has kids
## 452          san lorenzo  california                                    <NA>
## 453             berkeley  california                                    <NA>
## 454              bolinas  california                                    <NA>
## 455        san francisco  california                                    <NA>
## 456        san francisco  california       doesn't have kids, but wants them
## 457            san mateo  california                                    <NA>
## 458        san francisco  california       doesn't have kids, but wants them
## 459             berkeley  california                                    <NA>
## 460        san francisco  california  doesn't have kids, but might want them
## 461        san francisco  california       doesn't have kids, but wants them
## 462        san francisco  california                                    <NA>
## 463              oakland  california                       doesn't have kids
## 464        san francisco  california                                has kids
## 465              hayward  california                                    <NA>
## 466        san francisco  california                                    <NA>
## 467        san francisco  california                                    <NA>
## 468        san francisco  california                                    <NA>
## 469              oakland  california                                    <NA>
## 470        san francisco  california                       doesn't have kids
## 471              hayward  california                               has a kid
## 472              oakland  california  doesn't have kids, but might want them
## 473          mill valley  california                               has a kid
## 474              oakland  california                                    <NA>
## 475        san francisco  california                       doesn't want kids
## 476        san francisco  california                                    <NA>
## 477        san francisco  california  doesn't have kids, but might want them
## 478             berkeley  california                                    <NA>
## 479             berkeley  california                       doesn't have kids
## 480        san francisco  california                                    <NA>
## 481        san francisco  california  doesn't have kids, but might want them
## 482              oakland  california                                    <NA>
## 483        san francisco  california                                    <NA>
## 484        san francisco  california                                    <NA>
## 485        san francisco  california                                    <NA>
## 486              alameda  california                       doesn't want kids
## 487        san francisco  california       doesn't have kids, but wants them
## 488        san francisco  california                                    <NA>
## 489        san francisco  california                                    <NA>
## 490              oakland  california                                    <NA>
## 491        san francisco  california               has a kid, and wants more
## 492            san mateo  california                                    <NA>
## 493        san francisco  california                                    <NA>
## 494        san francisco  california                       doesn't have kids
## 495             berkeley  california                                    <NA>
## 496        san francisco  california                       doesn't want kids
## 497           san rafael  california          has a kid, and might want more
## 498        san francisco  california                                    <NA>
## 499        san francisco  california                                    <NA>
## 500        san francisco  california                                    <NA>
## 501        san francisco  california                                    <NA>
## 502        san francisco  california                                    <NA>
## 503        san francisco  california       doesn't have kids, but wants them
## 504          mill valley  california       doesn't have kids, but wants them
## 505            sausalito  california  doesn't have kids, but might want them
## 506             millbrae  california                                    <NA>
## 507           menlo park  california                                    <NA>
## 508            palo alto  california                       doesn't want kids
## 509        san francisco  california                               has a kid
## 510              oakland  california                                    <NA>
## 511              oakland  california                                    <NA>
## 512        san francisco  california                                    <NA>
## 513        san francisco  california                       doesn't have kids
## 514        san francisco  california                       doesn't have kids
## 515        san francisco  california       doesn't have kids, but wants them
## 516               novato  california                               has a kid
## 517        san francisco  california                                    <NA>
## 518             berkeley  california  doesn't have kids, but might want them
## 519        san francisco  california                       doesn't want kids
## 520        san francisco  california                       doesn't want kids
## 521        san francisco  california  doesn't have kids, but might want them
## 522        san francisco  california                       doesn't have kids
## 523           san rafael  california                                    <NA>
## 524        san francisco  california                                    <NA>
## 525        san francisco  california  doesn't have kids, but might want them
## 526        san francisco  california                                    <NA>
## 527        san francisco  california                                    <NA>
## 528           san rafael  california  doesn't have kids, but might want them
## 529        san francisco  california                                    <NA>
## 530        san francisco  california                       doesn't have kids
## 531        san francisco  california                                    <NA>
## 532        san francisco  california                                    <NA>
## 533        san francisco  california                                    <NA>
## 534        san francisco  california        has a kid, but doesn't want more
## 535        san francisco  california                                    <NA>
## 536        san francisco  california                                    <NA>
## 537          mill valley  california                                    <NA>
## 538        san francisco  california                                    <NA>
## 539        san francisco  california                                    <NA>
## 540        san francisco  california doesn't have kids, and doesn't want any
## 541        san francisco  california                       doesn't have kids
## 542        san francisco  california                                    <NA>
## 543        san francisco  california         has kids, but doesn't want more
## 544        san francisco  california                                    <NA>
## 545        san francisco  california                                    <NA>
## 546        san francisco  california                                    <NA>
## 547              hayward  california                                    <NA>
## 548              vallejo  california                                    <NA>
## 549        san francisco  california                                    <NA>
## 550        san francisco  california                       doesn't have kids
## 551        san francisco  california                       doesn't have kids
## 552        san francisco  california                       doesn't have kids
## 553          san leandro  california                                has kids
## 554             stanford  california                       doesn't have kids
## 555        san francisco  california                                    <NA>
## 556        san francisco  california                               has a kid
## 557             larkspur  california                       doesn't have kids
## 558        san francisco  california       doesn't have kids, but wants them
## 559              oakland  california  doesn't have kids, but might want them
## 560        san francisco  california  doesn't have kids, but might want them
## 561        san francisco  california  doesn't have kids, but might want them
## 562        san francisco  california                                    <NA>
## 563              oakland  california                                    <NA>
## 564               orinda  california                       doesn't want kids
## 565        san francisco  california                       doesn't want kids
## 566             larkspur  california                                    <NA>
## 567              hayward  california                               has a kid
## 568              oakland  california                                    <NA>
## 569        san francisco  california doesn't have kids, and doesn't want any
## 570          san leandro  california                                    <NA>
## 571            san mateo  california                       doesn't have kids
## 572        san francisco  california                       doesn't have kids
## 573           emeryville  california       doesn't have kids, but wants them
## 574        castro valley  california                                has kids
## 575         redwood city  california  doesn't have kids, but might want them
## 576               moraga  california                                has kids
## 577        san francisco  california                                    <NA>
## 578        san francisco  california                                    <NA>
## 579              oakland  california                                    <NA>
## 580         redwood city  california                       doesn't want kids
## 581              vallejo  california                                    <NA>
## 582             martinez  california                                    <NA>
## 583           menlo park  california                                    <NA>
## 584             berkeley  california                                has kids
## 585            daly city  california                               has a kid
## 586              benicia  california                                has kids
## 587           menlo park  california                                    <NA>
## 588        san francisco  california                                    <NA>
## 589        san francisco  california                                    <NA>
## 590             berkeley  california                                    <NA>
## 591        san francisco  california                                has kids
## 592           san rafael  california                                has kids
## 593        san francisco  california doesn't have kids, and doesn't want any
## 594               albany  california                               has a kid
## 595        san francisco  california       doesn't have kids, but wants them
## 596        san francisco  california                                has kids
## 597        san francisco  california                                    <NA>
## 598        san francisco  california                                    <NA>
## 599             martinez  california       doesn't have kids, but wants them
## 600        san francisco  california                                    <NA>
## 601        san francisco  california                                    <NA>
## 602        san francisco  california  doesn't have kids, but might want them
## 603             berkeley  california                                has kids
## 604             berkeley  california                                    <NA>
## 605        san francisco  california                                    <NA>
## 606        san francisco  california                                    <NA>
## 607            palo alto  california                                has kids
## 608        san francisco  california                               has a kid
## 609             berkeley  california                       doesn't have kids
## 610             berkeley  california                                    <NA>
## 611            sausalito  california                                    <NA>
## 612        san francisco  california       doesn't have kids, but wants them
## 613            san mateo  california                                    <NA>
## 614        san francisco  california                                    <NA>
## 615              hayward  california                                    <NA>
## 616        san francisco  california                                has kids
## 617        san francisco  california doesn't have kids, and doesn't want any
## 618         redwood city  california                                    <NA>
## 619              belmont  california                                    <NA>
## 620            san mateo  california                                    <NA>
## 621        san francisco  california                                    <NA>
## 622        san francisco  california                                    <NA>
## 623        san francisco  california                               has a kid
## 624           emeryville  california                                    <NA>
## 625        san francisco  california                                    <NA>
## 626            san mateo  california                                    <NA>
## 627        san francisco  california                                    <NA>
## 628             berkeley  california                       doesn't have kids
## 629              oakland  california                                    <NA>
## 630              hayward  california                                    <NA>
## 631              oakland  california                                    <NA>
## 632        castro valley  california                                    <NA>
## 633              oakland  california                                    <NA>
## 634              hayward  california                                    <NA>
## 635             berkeley  california  doesn't have kids, but might want them
## 636              oakland  california  doesn't have kids, but might want them
## 637              oakland  california                                    <NA>
## 638              oakland  california       doesn't have kids, but wants them
## 639          san lorenzo  california                                    <NA>
## 640              alameda  california       doesn't have kids, but wants them
## 641             berkeley  california       doesn't have kids, but wants them
## 642          san leandro  california                                    <NA>
## 643             berkeley  california                                    <NA>
## 644              oakland  california                                    <NA>
## 645              oakland  california                              wants kids
## 646              oakland  california                                    <NA>
## 647              hayward  california                               has a kid
## 648           emeryville  california                                    <NA>
## 649        san francisco  california                                    <NA>
## 650              oakland  california                                    <NA>
## 651          el sobrante  california                       doesn't have kids
## 652            san mateo  california                                    <NA>
## 653              oakland  california                                    <NA>
## 654        san francisco  california doesn't have kids, and doesn't want any
## 655        san francisco  california  doesn't have kids, but might want them
## 656        san francisco  california                                    <NA>
## 657        san francisco  california                                    <NA>
## 658              hayward  california                                    <NA>
## 659        mountain view  california                               has a kid
## 660        san francisco  california         has kids, but doesn't want more
## 661        san francisco  california                                    <NA>
## 662              oakland  california                                    <NA>
## 663        san francisco  california                                    <NA>
## 664              oakland  california                                    <NA>
## 665        san francisco  california                                    <NA>
## 666            san mateo  california  doesn't have kids, but might want them
## 667        san francisco  california                       doesn't have kids
## 668              vallejo  california                                    <NA>
## 669            sausalito  california                                    <NA>
## 670              oakland  california                                    <NA>
## 671        san francisco  california                                    <NA>
## 672        san francisco  california                                    <NA>
## 673        san francisco  california                                    <NA>
## 674            san bruno  california                                    <NA>
## 675        san francisco  california                                    <NA>
## 676        san francisco  california                                    <NA>
## 677            san mateo  california                                    <NA>
## 678        san francisco  california                                has kids
## 679        san francisco  california       doesn't have kids, but wants them
## 680             berkeley  california  doesn't have kids, but might want them
## 681              oakland  california                       doesn't have kids
## 682             berkeley  california                                    <NA>
## 683        san francisco  california                                    <NA>
## 684              vallejo  california                                    <NA>
## 685        san francisco  california                                    <NA>
## 686        san francisco  california doesn't have kids, and doesn't want any
## 687        san francisco  california                                    <NA>
## 688              oakland  california       doesn't have kids, but wants them
## 689          san lorenzo  california                                    <NA>
## 690        san francisco  california  doesn't have kids, but might want them
## 691        san francisco  california                                    <NA>
## 692        san francisco  california                                    <NA>
## 693             millbrae  california                       doesn't have kids
## 694             pacifica  california                                    <NA>
## 695            daly city  california                               has a kid
## 696        san francisco  california                                    <NA>
## 697             berkeley  california                       doesn't want kids
## 698             stanford  california                                    <NA>
## 699           burlingame  california                                    <NA>
## 700              hayward  california         has kids, but doesn't want more
## 701              oakland  california                                    <NA>
## 702        san francisco  california                                    <NA>
## 703        san francisco  california                       doesn't want kids
## 704              alameda  california doesn't have kids, and doesn't want any
## 705        san francisco  california doesn't have kids, and doesn't want any
## 706        san francisco  california       doesn't have kids, but wants them
## 707              oakland  california                                    <NA>
## 708        san francisco  california          has a kid, and might want more
## 709        san francisco  california  doesn't have kids, but might want them
## 710              vallejo  california                                    <NA>
## 711              vallejo  california                                has kids
## 712              vallejo  california       doesn't have kids, but wants them
## 713              vallejo  california                                    <NA>
## 714              oakland  california                                    <NA>
## 715              hayward  california                                    <NA>
## 716        san francisco  california                                    <NA>
## 717        san francisco  california                                    <NA>
## 718         walnut creek  california                       doesn't have kids
## 719        san francisco  california                                    <NA>
## 720              oakland  california                       doesn't have kids
## 721        san francisco  california                                    <NA>
## 722        san francisco  california                       doesn't have kids
## 723        san francisco  california                                    <NA>
## 724        san francisco  california                                    <NA>
## 725         walnut creek  california                                    <NA>
## 726              alameda  california                                    <NA>
## 727        san francisco  california                                    <NA>
## 728            san mateo  california                                    <NA>
## 729        san francisco  california                                    <NA>
## 730             berkeley  california                       doesn't want kids
## 731        san francisco  california                                    <NA>
## 732             berkeley  california                                    <NA>
## 733              oakland  california                                    <NA>
## 734        san francisco  california  doesn't have kids, but might want them
## 735        san francisco  california                                    <NA>
## 736             berkeley  california                       doesn't have kids
## 737              oakland  california           has kids, and might want more
## 738        san francisco  california doesn't have kids, and doesn't want any
## 739        san francisco  california                       doesn't want kids
## 740        san francisco  california       doesn't have kids, but wants them
## 741        san francisco  california         has kids, but doesn't want more
## 742              hayward  california                                    <NA>
## 743              oakland  california                                    <NA>
## 744        san francisco  california         has kids, but doesn't want more
## 745            san pablo  california       doesn't have kids, but wants them
## 746        san francisco  california                                    <NA>
## 747           menlo park  california                       doesn't have kids
## 748        san francisco  california                       doesn't have kids
## 749        san francisco  california  doesn't have kids, but might want them
## 750        san francisco  california                                    <NA>
## 751        san francisco  california  doesn't have kids, but might want them
## 752        san francisco  california                                    <NA>
## 753        san francisco  california                                    <NA>
## 754          san leandro  california                                has kids
## 755              alameda  california                       doesn't have kids
## 756        san francisco  california                       doesn't have kids
## 757           san rafael  california                                    <NA>
## 758          el sobrante  california                               has a kid
## 759              oakland  california                       doesn't have kids
## 760              oakland  california doesn't have kids, and doesn't want any
## 761              oakland  california       doesn't have kids, but wants them
## 762         walnut creek  california  doesn't have kids, but might want them
## 763             berkeley  california                                    <NA>
## 764        san francisco  california                                    <NA>
## 765        san francisco  california                       doesn't want kids
## 766              oakland  california  doesn't have kids, but might want them
## 767              oakland  california                       doesn't have kids
## 768              oakland  california                                    <NA>
## 769        san francisco  california                                    <NA>
## 770        san francisco  california                                    <NA>
## 771        san francisco  california                                    <NA>
## 772        san francisco  california                                    <NA>
## 773        castro valley  california                                    <NA>
## 774             berkeley  california                       doesn't have kids
## 775          san leandro  california                                    <NA>
## 776        san francisco  california                                    <NA>
## 777        san francisco  california                                    <NA>
## 778        san francisco  california                                    <NA>
## 779              oakland  california  doesn't have kids, but might want them
## 780        san francisco  california                                    <NA>
## 781        san francisco  california                                    <NA>
## 782              oakland  california                                    <NA>
## 783              oakland  california                                    <NA>
## 784             richmond  california                       doesn't have kids
## 785         redwood city  california                                    <NA>
## 786           emeryville  california                                    <NA>
## 787           el cerrito  california  doesn't have kids, but might want them
## 788        mountain view  california       doesn't have kids, but wants them
## 789        san francisco  california                                    <NA>
## 790        san francisco  california                                    <NA>
## 791        san francisco  california                       doesn't have kids
## 792               novato  california                       doesn't have kids
## 793              oakland  california                       doesn't have kids
## 794               novato  california                                has kids
## 795        san francisco  california                       doesn't have kids
## 796             petaluma  california                                    <NA>
## 797        san francisco  california       doesn't have kids, but wants them
## 798               pinole  california                                    <NA>
## 799        san francisco  california  doesn't have kids, but might want them
## 800        pleasant hill  california       doesn't have kids, but wants them
## 801             martinez  california  doesn't have kids, but might want them
## 802              oakland  california                       doesn't want kids
## 803              oakland  california                       doesn't have kids
## 804        san francisco  california                                    <NA>
## 805        san francisco  california                                    <NA>
## 806           san carlos  california                                    <NA>
## 807        san francisco  california                                    <NA>
## 808        san francisco  california                       doesn't want kids
## 809        san francisco  california                                    <NA>
## 810             berkeley  california                       doesn't have kids
## 811             berkeley  california                                    <NA>
## 812        san francisco  california                                    <NA>
## 813        san francisco  california                                    <NA>
## 814              hayward  california                                    <NA>
## 815             berkeley  california                                    <NA>
## 816        san francisco  california                                    <NA>
## 817        san francisco  california                                    <NA>
## 818             martinez  california                                    <NA>
## 819           san rafael  california                               has a kid
## 820        san francisco  california                                    <NA>
## 821        san francisco  california                                    <NA>
## 822        san francisco  california doesn't have kids, and doesn't want any
## 823            palo alto  california  doesn't have kids, but might want them
## 824         san geronimo  california                                    <NA>
## 825         redwood city  california                                    <NA>
## 826        san francisco  california  doesn't have kids, but might want them
## 827        san francisco  california  doesn't have kids, but might want them
## 828        san francisco  california                                    <NA>
## 829        san francisco  california                       doesn't have kids
## 830             stanford  california                                    <NA>
## 831        san francisco  california                                    <NA>
## 832        san francisco  california                                    <NA>
## 833              oakland  california                                    <NA>
## 834        san francisco  california                                    <NA>
## 835              oakland  california                                    <NA>
## 836        san francisco  california                                    <NA>
## 837        san francisco  california                       doesn't have kids
## 838        san francisco  california                                    <NA>
## 839           emeryville  california                       doesn't have kids
## 840        san francisco  california       doesn't have kids, but wants them
## 841            san mateo  california                       doesn't have kids
## 842              oakland  california       doesn't have kids, but wants them
## 843        san francisco  california                                    <NA>
## 844        san francisco  california                                    <NA>
## 845         redwood city  california                       doesn't have kids
## 846            san mateo  california                                    <NA>
## 847             berkeley  california                                    <NA>
## 848        san francisco  california  doesn't have kids, but might want them
## 849        san francisco  california                       doesn't have kids
## 850            san mateo  california doesn't have kids, and doesn't want any
## 851              oakland  california                                    <NA>
## 852        san francisco  california                                    <NA>
## 853        san francisco  california                                    <NA>
## 854             berkeley  california                                    <NA>
## 855            san mateo  california                                    <NA>
## 856        san francisco  california                                    <NA>
## 857            san bruno  california  doesn't have kids, but might want them
## 858        san francisco  california                                    <NA>
## 859        san francisco  california                                    <NA>
## 860             berkeley  california                                    <NA>
## 861             berkeley  california                                    <NA>
## 862        san francisco  california                                    <NA>
## 863        san francisco  california                                    <NA>
## 864            palo alto  california                                    <NA>
## 865              oakland  california                                    <NA>
## 866        san francisco  california                                    <NA>
## 867             berkeley  california       doesn't have kids, but wants them
## 868              alameda  california                       doesn't have kids
## 869             berkeley  california                                    <NA>
## 870        san francisco  california doesn't have kids, and doesn't want any
## 871        san francisco  california                       doesn't have kids
## 872        san francisco  california                                    <NA>
## 873             berkeley  california                                    <NA>
## 874        san francisco  california                                    <NA>
## 875        san francisco  california                                    <NA>
## 876              oakland  california                                    <NA>
## 877        mountain view  california                       doesn't have kids
## 878             berkeley  california                                    <NA>
## 879              belmont  california                                    <NA>
## 880        san francisco  california                                    <NA>
## 881        san francisco  california                               has a kid
## 882            san mateo  california                                    <NA>
## 883        san francisco  california                                    <NA>
## 884        san francisco  california                                    <NA>
## 885              oakland  california       doesn't have kids, but wants them
## 886              oakland  california                       doesn't have kids
## 887           menlo park  california                                    <NA>
## 888              oakland  california                                    <NA>
## 889            san mateo  california                               has a kid
## 890             berkeley  california                                    <NA>
## 891        san francisco  california                                    <NA>
## 892        san francisco  california                                    <NA>
## 893           menlo park  california                       doesn't have kids
## 894        san francisco  california                                    <NA>
## 895              oakland  california                                    <NA>
## 896        san francisco  california                                    <NA>
## 897        san francisco  california                                    <NA>
## 898        san francisco  california                                    <NA>
## 899        san francisco  california                                    <NA>
## 900        san francisco  california                                    <NA>
## 901              oakland  california       doesn't have kids, but wants them
## 902           emeryville  california                                    <NA>
## 903              oakland  california                                    <NA>
## 904        san francisco  california                                    <NA>
## 905             stanford  california                       doesn't have kids
## 906        san francisco  california       doesn't have kids, but wants them
## 907              oakland  california                                    <NA>
## 908        san francisco  california                                    <NA>
## 909             martinez  california                       doesn't have kids
## 910        san francisco  california                       doesn't have kids
## 911             larkspur  california          has a kid, and might want more
## 912        san francisco  california                               has a kid
## 913        san francisco  california                       doesn't have kids
## 914             berkeley  california                                    <NA>
## 915           san rafael  california  doesn't have kids, but might want them
## 916        san francisco  california                       doesn't want kids
## 917             berkeley  california                                    <NA>
## 918        san francisco  california                       doesn't have kids
## 919         walnut creek  california                                    <NA>
## 920        san francisco  california                       doesn't want kids
## 921        san francisco  california                                    <NA>
## 922        san francisco  california                                    <NA>
## 923        san francisco  california                       doesn't have kids
## 924        san francisco  california                       doesn't want kids
## 925        san francisco  california                                    <NA>
## 926            san mateo  california                                    <NA>
## 927             berkeley  california                                    <NA>
## 928            san mateo  california                                    <NA>
## 929        san francisco  california                                    <NA>
## 930              alameda  california                       doesn't have kids
## 931        san francisco  california                       doesn't have kids
## 932        san francisco  california                                    <NA>
## 933        san francisco  california                       doesn't want kids
## 934              oakland  california                                    <NA>
## 935        san francisco  california  doesn't have kids, but might want them
## 936            palo alto  california       doesn't have kids, but wants them
## 937        san francisco  california                       doesn't have kids
## 938              oakland  california doesn't have kids, and doesn't want any
## 939             berkeley  california                                    <NA>
## 940        san francisco  california                                    <NA>
## 941        san francisco  california                                    <NA>
## 942              oakland  california                                    <NA>
## 943        san francisco  california                                    <NA>
## 944               pinole  california                                has kids
## 945        san francisco  california                                    <NA>
## 946        san francisco  california  doesn't have kids, but might want them
## 947        san francisco  california                                    <NA>
## 948        san francisco  california                                    <NA>
## 949             berkeley  california                       doesn't want kids
## 950          san leandro  california                       doesn't have kids
## 951        san francisco  california  doesn't have kids, but might want them
## 952        san francisco  california                       doesn't want kids
## 953           burlingame  california doesn't have kids, and doesn't want any
## 954              oakland  california                                    <NA>
## 955        san francisco  california                       doesn't have kids
## 956             berkeley  california                                    <NA>
## 957        san francisco  california                       doesn't want kids
## 958        san francisco  california                                    <NA>
## 959        san francisco  california                                    <NA>
## 960             berkeley  california                                    <NA>
## 961               albany  california                                    <NA>
## 962            palo alto  california                                    <NA>
## 963        san francisco  california                                    <NA>
## 964        san francisco  california                                    <NA>
## 965             berkeley  california                                    <NA>
## 966        san francisco  california                                    <NA>
## 967        san francisco  california                                    <NA>
## 968               orinda  california                                    <NA>
## 969              oakland  california                                    <NA>
## 970        san francisco  california                                    <NA>
## 971        san francisco  california                       doesn't have kids
## 972        san francisco  california                                    <NA>
## 973           san rafael  california                                    <NA>
## 974  south san francisco  california                                    <NA>
## 975        san francisco  california  doesn't have kids, but might want them
## 976        san francisco  california                       doesn't have kids
## 977             berkeley  california                                    <NA>
## 978             berkeley  california                                    <NA>
## 979        san francisco  california                       doesn't want kids
## 980        san francisco  california                                    <NA>
## 981        san francisco  california                                    <NA>
## 982              oakland  california  doesn't have kids, but might want them
## 983        san francisco  california                                    <NA>
## 984             berkeley  california                       doesn't have kids
## 985         walnut creek  california  doesn't have kids, but might want them
## 986        san francisco  california                       doesn't have kids
## 987        san francisco  california                                    <NA>
## 988        san francisco  california                                    <NA>
## 989        san francisco  california                                    <NA>
## 990             berkeley  california                                    <NA>
## 991              oakland  california                                    <NA>
## 992        san francisco  california                                    <NA>
## 993              hayward  california                               has a kid
## 994        san francisco  california                                    <NA>
## 995              oakland  california       doesn't have kids, but wants them
## 996        san francisco  california                                    <NA>
## 997        san francisco  california                                    <NA>
## 998        san francisco  california                                    <NA>
## 999        san francisco  california                                    <NA>
## 1000       san francisco  california                                    <NA>
## 1001       san francisco  california                                    <NA>
## 1002            berkeley  california                                    <NA>
## 1003       san francisco  california                                    <NA>
## 1004          burlingame  california                                has kids
## 1005             oakland  california                                    <NA>
## 1006       san francisco  california                                    <NA>
## 1007       san francisco  california                       doesn't want kids
## 1008       san francisco  california                                    <NA>
## 1009             oakland  california       doesn't have kids, but wants them
## 1010       san francisco  california  doesn't have kids, but might want them
## 1011       san francisco  california                                    <NA>
## 1012             oakland  california                       doesn't have kids
## 1013             oakland  california                       doesn't have kids
## 1014       san francisco  california                       doesn't have kids
## 1015       san francisco  california                                    <NA>
## 1016       san francisco  california                                    <NA>
## 1017       san francisco  california                                    <NA>
## 1018            berkeley  california       doesn't have kids, but wants them
## 1019           palo alto  california                                    <NA>
## 1020       san francisco  california                                    <NA>
## 1021             oakland  california  doesn't have kids, but might want them
## 1022       san francisco  california                                    <NA>
## 1023       san francisco  california                                    <NA>
## 1024            berkeley  california                       doesn't want kids
## 1025             oakland  california       doesn't have kids, but wants them
## 1026            berkeley  california                       doesn't want kids
## 1027       san francisco  california                       doesn't have kids
## 1028        walnut creek  california                                    <NA>
## 1029           san mateo  california       doesn't have kids, but wants them
## 1030        walnut creek  california                                    <NA>
## 1031       san francisco  california                                    <NA>
## 1032          menlo park  california                                    <NA>
## 1033            berkeley  california                                    <NA>
## 1034             oakland  california                                    <NA>
## 1035       san francisco  california                                    <NA>
## 1036       san francisco  california                                    <NA>
## 1037       san francisco  california                                    <NA>
## 1038           daly city  california       doesn't have kids, but wants them
## 1039       san francisco  california                                    <NA>
## 1040       san francisco  california                                    <NA>
## 1041           palo alto  california                                has kids
## 1042           lafayette  california                                    <NA>
## 1043       san francisco  california                       doesn't have kids
## 1044           palo alto  california                                    <NA>
## 1045             oakland  california                                    <NA>
## 1046       san francisco  california  doesn't have kids, but might want them
## 1047            berkeley  california                       doesn't want kids
## 1048       san francisco  california                                    <NA>
## 1049       san francisco  california                       doesn't have kids
## 1050       san francisco  california                                    <NA>
## 1051       san francisco  california                                    <NA>
## 1052       san francisco  california                                    <NA>
## 1053       san francisco  california       doesn't have kids, but wants them
## 1054            berkeley  california                                    <NA>
## 1055          san rafael  california                       doesn't have kids
## 1056         san anselmo  california                                    <NA>
## 1057       san francisco  california  doesn't have kids, but might want them
## 1058            berkeley  california       doesn't have kids, but wants them
## 1059       san francisco  california       doesn't have kids, but wants them
## 1060       san francisco  california                                    <NA>
## 1061       san francisco  california                                    <NA>
## 1062       san francisco  california                       doesn't want kids
## 1063           san mateo  california                                    <NA>
## 1064       san francisco  california                                    <NA>
## 1065          emeryville  california                               has a kid
## 1066       san francisco  california                                    <NA>
## 1067       san francisco  california                                    <NA>
## 1068          emeryville  california                                    <NA>
## 1069          menlo park  california                                    <NA>
## 1070       san francisco  california                                    <NA>
## 1071             oakland  california                                    <NA>
## 1072       san francisco  california                                    <NA>
## 1073       san francisco  california                       doesn't have kids
## 1074       san francisco  california                                    <NA>
## 1075        redwood city  california doesn't have kids, and doesn't want any
## 1076             oakland  california                                    <NA>
## 1077            berkeley  california                                    <NA>
## 1078             oakland  california                                    <NA>
## 1079       san francisco  california                       doesn't have kids
## 1080       san francisco  california  doesn't have kids, but might want them
## 1081       san francisco  california                                    <NA>
## 1082       san francisco  california                       doesn't have kids
## 1083       san francisco  california       doesn't have kids, but wants them
## 1084       san francisco  california                                    <NA>
## 1085             oakland  california  doesn't have kids, but might want them
## 1086       san francisco  california                       doesn't want kids
## 1087       san francisco  california                       doesn't have kids
## 1088           palo alto  california                                    <NA>
## 1089             alameda  california                                    <NA>
## 1090            berkeley  california                               has a kid
## 1091        walnut creek  california                                    <NA>
## 1092       san francisco  california                                    <NA>
## 1093       san francisco  california                                    <NA>
## 1094           san bruno  california                                    <NA>
## 1095       pleasant hill  california       doesn't have kids, but wants them
## 1096       mountain view  california                       doesn't have kids
## 1097       san francisco  california  doesn't have kids, but might want them
## 1098        walnut creek  california                                    <NA>
## 1099       san francisco  california                                    <NA>
## 1100             vallejo  california                                    <NA>
## 1101       san francisco  california                                    <NA>
## 1102          menlo park  california                                    <NA>
## 1103          emeryville  california                                    <NA>
## 1104       san francisco  california                                    <NA>
## 1105       san francisco  california       doesn't have kids, but wants them
## 1106           daly city  california                                    <NA>
## 1107       san francisco  california                                    <NA>
## 1108       san francisco  california                       doesn't have kids
## 1109           daly city  california                                    <NA>
## 1110             benicia  california                                    <NA>
## 1111       mountain view  california  doesn't have kids, but might want them
## 1112       san francisco  california  doesn't have kids, but might want them
## 1113             oakland  california                                    <NA>
## 1114           san mateo  california                                    <NA>
## 1115       castro valley  california                                has kids
## 1116             oakland  california                                    <NA>
## 1117       san francisco  california                                    <NA>
## 1118             oakland  california                       doesn't have kids
## 1119       san francisco  california                       doesn't have kids
## 1120       san francisco  california                       doesn't want kids
## 1121             oakland  california  doesn't have kids, but might want them
## 1122       san francisco  california                                    <NA>
## 1123       san francisco  california                                    <NA>
## 1124             oakland  california                                    <NA>
## 1125            berkeley  california                                    <NA>
## 1126            berkeley  california                                    <NA>
## 1127       san francisco  california                                    <NA>
## 1128       san francisco  california                       doesn't have kids
## 1129       san francisco  california                       doesn't want kids
## 1130       san francisco  california                                    <NA>
## 1131       san francisco  california                               has a kid
## 1132       san francisco  california                       doesn't have kids
## 1133          san rafael  california                                    <NA>
## 1134       san francisco  california                                    <NA>
## 1135       san francisco  california                                    <NA>
## 1136             oakland  california                                    <NA>
## 1137           sausalito  california                                    <NA>
## 1138       san francisco  california                                    <NA>
## 1139       san francisco  california  doesn't have kids, but might want them
## 1140       castro valley  california                               has a kid
## 1141            berkeley  california                                    <NA>
## 1142            crockett  california                               has a kid
## 1143       san francisco  california       doesn't have kids, but wants them
## 1144       san francisco  california                                    <NA>
## 1145       san francisco  california                                    <NA>
## 1146            crockett  california                       doesn't have kids
## 1147             oakland  california  doesn't have kids, but might want them
## 1148              novato  california                                    <NA>
## 1149            pacifica  california                       doesn't have kids
## 1150           daly city  california                                    <NA>
## 1151       san francisco  california                                    <NA>
## 1152       san francisco  california                       doesn't want kids
## 1153       san francisco  california doesn't have kids, and doesn't want any
## 1154             alameda  california  doesn't have kids, but might want them
## 1155       san francisco  california                       doesn't want kids
## 1156       san francisco  california                                    <NA>
## 1157       mountain view  california                                    <NA>
## 1158             fremont  california                                    <NA>
## 1159       san francisco  california                                    <NA>
## 1160       san francisco  california                                    <NA>
## 1161       san francisco  california                                    <NA>
## 1162       san francisco  california                                    <NA>
## 1163             oakland  california                                has kids
## 1164             oakland  california                                has kids
## 1165       san francisco  california                                    <NA>
## 1166             oakland  california                                    <NA>
## 1167       san francisco  california doesn't have kids, and doesn't want any
## 1168       san francisco  california                                    <NA>
## 1169       san francisco  california                                    <NA>
## 1170       san francisco  california                                    <NA>
## 1171           san mateo  california                                    <NA>
## 1172       san francisco  california                                    <NA>
## 1173       san francisco  california       doesn't have kids, but wants them
## 1174       san francisco  california                                    <NA>
## 1175          emeryville  california                                    <NA>
## 1176           palo alto  california       doesn't have kids, but wants them
## 1177       san francisco  california  doesn't have kids, but might want them
## 1178       san francisco  california                                    <NA>
## 1179          menlo park  california                       doesn't have kids
## 1180       san francisco  california                       doesn't want kids
## 1181       san francisco  california                                    <NA>
## 1182       san francisco  california       doesn't have kids, but wants them
## 1183       san francisco  california                       doesn't have kids
## 1184       san francisco  california                       doesn't have kids
## 1185           san mateo  california       doesn't have kids, but wants them
## 1186       san francisco  california                                    <NA>
## 1187          menlo park  california                                    <NA>
## 1188         san leandro  california                       doesn't have kids
## 1189       san francisco  california                                    <NA>
## 1190             oakland  california                       doesn't have kids
## 1191       san francisco  california                                    <NA>
## 1192             oakland  california                                    <NA>
## 1193       san francisco  california                                    <NA>
## 1194            berkeley  california           has kids, and might want more
## 1195            berkeley  california                                    <NA>
## 1196       san francisco  california                       doesn't have kids
## 1197       san francisco  california                                    <NA>
## 1198       san francisco  california                                    <NA>
## 1199            berkeley  california                                    <NA>
## 1200             oakland  california                                    <NA>
## 1201       san francisco  california                       doesn't have kids
## 1202       san francisco  california                                    <NA>
## 1203             oakland  california                                    <NA>
## 1204       san francisco  california                       doesn't have kids
## 1205       san francisco  california                                    <NA>
## 1206       san francisco  california                                    <NA>
## 1207       san francisco  california doesn't have kids, and doesn't want any
## 1208          menlo park  california                                    <NA>
## 1209       san francisco  california                                    <NA>
## 1210       san francisco  california                                    <NA>
## 1211          san rafael  california  doesn't have kids, but might want them
## 1212       san francisco  california                       doesn't want kids
## 1213       san francisco  california                                    <NA>
## 1214             alameda  california                                    <NA>
## 1215           san bruno  california                                    <NA>
## 1216             oakland  california                                    <NA>
## 1217       san francisco  california                                    <NA>
## 1218       san francisco  california                       doesn't have kids
## 1219       san francisco  california                                    <NA>
## 1220            richmond  california  doesn't have kids, but might want them
## 1221       san francisco  california                                    <NA>
## 1222       san francisco  california                                    <NA>
## 1223            berkeley  california                                    <NA>
## 1224       san francisco  california                                    <NA>
## 1225       san francisco  california                                    <NA>
## 1226             oakland  california                                    <NA>
## 1227             oakland  california                                    <NA>
## 1228       san francisco  california                       doesn't have kids
## 1229       san francisco  california                                    <NA>
## 1230       san francisco  california                                    <NA>
## 1231          san rafael  california                                    <NA>
## 1232          san rafael  california                                    <NA>
## 1233       san francisco  california                       doesn't have kids
## 1234         el sobrante  california                                    <NA>
## 1235           palo alto  california  doesn't have kids, but might want them
## 1236       san francisco  california                       doesn't have kids
## 1237       pleasant hill  california                                    <NA>
## 1238          burlingame  california       doesn't have kids, but wants them
## 1239       san francisco  california                                    <NA>
## 1240             oakland  california       doesn't have kids, but wants them
## 1241            berkeley  california                                    <NA>
## 1242       san francisco  california                                    <NA>
## 1243            berkeley  california                                    <NA>
## 1244            berkeley  california                       doesn't have kids
## 1245       san francisco  california                                    <NA>
## 1246            berkeley  california                                    <NA>
## 1247       san francisco  california                       doesn't have kids
## 1248       san francisco  california                                    <NA>
## 1249       san francisco  california                       doesn't have kids
## 1250             alameda  california                       doesn't have kids
## 1251           san mateo  california                                    <NA>
## 1252          san rafael  california                                    <NA>
## 1253             oakland  california                                    <NA>
## 1254             oakland  california       doesn't have kids, but wants them
## 1255             oakland  california       doesn't have kids, but wants them
## 1256       san francisco  california                                    <NA>
## 1257       san francisco  california       doesn't have kids, but wants them
## 1258        redwood city  california                                    <NA>
## 1259       san francisco  california       doesn't have kids, but wants them
## 1260             oakland  california                                    <NA>
## 1261              novato  california                                    <NA>
## 1262           daly city  california                                    <NA>
## 1263       san francisco  california doesn't have kids, and doesn't want any
## 1264       san francisco  california                                    <NA>
## 1265       san francisco  california                       doesn't have kids
## 1266       san francisco  california                                    <NA>
## 1267            berkeley  california                                    <NA>
## 1268          san rafael  california                                    <NA>
## 1269       san francisco  california                                    <NA>
## 1270             oakland  california                       doesn't have kids
## 1271         mill valley  california                                has kids
## 1272            martinez  california  doesn't have kids, but might want them
## 1273            berkeley  california                       doesn't have kids
## 1274             oakland  california                       doesn't want kids
## 1275       san francisco  california                       doesn't want kids
## 1276       san francisco  california                                    <NA>
## 1277        redwood city  california                                    <NA>
## 1278             oakland  california       doesn't have kids, but wants them
## 1279           palo alto  california                                    <NA>
## 1280            berkeley  california                                    <NA>
## 1281       san francisco  california                                    <NA>
## 1282       san francisco  california                                    <NA>
## 1283       san francisco  california       doesn't have kids, but wants them
## 1284            berkeley  california                       doesn't have kids
## 1285       san francisco  california                               has a kid
## 1286            berkeley  california                               has a kid
## 1287          menlo park  california                                    <NA>
## 1288          burlingame  california                                    <NA>
## 1289         el sobrante  california                                has kids
## 1290            berkeley  california                                has kids
## 1291       san francisco  california                       doesn't have kids
## 1292         san leandro  california                                    <NA>
## 1293       san francisco  california                                    <NA>
## 1294           san pablo  california                                    <NA>
## 1295       san francisco  california                                    <NA>
## 1296             oakland  california                       doesn't have kids
## 1297             oakland  california                                    <NA>
## 1298       san francisco  california                                    <NA>
## 1299           san mateo  california                       doesn't have kids
## 1300 south san francisco  california                       doesn't have kids
## 1301       san francisco  california  doesn't have kids, but might want them
## 1302       san francisco  california                                    <NA>
## 1303       san francisco  california       doesn't have kids, but wants them
## 1304       san francisco  california                                    <NA>
## 1305            berkeley  california                       doesn't have kids
## 1306            hercules  california                                    <NA>
## 1307       san francisco  california                                    <NA>
## 1308       san francisco  california  doesn't have kids, but might want them
## 1309             oakland  california  doesn't have kids, but might want them
## 1310       san francisco  california                                    <NA>
## 1311          menlo park  california  doesn't have kids, but might want them
## 1312            berkeley  california                       doesn't have kids
## 1313             oakland  california                                    <NA>
## 1314       san francisco  california                               has a kid
## 1315            berkeley  california                       doesn't have kids
## 1316           palo alto  california  doesn't have kids, but might want them
## 1317       san francisco  california                                    <NA>
## 1318       san francisco  california                       doesn't want kids
## 1319       san francisco  california                                    <NA>
## 1320       san francisco  california                                    <NA>
## 1321             alameda  california  doesn't have kids, but might want them
## 1322             vallejo  california                                has kids
## 1323             vallejo  california                                    <NA>
## 1324       san francisco  california                                    <NA>
## 1325       san francisco  california                       doesn't have kids
## 1326       san francisco  california                       doesn't have kids
## 1327       san francisco  california                       doesn't have kids
## 1328 south san francisco  california                                    <NA>
## 1329           palo alto  california                                    <NA>
## 1330          emeryville  california                                    <NA>
## 1331       san francisco  california                                    <NA>
## 1332       san francisco  california                                    <NA>
## 1333       san francisco  california                                    <NA>
## 1334             oakland  california                                    <NA>
## 1335       san francisco  california                                    <NA>
## 1336       san francisco  california                                    <NA>
## 1337             boulder    colorado                                    <NA>
## 1338          san rafael  california       doesn't have kids, but wants them
## 1339       san francisco  california                                    <NA>
## 1340       san francisco  california  doesn't have kids, but might want them
## 1341       san francisco  california                                    <NA>
## 1342       san francisco  california  doesn't have kids, but might want them
## 1343       san francisco  california                                    <NA>
## 1344            berkeley  california                       doesn't want kids
## 1345       san francisco  california                                    <NA>
## 1346            berkeley  california                                    <NA>
## 1347       san francisco  california                                    <NA>
## 1348             oakland  california                                    <NA>
## 1349            berkeley  california                                    <NA>
## 1350             oakland  california                       doesn't have kids
## 1351        walnut creek  california                                    <NA>
## 1352       san francisco  california doesn't have kids, and doesn't want any
## 1353       san francisco  california doesn't have kids, and doesn't want any
## 1354       san francisco  california                       doesn't have kids
## 1355       san francisco  california                                    <NA>
## 1356            brisbane  california                                    <NA>
## 1357       san francisco  california                       doesn't have kids
## 1358       san francisco  california                                    <NA>
## 1359              novato  california                       doesn't want kids
## 1360       san francisco  california                                    <NA>
## 1361             vallejo  california                                    <NA>
## 1362       san francisco  california                                    <NA>
## 1363             oakland  california       doesn't have kids, but wants them
## 1364             oakland  california                       doesn't want kids
## 1365            stanford  california doesn't have kids, and doesn't want any
## 1366       san francisco  california  doesn't have kids, but might want them
## 1367       san francisco  california                                    <NA>
## 1368       san francisco  california                               has a kid
## 1369            berkeley  california                                    <NA>
## 1370       san francisco  california                       doesn't have kids
## 1371          emeryville  california                                    <NA>
## 1372       san francisco  california                                    <NA>
## 1373             freedom  california                                    <NA>
## 1374        redwood city  california                                    <NA>
## 1375           palo alto  california                                    <NA>
## 1376        walnut creek  california                       doesn't have kids
## 1377       san francisco  california                                    <NA>
## 1378       san francisco  california                                    <NA>
## 1379       san francisco  california                                    <NA>
## 1380       san francisco  california doesn't have kids, and doesn't want any
## 1381       san francisco  california                       doesn't have kids
## 1382       san francisco  california                                    <NA>
## 1383       san francisco  california                       doesn't have kids
## 1384       san francisco  california                                    <NA>
## 1385             oakland  california                                    <NA>
## 1386       san francisco  california                                    <NA>
## 1387       san francisco  california                       doesn't want kids
## 1388       san francisco  california       doesn't have kids, but wants them
## 1389            berkeley  california                                    <NA>
## 1390       san francisco  california                                    <NA>
## 1391          menlo park  california                       doesn't want kids
## 1392             alameda  california                                    <NA>
## 1393              albany  california  doesn't have kids, but might want them
## 1394       san francisco  california                       doesn't have kids
## 1395            berkeley  california                                    <NA>
## 1396       san francisco  california                                    <NA>
## 1397       san francisco  california                                    <NA>
## 1398       san francisco  california                       doesn't have kids
## 1399           palo alto  california                                    <NA>
## 1400             alameda  california                                    <NA>
## 1401       san francisco  california       doesn't have kids, but wants them
## 1402       san francisco  california                                    <NA>
## 1403       san francisco  california                       doesn't have kids
## 1404             alameda  california                                has kids
## 1405       san francisco  california                                    <NA>
## 1406           palo alto  california  doesn't have kids, but might want them
## 1407             alameda  california                               has a kid
## 1408       san francisco  california                                    <NA>
## 1409       san francisco  california                                    <NA>
## 1410        walnut creek  california                                    <NA>
## 1411       san francisco  california                                    <NA>
## 1412             oakland  california       doesn't have kids, but wants them
## 1413            berkeley  california                       doesn't have kids
## 1414       san francisco  california       doesn't have kids, but wants them
## 1415             hayward  california                                    <NA>
## 1416           san mateo  california                                    <NA>
## 1417            millbrae  california                                    <NA>
## 1418           san mateo  california                                has kids
## 1419       san francisco  california                       doesn't have kids
## 1420       san francisco  california                                    <NA>
## 1421       san francisco  california                       doesn't have kids
## 1422            berkeley  california                       doesn't have kids
## 1423           palo alto  california                                    <NA>
## 1424       san francisco  california                                    <NA>
## 1425       san francisco  california       doesn't have kids, but wants them
## 1426            martinez  california doesn't have kids, and doesn't want any
## 1427       pleasant hill  california                               has a kid
## 1428          san rafael  california                                    <NA>
## 1429       san francisco  california                                    <NA>
## 1430       san francisco  california                                    <NA>
## 1431       san francisco  california                                    <NA>
## 1432           san mateo  california                                    <NA>
## 1433            pacifica  california       doesn't have kids, but wants them
## 1434       san francisco  california                                    <NA>
## 1435             oakland  california doesn't have kids, and doesn't want any
## 1436            millbrae  california                                    <NA>
## 1437          menlo park  california                                    <NA>
## 1438       san francisco  california                       doesn't have kids
## 1439       san francisco  california                                    <NA>
## 1440             oakland  california                                    <NA>
## 1441            berkeley  california                                    <NA>
## 1442             oakland  california                                    <NA>
## 1443       san francisco  california                                    <NA>
## 1444       san francisco  california                                    <NA>
## 1445       san francisco  california                                    <NA>
## 1446             oakland  california                                    <NA>
## 1447       san francisco  california                                    <NA>
## 1448       san francisco  california                                    <NA>
## 1449       san francisco  california                                    <NA>
## 1450            berkeley  california  doesn't have kids, but might want them
## 1451       san francisco  california                       doesn't have kids
## 1452       san francisco  california                                    <NA>
## 1453       san francisco  california                       doesn't have kids
## 1454       san francisco  california                                    <NA>
## 1455       san francisco  california                                    <NA>
## 1456             oakland  california                       doesn't have kids
## 1457            berkeley  california                                    <NA>
## 1458             vallejo  california       doesn't have kids, but wants them
## 1459       san francisco  california                       doesn't have kids
## 1460             oakland  california                         might want kids
## 1461             fremont  california                       doesn't have kids
## 1462          menlo park  california                                    <NA>
## 1463              albany  california                                    <NA>
## 1464            larkspur  california                               has a kid
## 1465       san francisco  california                       doesn't have kids
## 1466       san francisco  california                                    <NA>
## 1467       san francisco  california                                    <NA>
## 1468             oakland  california                                    <NA>
## 1469       san francisco  california                                    <NA>
## 1470       san francisco  california                                    <NA>
## 1471       san francisco  california                                    <NA>
## 1472       san francisco  california                       doesn't want kids
## 1473       san francisco  california       doesn't have kids, but wants them
## 1474       san francisco  california                                    <NA>
## 1475       san francisco  california                                    <NA>
## 1476       san francisco  california  doesn't have kids, but might want them
## 1477       san francisco  california                                    <NA>
## 1478       san francisco  california                                    <NA>
## 1479            richmond  california                                has kids
## 1480       san francisco  california                               has a kid
## 1481       san francisco  california                                    <NA>
## 1482       san francisco  california                                    <NA>
## 1483             hayward  california       doesn't have kids, but wants them
## 1484            berkeley  california                                    <NA>
## 1485          emeryville  california                                    <NA>
## 1486       san francisco  california                                    <NA>
## 1487              orinda  california                                    <NA>
## 1488       san francisco  california                                    <NA>
## 1489       san francisco  california  doesn't have kids, but might want them
## 1490       san francisco  california                                has kids
## 1491       san francisco  california                                    <NA>
## 1492       san francisco  california                                    <NA>
## 1493         san leandro  california                                has kids
## 1494          menlo park  california                                    <NA>
## 1495       san francisco  california                       doesn't have kids
## 1496             hayward  california                                    <NA>
## 1497       san francisco  california                       doesn't have kids
## 1498       san francisco  california                       doesn't have kids
## 1499       san francisco  california       doesn't have kids, but wants them
## 1500       san francisco  california                                    <NA>
## 1501       san francisco  california                                    <NA>
## 1502       san francisco  california                       doesn't have kids
## 1503            berkeley  california                                    <NA>
## 1504             oakland  california                                    <NA>
## 1505           palo alto  california                                    <NA>
## 1506          burlingame  california                       doesn't have kids
## 1507       pleasant hill  california                                    <NA>
## 1508           palo alto  california                                has kids
## 1509          menlo park  california                                    <NA>
## 1510       san francisco  california                                    <NA>
## 1511              novato  california                                    <NA>
## 1512       san francisco  california                                    <NA>
## 1513       san francisco  california                                    <NA>
## 1514       san francisco  california                                    <NA>
## 1515             oakland  california                                    <NA>
## 1516         mill valley  california       doesn't have kids, but wants them
## 1517             oakland  california                       doesn't have kids
## 1518          emeryville  california  doesn't have kids, but might want them
## 1519           sausalito  california                       doesn't have kids
## 1520       san francisco  california                       doesn't have kids
## 1521       san francisco  california                       doesn't have kids
## 1522       san francisco  california                       doesn't want kids
## 1523             fairfax  california           has kids, and might want more
## 1524            berkeley  california  doesn't have kids, but might want them
## 1525       san francisco  california                               has a kid
## 1526             oakland  california                       doesn't have kids
## 1527       san francisco  california                                    <NA>
## 1528       san francisco  california                                    <NA>
## 1529       san francisco  california                                    <NA>
## 1530           sausalito  california                       doesn't have kids
## 1531            berkeley  california                                    <NA>
## 1532       san francisco  california                                    <NA>
## 1533             belmont  california                                has kids
## 1534         san leandro  california                                    <NA>
## 1535       san francisco  california                                    <NA>
## 1536       san francisco  california                                    <NA>
## 1537             oakland  california                                    <NA>
## 1538       castro valley  california                                    <NA>
## 1539            berkeley  california                                    <NA>
## 1540       san francisco  california                               has a kid
## 1541             oakland  california       doesn't have kids, but wants them
## 1542             belmont  california                                    <NA>
## 1543       san francisco  california                       doesn't have kids
## 1544          san rafael  california                       doesn't have kids
## 1545            berkeley  california                                    <NA>
## 1546       san francisco  california                       doesn't have kids
## 1547       san francisco  california                                    <NA>
## 1548             oakland  california                       doesn't want kids
## 1549         san anselmo  california                                    <NA>
## 1550             oakland  california                       doesn't have kids
## 1551       san francisco  california                                    <NA>
## 1552       san francisco  california                                    <NA>
## 1553       san francisco  california                                    <NA>
## 1554       san francisco  california                                    <NA>
## 1555       san francisco  california                                    <NA>
## 1556       san francisco  california                                    <NA>
## 1557       san francisco  california                                    <NA>
## 1558             oakland  california                                    <NA>
## 1559        redwood city  california       doesn't have kids, but wants them
## 1560        redwood city  california                       doesn't have kids
## 1561       san francisco  california                       doesn't have kids
## 1562             oakland  california  doesn't have kids, but might want them
## 1563          emeryville  california                                    <NA>
## 1564       san francisco  california                       doesn't want kids
## 1565       san francisco  california       doesn't have kids, but wants them
## 1566       san francisco  california                                    <NA>
## 1567       san francisco  california       doesn't have kids, but wants them
## 1568       san francisco  california  doesn't have kids, but might want them
## 1569       san francisco  california                                    <NA>
## 1570             oakland  california                                    <NA>
## 1571             oakland  california                                    <NA>
## 1572       san francisco  california                                    <NA>
## 1573       san francisco  california  doesn't have kids, but might want them
## 1574              novato  california                                    <NA>
## 1575            berkeley  california                                    <NA>
## 1576       san francisco  california                       doesn't have kids
## 1577       san francisco  california                       doesn't have kids
## 1578       san francisco  california                                    <NA>
## 1579       san francisco  california                                    <NA>
## 1580          san carlos  california       doesn't have kids, but wants them
## 1581       san francisco  california                                    <NA>
## 1582       san francisco  california                                    <NA>
## 1583           san bruno  california                                    <NA>
## 1584       mountain view  california                                    <NA>
## 1585       san francisco  california                                    <NA>
## 1586       san francisco  california                                    <NA>
## 1587       san francisco  california doesn't have kids, and doesn't want any
## 1588       san francisco  california                                    <NA>
## 1589       san francisco  california                                    <NA>
## 1590         mill valley  california                                    <NA>
## 1591       san francisco  california                                    <NA>
## 1592       san francisco  california                                    <NA>
## 1593       san francisco  california         has kids, but doesn't want more
## 1594       san francisco  california                                    <NA>
## 1595       san francisco  california                                    <NA>
## 1596       san francisco  california                                    <NA>
## 1597       san francisco  california                                    <NA>
## 1598       san francisco  california                       doesn't have kids
## 1599            berkeley  california                                    <NA>
## 1600       san francisco  california                                    <NA>
## 1601       san francisco  california                       doesn't want kids
## 1602       san francisco  california                                    <NA>
## 1603       san francisco  california                       doesn't have kids
## 1604           palo alto  california                                    <NA>
## 1605             oakland  california                                    <NA>
## 1606         san leandro  california                                    <NA>
## 1607       san francisco  california                                    <NA>
## 1608          burlingame  california                                    <NA>
## 1609           san mateo  california                                    <NA>
## 1610              moraga  california                                    <NA>
## 1611       pleasant hill  california                                has kids
## 1612       san francisco  california                                    <NA>
## 1613       san francisco  california                                    <NA>
## 1614       san francisco  california                                    <NA>
## 1615       san francisco  california                                    <NA>
## 1616       san francisco  california                                    <NA>
## 1617       san francisco  california                       doesn't have kids
## 1618          el cerrito  california                                    <NA>
## 1619       san francisco  california                       doesn't have kids
## 1620       san francisco  california doesn't have kids, and doesn't want any
## 1621             oakland  california                       doesn't want kids
## 1622       san francisco  california                                    <NA>
## 1623           palo alto  california                                    <NA>
## 1624       san francisco  california                                    <NA>
## 1625       san francisco  california                                    <NA>
## 1626       san francisco  california                       doesn't have kids
## 1627       san francisco  california                                    <NA>
## 1628       san francisco  california                                    <NA>
## 1629            berkeley  california  doesn't have kids, but might want them
## 1630       san francisco  california                                    <NA>
## 1631          el cerrito  california                                    <NA>
## 1632 south san francisco  california                                    <NA>
## 1633             oakland  california                                    <NA>
## 1634       san francisco  california                       doesn't have kids
## 1635       san francisco  california                                    <NA>
## 1636 south san francisco  california       doesn't have kids, but wants them
## 1637 south san francisco  california                       doesn't want kids
## 1638       san francisco  california                                    <NA>
## 1639       pleasant hill  california                                    <NA>
## 1640          san rafael  california                         might want kids
## 1641             oakland  california                                    <NA>
## 1642             oakland  california                                    <NA>
## 1643             oakland  california doesn't have kids, and doesn't want any
## 1644       san francisco  california  doesn't have kids, but might want them
## 1645            berkeley  california                                    <NA>
## 1646       san francisco  california                       doesn't have kids
## 1647       san francisco  california                       doesn't want kids
## 1648       san francisco  california                                    <NA>
## 1649       san francisco  california                                    <NA>
## 1650       san francisco  california                                    <NA>
## 1651            berkeley  california                                    <NA>
## 1652       san francisco  california                                    <NA>
## 1653       san francisco  california                                    <NA>
## 1654           palo alto  california                                    <NA>
## 1655       san francisco  california                                    <NA>
## 1656             alameda  california  doesn't have kids, but might want them
## 1657       san francisco  california                       doesn't have kids
## 1658       san francisco  california                                    <NA>
## 1659       san francisco  california                                    <NA>
## 1660          san rafael  california                                    <NA>
## 1661       san francisco  california                       doesn't have kids
## 1662            stanford  california                                    <NA>
## 1663       san francisco  california                                    <NA>
## 1664            berkeley  california                                    <NA>
## 1665       san francisco  california                       doesn't have kids
## 1666       san francisco  california                                    <NA>
## 1667       san francisco  california                                    <NA>
## 1668       san francisco  california                                    <NA>
## 1669       san francisco  california                       doesn't want kids
## 1670            berkeley  california                                    <NA>
## 1671           san pablo  california                                    <NA>
## 1672        redwood city  california                                    <NA>
## 1673       san francisco  california                                    <NA>
## 1674       san francisco  california                       doesn't have kids
## 1675       san francisco  california                                    <NA>
## 1676       san francisco  california                       doesn't have kids
## 1677            stanford  california                                    <NA>
## 1678       san francisco  california                       doesn't have kids
## 1679       san francisco  california                                    <NA>
## 1680       san francisco  california                       doesn't have kids
## 1681             hayward  california                       doesn't want kids
## 1682       san francisco  california doesn't have kids, and doesn't want any
## 1683            berkeley  california                       doesn't want kids
## 1684           palo alto  california                                    <NA>
## 1685         mill valley  california                       doesn't have kids
## 1686            berkeley  california                                    <NA>
## 1687          menlo park  california         has kids, but doesn't want more
## 1688            berkeley  california                                    <NA>
## 1689       san francisco  california                                    <NA>
## 1690             oakland  california                       doesn't have kids
## 1691       san francisco  california  doesn't have kids, but might want them
## 1692       san francisco  california                                    <NA>
## 1693             alameda  california                       doesn't have kids
## 1694       san francisco  california                                    <NA>
## 1695             oakland  california                       doesn't have kids
## 1696              orinda  california                       doesn't have kids
## 1697       san francisco  california                       doesn't have kids
## 1698          san carlos  california                                has kids
## 1699       san francisco  california                                    <NA>
## 1700         san leandro  california       doesn't have kids, but wants them
## 1701          menlo park  california  doesn't have kids, but might want them
## 1702       san francisco  california       doesn't have kids, but wants them
## 1703             oakland  california                                    <NA>
## 1704       san francisco  california                                    <NA>
## 1705            berkeley  california                                    <NA>
## 1706       san francisco  california                                    <NA>
## 1707       san francisco  california       doesn't have kids, but wants them
## 1708       san francisco  california                                    <NA>
## 1709             oakland  california       doesn't have kids, but wants them
## 1710              novato  california                                    <NA>
## 1711       san francisco  california                                    <NA>
## 1712       san francisco  california                                    <NA>
## 1713       san francisco  california                                    <NA>
## 1714       san francisco  california                       doesn't want kids
## 1715       san francisco  california                                    <NA>
## 1716       san francisco  california                       doesn't want kids
## 1717             hayward  california                                    <NA>
## 1718       san francisco  california                       doesn't want kids
## 1719       san francisco  california                                    <NA>
## 1720       san francisco  california                                    <NA>
## 1721       san francisco  california                                    <NA>
## 1722       san francisco  california                                    <NA>
## 1723           daly city  california                                    <NA>
## 1724       san francisco  california       doesn't have kids, but wants them
## 1725       san francisco  california                                    <NA>
## 1726       san francisco  california                                    <NA>
## 1727          burlingame  california                       doesn't have kids
## 1728             oakland  california                                    <NA>
## 1729       san francisco  california                                    <NA>
## 1730       san francisco  california                                has kids
## 1731       san francisco  california                                    <NA>
## 1732           sausalito  california                                    <NA>
## 1733             oakland  california                                    <NA>
## 1734       san francisco  california                                    <NA>
## 1735       san francisco  california                                    <NA>
## 1736       half moon bay  california                       doesn't have kids
## 1737       san francisco  california                                    <NA>
## 1738       san francisco  california                                    <NA>
## 1739            berkeley  california                                    <NA>
## 1740       san francisco  california                                    <NA>
## 1741           san mateo  california                       doesn't want kids
## 1742         san leandro  california                       doesn't have kids
## 1743            pacifica  california                                    <NA>
## 1744       san francisco  california                                    <NA>
## 1745             oakland  california  doesn't have kids, but might want them
## 1746           palo alto  california                       doesn't have kids
## 1747             oakland  california       doesn't have kids, but wants them
## 1748       san francisco  california                                    <NA>
## 1749       san francisco  california                       doesn't want kids
## 1750           san mateo  california                                    <NA>
## 1751       san francisco  california       doesn't have kids, but wants them
## 1752       san francisco  california  doesn't have kids, but might want them
## 1753            stanford  california                       doesn't have kids
## 1754             oakland  california               has a kid, and wants more
## 1755       san francisco  california                                    <NA>
## 1756       san francisco  california                               has a kid
## 1757             oakland  california                                    <NA>
## 1758       mountain view  california                                    <NA>
## 1759            berkeley  california                                    <NA>
## 1760             alameda  california                       doesn't have kids
## 1761          san rafael  california                                has kids
## 1762 south san francisco  california                                    <NA>
## 1763       san francisco  california                                    <NA>
## 1764       san francisco  california doesn't have kids, and doesn't want any
## 1765       san francisco  california                                    <NA>
## 1766             oakland  california                                    <NA>
## 1767       half moon bay  california                       doesn't want kids
## 1768       san francisco  california                                    <NA>
## 1769       san francisco  california                                    <NA>
## 1770       san francisco  california                                    <NA>
## 1771       san francisco  california                              wants kids
## 1772       san francisco  california                       doesn't have kids
## 1773            berkeley  california                                    <NA>
## 1774       san francisco  california       doesn't have kids, but wants them
## 1775          san rafael  california                       doesn't have kids
## 1776       san francisco  california                                    <NA>
## 1777         san leandro  california                               has a kid
## 1778          emeryville  california                                    <NA>
## 1779             oakland  california  doesn't have kids, but might want them
## 1780             oakland  california                                    <NA>
## 1781       san francisco  california                                    <NA>
## 1782       san francisco  california                                    <NA>
## 1783            berkeley  california doesn't have kids, and doesn't want any
## 1784       san francisco  california                                    <NA>
## 1785       san francisco  california                               has a kid
## 1786             alameda  california                                    <NA>
## 1787       san francisco  california                                    <NA>
## 1788            berkeley  california  doesn't have kids, but might want them
## 1789           palo alto  california                                    <NA>
## 1790       san francisco  california                                    <NA>
## 1791           palo alto  california                                    <NA>
## 1792       san francisco  california                                    <NA>
## 1793       san francisco  california                                    <NA>
## 1794 south san francisco  california                                has kids
## 1795            berkeley  california                                    <NA>
## 1796        redwood city  california                                    <NA>
## 1797            berkeley  california doesn't have kids, and doesn't want any
## 1798       san francisco  california  doesn't have kids, but might want them
## 1799       san francisco  california                                    <NA>
## 1800       san francisco  california                                    <NA>
## 1801       san francisco  california                                    <NA>
## 1802            berkeley  california                                    <NA>
## 1803       san francisco  california                                    <NA>
## 1804       san francisco  california                                    <NA>
## 1805        walnut creek  california                                    <NA>
## 1806       san francisco  california                                    <NA>
## 1807             oakland  california                                    <NA>
## 1808           lafayette  california                                    <NA>
## 1809            millbrae  california                                    <NA>
## 1810       san francisco  california                       doesn't have kids
## 1811       san francisco  california       doesn't have kids, but wants them
## 1812   belvedere tiburon  california                                    <NA>
## 1813       san francisco  california                                    <NA>
## 1814       san francisco  california                                    <NA>
## 1815          san carlos  california         has kids, but doesn't want more
## 1816       san francisco  california                                    <NA>
## 1817            berkeley  california       doesn't have kids, but wants them
## 1818       san francisco  california  doesn't have kids, but might want them
## 1819       san francisco  california                                    <NA>
## 1820            berkeley  california  doesn't have kids, but might want them
## 1821       san francisco  california                                    <NA>
## 1822           palo alto  california                                    <NA>
## 1823          san carlos  california                                    <NA>
## 1824         san lorenzo  california                       doesn't want kids
## 1825       san francisco  california                       doesn't have kids
## 1826       san francisco  california       doesn't have kids, but wants them
## 1827       san francisco  california                                    <NA>
## 1828             oakland  california                                    <NA>
## 1829       san francisco  california                       doesn't have kids
## 1830       san francisco  california                                    <NA>
## 1831       san francisco  california                                    <NA>
## 1832       san francisco  california                       doesn't have kids
## 1833       san francisco  california                                    <NA>
## 1834       san francisco  california                                    <NA>
## 1835             oakland  california                                    <NA>
## 1836       san francisco  california                                    <NA>
## 1837          emeryville  california                                    <NA>
## 1838             benicia  california                                    <NA>
## 1839        redwood city  california                                    <NA>
## 1840       san francisco  california                                    <NA>
## 1841       san francisco  california                                    <NA>
## 1842       san francisco  california       doesn't have kids, but wants them
## 1843        walnut creek  california                                    <NA>
## 1844            pacifica  california                                    <NA>
## 1845            berkeley  california                                    <NA>
## 1846          el cerrito  california                       doesn't have kids
## 1847       castro valley  california                                    <NA>
## 1848             oakland  california                       doesn't have kids
## 1849          san rafael  california                       doesn't have kids
## 1850       san francisco  california                                    <NA>
## 1851            stanford  california                                    <NA>
## 1852       san francisco  california doesn't have kids, and doesn't want any
## 1853       san francisco  california                                    <NA>
## 1854             oakland  california                                    <NA>
## 1855       san francisco  california                                    <NA>
## 1856       san francisco  california                       doesn't want kids
## 1857             vallejo  california                                    <NA>
## 1858            berkeley  california                                    <NA>
## 1859       san francisco  california                       doesn't have kids
## 1860         mill valley  california                                    <NA>
## 1861       san francisco  california                       doesn't have kids
## 1862       san francisco  california doesn't have kids, and doesn't want any
## 1863           daly city  california                                    <NA>
## 1864       san francisco  california  doesn't have kids, but might want them
## 1865 south san francisco  california                                    <NA>
## 1866            berkeley  california                       doesn't want kids
## 1867       san francisco  california                                    <NA>
## 1868           san mateo  california                                    <NA>
## 1869       san francisco  california                                    <NA>
## 1870       san francisco  california                                    <NA>
## 1871        walnut creek  california                                    <NA>
## 1872             oakland  california                                    <NA>
## 1873            martinez  california                               has a kid
## 1874            hercules  california                                    <NA>
## 1875       san francisco  california                                    <NA>
## 1876          emeryville  california                       doesn't want kids
## 1877       san francisco  california                                    <NA>
## 1878             belmont  california                                    <NA>
## 1879             oakland  california                                    <NA>
## 1880       san francisco  california                                    <NA>
## 1881       san francisco  california                                    <NA>
## 1882       san francisco  california                                    <NA>
## 1883          san carlos  california                                    <NA>
## 1884       san francisco  california                       doesn't have kids
## 1885             oakland  california doesn't have kids, and doesn't want any
## 1886       san francisco  california                                    <NA>
## 1887       san francisco  california                                    <NA>
## 1888             montara  california                                    <NA>
## 1889       san francisco  california                                    <NA>
## 1890           san mateo  california                                    <NA>
## 1891       san francisco  california                       doesn't want kids
## 1892       san francisco  california  doesn't have kids, but might want them
## 1893       san francisco  california                                    <NA>
## 1894       san francisco  california  doesn't have kids, but might want them
## 1895            berkeley  california                       doesn't have kids
## 1896             oakland  california       doesn't have kids, but wants them
## 1897             oakland  california  doesn't have kids, but might want them
## 1898            berkeley  california                                    <NA>
## 1899            berkeley  california  doesn't have kids, but might want them
## 1900        redwood city  california                                    <NA>
## 1901       pleasant hill  california                                    <NA>
## 1902       mountain view  california                                    <NA>
## 1903             oakland  california                       doesn't want kids
## 1904       san francisco  california                                    <NA>
## 1905            berkeley  california                                    <NA>
## 1906          san rafael  california                               has a kid
## 1907             oakland  california  doesn't have kids, but might want them
## 1908       san francisco  california                                    <NA>
## 1909              albany  california                                    <NA>
## 1910       san francisco  california                                    <NA>
## 1911       san francisco  california                                    <NA>
## 1912       san francisco  california  doesn't have kids, but might want them
## 1913       san francisco  california                                    <NA>
## 1914       san francisco  california                                    <NA>
## 1915       san francisco  california  doesn't have kids, but might want them
## 1916       san francisco  california                                    <NA>
## 1917       san francisco  california                       doesn't have kids
## 1918       san francisco  california                                    <NA>
## 1919       san francisco  california                                    <NA>
## 1920             oakland  california                                    <NA>
## 1921          green brae  california                                has kids
## 1922       san francisco  california                                    <NA>
## 1923          burlingame  california                                    <NA>
## 1924       san francisco  california                                    <NA>
## 1925       san francisco  california                                    <NA>
## 1926       san francisco  california                                    <NA>
## 1927           palo alto  california                               has a kid
## 1928       san francisco  california                                    <NA>
## 1929            berkeley  california  doesn't have kids, but might want them
## 1930         el sobrante  california          has a kid, and might want more
## 1931       mountain view  california                                    <NA>
## 1932       san francisco  california                                    <NA>
## 1933       san francisco  california                                    <NA>
## 1934       san francisco  california                                    <NA>
## 1935             oakland  california                       doesn't have kids
## 1936       san francisco  california                                    <NA>
## 1937       san francisco  california  doesn't have kids, but might want them
## 1938       san francisco  california                       doesn't want kids
## 1939           san mateo  california       doesn't have kids, but wants them
## 1940       san francisco  california                                    <NA>
## 1941        walnut creek  california       doesn't have kids, but wants them
## 1942       san francisco  california                       doesn't have kids
## 1943       san francisco  california                               has a kid
## 1944       san francisco  california         has kids, but doesn't want more
## 1945         san anselmo  california doesn't have kids, and doesn't want any
## 1946       san francisco  california  doesn't have kids, but might want them
## 1947            berkeley  california       doesn't have kids, but wants them
## 1948             oakland  california                       doesn't have kids
## 1949           san mateo  california                                    <NA>
## 1950            pacifica  california                                    <NA>
## 1951             oakland  california  doesn't have kids, but might want them
## 1952           daly city  california                                    <NA>
## 1953             oakland  california                                    <NA>
## 1954          san rafael  california                       doesn't want kids
## 1955             vallejo  california                                    <NA>
## 1956       san francisco  california       doesn't have kids, but wants them
## 1957       san francisco  california                       doesn't have kids
## 1958       san francisco  california  doesn't have kids, but might want them
## 1959       san francisco  california                                    <NA>
## 1960       san francisco  california                                    <NA>
## 1961            richmond  california                                has kids
## 1962       san francisco  california                                has kids
## 1963       san francisco  california       doesn't have kids, but wants them
## 1964       san francisco  california                               has a kid
## 1965       san francisco  california  doesn't have kids, but might want them
## 1966            berkeley  california                       doesn't want kids
## 1967       san francisco  california                                    <NA>
## 1968       san francisco  california                                    <NA>
## 1969       san francisco  california                               has a kid
## 1970       san francisco  california                                    <NA>
## 1971       san francisco  california                                    <NA>
## 1972           san mateo  california                                    <NA>
## 1973             hayward  california                                    <NA>
## 1974            richmond  california                                    <NA>
## 1975       san francisco  california  doesn't have kids, but might want them
## 1976       san francisco  california                                    <NA>
## 1977           san mateo  california  doesn't have kids, but might want them
## 1978       san francisco  california                                    <NA>
## 1979             oakland  california                                    <NA>
## 1980       san francisco  california                                    <NA>
## 1981       san francisco  california                       doesn't have kids
## 1982             benicia  california                                    <NA>
## 1983           palo alto  california                                    <NA>
## 1984       san francisco  california                                    <NA>
## 1985            crockett  california                                    <NA>
## 1986             oakland  california                                    <NA>
## 1987       san francisco  california doesn't have kids, and doesn't want any
## 1988       san francisco  california                                    <NA>
## 1989       san francisco  california                                    <NA>
## 1990       san francisco  california                                    <NA>
## 1991            berkeley  california                       doesn't have kids
## 1992       san francisco  california                       doesn't have kids
## 1993       san francisco  california                       doesn't want kids
## 1994             oakland  california                       doesn't have kids
## 1995          burlingame  california                                    <NA>
## 1996       san francisco  california                       doesn't have kids
## 1997             alameda  california                                    <NA>
## 1998       san francisco  california                               has a kid
## 1999       san francisco  california                                    <NA>
## 2000             oakland  california                                    <NA>
## 2001       san francisco  california                                    <NA>
## 2002            berkeley  california                                    <NA>
## 2003          menlo park  california                                    <NA>
## 2004       san francisco  california                                    <NA>
## 2005             vallejo  california                                    <NA>
## 2006             hayward  california                                    <NA>
## 2007            berkeley  california                                    <NA>
## 2008       san francisco  california                                    <NA>
## 2009          san carlos  california  doesn't have kids, but might want them
## 2010       san francisco  california                       doesn't want kids
## 2011       san francisco  california                       doesn't have kids
## 2012       san francisco  california                                    <NA>
## 2013           san mateo  california                       doesn't have kids
## 2014       san francisco  california                       doesn't want kids
## 2015       san francisco  california                       doesn't have kids
## 2016       san francisco  california                                    <NA>
## 2017            berkeley  california       doesn't have kids, but wants them
## 2018          el cerrito  california                                    <NA>
## 2019       san francisco  california                                    <NA>
## 2020       san francisco  california                                    <NA>
## 2021       san francisco  california                       doesn't have kids
## 2022           san bruno  california                                    <NA>
## 2023       san francisco  california                       doesn't have kids
## 2024             oakland  california  doesn't have kids, but might want them
## 2025       san francisco  california                                    <NA>
## 2026       san francisco  california                                    <NA>
## 2027       san francisco  california                                    <NA>
## 2028             oakland  california                       doesn't have kids
## 2029             oakland  california                               has a kid
## 2030       san francisco  california                                    <NA>
## 2031       san francisco  california                       doesn't have kids
## 2032       san francisco  california                                    <NA>
## 2033       san francisco  california                                    <NA>
## 2034       san francisco  california                                    <NA>
## 2035       san francisco  california                                    <NA>
## 2036       san francisco  california                                    <NA>
## 2037       san francisco  california doesn't have kids, and doesn't want any
## 2038       san francisco  california                                    <NA>
## 2039             oakland  california           has kids, and might want more
## 2040             oakland  california                                    <NA>
## 2041       san francisco  california                                    <NA>
## 2042       san francisco  california                       doesn't have kids
## 2043            berkeley  california       doesn't have kids, but wants them
## 2044             oakland  california                                    <NA>
## 2045           san mateo  california  doesn't have kids, but might want them
## 2046            berkeley  california           has kids, and might want more
## 2047       san francisco  california                                    <NA>
## 2048       san francisco  california                                    <NA>
## 2049            berkeley  california       doesn't have kids, but wants them
## 2050       san francisco  california                       doesn't have kids
## 2051       san francisco  california doesn't have kids, and doesn't want any
## 2052         san leandro  california                                    <NA>
## 2053       san francisco  california                                    <NA>
## 2054       san francisco  california                                    <NA>
## 2055             oakland  california                                    <NA>
## 2056           san mateo  california                                    <NA>
## 2057            berkeley  california                                    <NA>
## 2058       san francisco  california                                    <NA>
## 2059       san francisco  california                                    <NA>
## 2060       san francisco  california                                    <NA>
## 2061       san francisco  california                         might want kids
## 2062            berkeley  california  doesn't have kids, but might want them
## 2063            stanford  california                                    <NA>
## 2064          san rafael  california       doesn't have kids, but wants them
## 2065       san francisco  california                                    <NA>
## 2066         san leandro  california  doesn't have kids, but might want them
## 2067       san francisco  california                                    <NA>
## 2068       san francisco  california                                    <NA>
## 2069       san francisco  california                                    <NA>
## 2070       san francisco  california                                    <NA>
## 2071       san francisco  california  doesn't have kids, but might want them
## 2072       san francisco  california                                    <NA>
## 2073       san francisco  california                                    <NA>
## 2074             oakland  california                                    <NA>
## 2075        redwood city  california                                    <NA>
## 2076       san francisco  california                                    <NA>
## 2077       san francisco  california                                    <NA>
## 2078           palo alto  california                       doesn't have kids
## 2079       san francisco  california                                    <NA>
## 2080        redwood city  california                               has a kid
## 2081       san francisco  california                                    <NA>
## 2082       san francisco  california                                    <NA>
## 2083       san francisco  california  doesn't have kids, but might want them
## 2084       san francisco  california                                    <NA>
## 2085         san leandro  california                       doesn't have kids
## 2086       san francisco  california                                    <NA>
## 2087       san francisco  california       doesn't have kids, but wants them
## 2088          emeryville  california  doesn't have kids, but might want them
## 2089       pleasant hill  california                                has kids
## 2090         san leandro  california  doesn't have kids, but might want them
## 2091          emeryville  california                       doesn't have kids
## 2092       san francisco  california       doesn't have kids, but wants them
## 2093       san francisco  california  doesn't have kids, but might want them
## 2094       castro valley  california                                    <NA>
## 2095       san francisco  california                                    <NA>
## 2096       san francisco  california                                    <NA>
## 2097           lafayette  california                               has a kid
## 2098       san francisco  california                                    <NA>
## 2099             oakland  california  doesn't have kids, but might want them
## 2100       san francisco  california                                    <NA>
## 2101       san francisco  california                                    <NA>
## 2102       san francisco  california                                    <NA>
## 2103       san francisco  california       doesn't have kids, but wants them
## 2104       san francisco  california  doesn't have kids, but might want them
## 2105       san francisco  california                                    <NA>
## 2106       san francisco  california                       doesn't have kids
## 2107       san francisco  california                                    <NA>
## 2108       san francisco  california                       doesn't have kids
## 2109       san francisco  california                                    <NA>
## 2110       san francisco  california                       doesn't want kids
## 2111       san francisco  california                       doesn't have kids
## 2112             oakland  california                                    <NA>
## 2113       san francisco  california                                    <NA>
## 2114            berkeley  california  doesn't have kids, but might want them
## 2115       san francisco  california                       doesn't have kids
## 2116       san francisco  california                       doesn't have kids
## 2117             oakland  california       doesn't have kids, but wants them
## 2118              novato  california                                    <NA>
## 2119       san francisco  california                       doesn't have kids
## 2120       san francisco  california                                    <NA>
## 2121       castro valley  california         has kids, but doesn't want more
## 2122              pinole  california                                    <NA>
## 2123        walnut creek  california                                has kids
## 2124         san lorenzo  california                                    <NA>
## 2125       san francisco  california                       doesn't want kids
## 2126             oakland  california                                    <NA>
## 2127             alameda  california                               has a kid
## 2128       san francisco  california       doesn't have kids, but wants them
## 2129         san leandro  california  doesn't have kids, but might want them
## 2130           palo alto  california                                    <NA>
## 2131             oakland  california                       doesn't want kids
## 2132             fairfax  california doesn't have kids, and doesn't want any
## 2133             oakland  california                                    <NA>
## 2134             oakland  california                                    <NA>
## 2135            brisbane  california  doesn't have kids, but might want them
## 2136             oakland  california                                    <NA>
## 2137       san francisco  california                                    <NA>
## 2138       san francisco  california       doesn't have kids, but wants them
## 2139             oakland  california                                    <NA>
## 2140       san francisco  california                       doesn't have kids
## 2141             oakland  california                       doesn't have kids
## 2142       san francisco  california                                    <NA>
## 2143            berkeley  california                                    <NA>
## 2144       san francisco  california                                    <NA>
## 2145             oakland  california                                    <NA>
## 2146         el sobrante  california  doesn't have kids, but might want them
## 2147             oakland  california                                    <NA>
## 2148           daly city  california                                    <NA>
## 2149         san leandro  california                                    <NA>
## 2150          san carlos  california                                has kids
## 2151       san francisco  california                                    <NA>
## 2152             hayward  california                                    <NA>
## 2153       san francisco  california                                    <NA>
## 2154             oakland  california                                    <NA>
## 2155        walnut creek  california                       doesn't have kids
## 2156       san francisco  california                                    <NA>
## 2157             oakland  california                       doesn't have kids
## 2158       san francisco  california                                    <NA>
## 2159       san francisco  california                       doesn't have kids
## 2160          san rafael  california  doesn't have kids, but might want them
## 2161        redwood city  california                                has kids
## 2162       san francisco  california                                    <NA>
## 2163       san francisco  california                                    <NA>
## 2164             fairfax  california         has kids, but doesn't want more
## 2165       san francisco  california                                    <NA>
## 2166       san francisco  california                       doesn't have kids
## 2167       san francisco  california       doesn't have kids, but wants them
## 2168       san francisco  california                                    <NA>
## 2169       san francisco  california                                    <NA>
## 2170       san francisco  california                                    <NA>
## 2171       san francisco  california                                    <NA>
## 2172             montara  california                       doesn't have kids
## 2173   belvedere tiburon  california       doesn't have kids, but wants them
## 2174             benicia  california                                has kids
## 2175       san francisco  california                       doesn't have kids
## 2176       san francisco  california                                    <NA>
## 2177       san francisco  california                                    <NA>
## 2178       san francisco  california doesn't have kids, and doesn't want any
## 2179            stanford  california                       doesn't have kids
## 2180       san francisco  california                                    <NA>
## 2181           san mateo  california       doesn't have kids, but wants them
## 2182       san francisco  california       doesn't have kids, but wants them
## 2183       pleasant hill  california                                    <NA>
## 2184       san francisco  california                                    <NA>
## 2185           palo alto  california                       doesn't have kids
## 2186            berkeley  california                       doesn't have kids
## 2187           san mateo  california        has a kid, but doesn't want more
## 2188 south san francisco  california                                    <NA>
## 2189       san francisco  california                                    <NA>
## 2190             oakland  california                                    <NA>
## 2191       san francisco  california                                    <NA>
## 2192       san francisco  california                                    <NA>
## 2193          el cerrito  california                       doesn't have kids
## 2194             oakland  california                                    <NA>
## 2195       san francisco  california doesn't have kids, and doesn't want any
## 2196       san francisco  california                       doesn't have kids
## 2197       san francisco  california                       doesn't have kids
## 2198       san francisco  california                                    <NA>
## 2199       san francisco  california                       doesn't have kids
## 2200            woodside  california                       doesn't want kids
## 2201             alameda  california  doesn't have kids, but might want them
## 2202       san francisco  california                                    <NA>
## 2203             alameda  california                                    <NA>
## 2204             oakland  california         has kids, but doesn't want more
## 2205             alameda  california  doesn't have kids, but might want them
## 2206             alameda  california                                    <NA>
## 2207       san francisco  california                       doesn't want kids
## 2208       san francisco  california                                    <NA>
## 2209           san bruno  california                                    <NA>
## 2210       san francisco  california       doesn't have kids, but wants them
## 2211       pleasant hill  california                       doesn't have kids
## 2212             oakland  california                       doesn't have kids
## 2213            berkeley  california                                    <NA>
## 2214             hayward  california       doesn't have kids, but wants them
## 2215             oakland  california                                    <NA>
## 2216             oakland  california                       doesn't have kids
## 2217       san francisco  california                                    <NA>
## 2218       san francisco  california  doesn't have kids, but might want them
## 2219       san francisco  california  doesn't have kids, but might want them
## 2220            berkeley  california                                    <NA>
## 2221       san francisco  california                                    <NA>
## 2222            berkeley  california doesn't have kids, and doesn't want any
## 2223            berkeley  california                                    <NA>
## 2224             oakland  california                                    <NA>
## 2225           san mateo  california       doesn't have kids, but wants them
## 2226       san francisco  california                                    <NA>
## 2227             hayward  california                                    <NA>
## 2228            pacifica  california                                    <NA>
## 2229            pacifica  california                                    <NA>
## 2230       san francisco  california                                has kids
## 2231       san francisco  california                                    <NA>
## 2232       san francisco  california       doesn't have kids, but wants them
## 2233              albany  california        has a kid, but doesn't want more
## 2234              albany  california       doesn't have kids, but wants them
## 2235             oakland  california doesn't have kids, and doesn't want any
## 2236            berkeley  california                                    <NA>
## 2237       san francisco  california                                    <NA>
## 2238       san francisco  california                                    <NA>
## 2239       pleasant hill  california                                    <NA>
## 2240            berkeley  california                       doesn't have kids
## 2241       san francisco  california                                    <NA>
## 2242          emeryville  california                                    <NA>
## 2243       san francisco  california                                    <NA>
## 2244             hayward  california                                    <NA>
## 2245       san francisco  california                       doesn't want kids
## 2246          san carlos  california                                    <NA>
## 2247       san francisco  california                                    <NA>
## 2248             oakland  california                       doesn't have kids
## 2249             oakland  california                       doesn't want kids
## 2250        redwood city  california                                    <NA>
## 2251             oakland  california                                    <NA>
## 2252       san francisco  california                                    <NA>
## 2253       san francisco  california                                    <NA>
## 2254            berkeley  california doesn't have kids, and doesn't want any
## 2255       san francisco  california                                    <NA>
## 2256       san francisco  california                                    <NA>
## 2257             alameda  california                                has kids
## 2258        redwood city  california                                    <NA>
## 2259            berkeley  california                                    <NA>
## 2260       san francisco  california                                    <NA>
## 2261            berkeley  california                       doesn't want kids
## 2262           lafayette  california                       doesn't want kids
## 2263       san francisco  california                                    <NA>
## 2264       san francisco  california                                    <NA>
## 2265             oakland  california                                    <NA>
## 2266             belmont  california  doesn't have kids, but might want them
## 2267            berkeley  california                                    <NA>
## 2268       san francisco  california                                    <NA>
## 2269       san francisco  california                                    <NA>
## 2270       san francisco  california                       doesn't have kids
## 2271           daly city  california                                    <NA>
## 2272             oakland  california  doesn't have kids, but might want them
## 2273       san francisco  california                                    <NA>
## 2274       san francisco  california                                    <NA>
## 2275        walnut creek  california                                    <NA>
## 2276             oakland  california  doesn't have kids, but might want them
## 2277       san francisco  california                               has a kid
## 2278       san francisco  california                                    <NA>
## 2279       san francisco  california                                    <NA>
## 2280       san francisco  california                                    <NA>
## 2281       san francisco  california                       doesn't have kids
## 2282            martinez  california                                    <NA>
## 2283       san francisco  california                                    <NA>
## 2284        redwood city  california                                    <NA>
## 2285       san francisco  california                                    <NA>
## 2286       san francisco  california  doesn't have kids, but might want them
## 2287             oakland  california                       doesn't have kids
## 2288            berkeley  california                       doesn't have kids
## 2289       san francisco  california  doesn't have kids, but might want them
## 2290       san francisco  california       doesn't have kids, but wants them
## 2291       san francisco  california                                    <NA>
## 2292       san francisco  california                       doesn't have kids
## 2293       san francisco  california                                    <NA>
## 2294       san francisco  california                                    <NA>
## 2295       san francisco  california                                    <NA>
## 2296             oakland  california                              wants kids
## 2297       san francisco  california                       doesn't have kids
## 2298       san francisco  california                                    <NA>
## 2299             oakland  california                                    <NA>
## 2300            berkeley  california                                    <NA>
## 2301       san francisco  california                                    <NA>
## 2302       san francisco  california                       doesn't have kids
## 2303           san mateo  california                               has a kid
## 2304             oakland  california                       doesn't have kids
## 2305             oakland  california                                    <NA>
## 2306       san francisco  california                                    <NA>
## 2307       san francisco  california                                    <NA>
## 2308              albany  california  doesn't have kids, but might want them
## 2309       san francisco  california                               has a kid
## 2310       san francisco  california                                    <NA>
## 2311             oakland  california                       doesn't have kids
## 2312       san francisco  california                                    <NA>
## 2313            berkeley  california                                    <NA>
## 2314       san francisco  california                                    <NA>
## 2315             oakland  california                                    <NA>
## 2316       san francisco  california                                    <NA>
## 2317       san francisco  california                               has a kid
## 2318       san francisco  california                                    <NA>
## 2319             oakland  california                       doesn't have kids
## 2320       san francisco  california                       doesn't have kids
## 2321             oakland  california                                    <NA>
## 2322       san francisco  california       doesn't have kids, but wants them
## 2323       san francisco  california                                    <NA>
## 2324       san francisco  california                                has kids
## 2325       san francisco  california                                    <NA>
## 2326       san francisco  california                                    <NA>
## 2327       san francisco  california                                    <NA>
## 2328       san francisco  california                                    <NA>
## 2329          emeryville  california                                    <NA>
## 2330             oakland  california                                    <NA>
## 2331            stanford  california                                    <NA>
## 2332       san francisco  california                                    <NA>
## 2333       san francisco  california                                    <NA>
## 2334           san bruno  california       doesn't have kids, but wants them
## 2335       san francisco  california                                    <NA>
## 2336        walnut creek  california                                    <NA>
## 2337       san francisco  california                                    <NA>
## 2338       san francisco  california                                has kids
## 2339       san francisco  california       doesn't have kids, but wants them
## 2340       san francisco  california                                    <NA>
## 2341       san francisco  california                       doesn't want kids
## 2342        redwood city  california                       doesn't have kids
## 2343       san francisco  california           has kids, and might want more
## 2344       san francisco  california                       doesn't have kids
## 2345            berkeley  california                                    <NA>
## 2346          san rafael  california                                    <NA>
## 2347       san francisco  california                                    <NA>
## 2348        redwood city  california                                    <NA>
## 2349       san francisco  california                       doesn't have kids
## 2350            berkeley  california                                    <NA>
## 2351       half moon bay  california                                    <NA>
## 2352       san francisco  california                                    <NA>
## 2353       san francisco  california                                    <NA>
## 2354          san rafael  california                                    <NA>
## 2355       san francisco  california                                    <NA>
## 2356       san francisco  california                                    <NA>
## 2357       san francisco  california                                    <NA>
## 2358             oakland  california                               has a kid
## 2359       mountain view  california                                    <NA>
## 2360       mountain view  california                                    <NA>
## 2361       san francisco  california                       doesn't have kids
## 2362            berkeley  california                                    <NA>
## 2363             oakland  california                                    <NA>
## 2364        walnut creek  california                                    <NA>
## 2365            berkeley  california                                    <NA>
## 2366          san rafael  california       doesn't have kids, but wants them
## 2367       san francisco  california                                    <NA>
## 2368       san francisco  california                                    <NA>
## 2369       san francisco  california                       doesn't have kids
## 2370       san francisco  california                                    <NA>
## 2371        walnut creek  california                                has kids
## 2372             hayward  california       doesn't have kids, but wants them
## 2373       san francisco  california                                    <NA>
## 2374             oakland  california                                    <NA>
## 2375       san francisco  california       doesn't have kids, but wants them
## 2376       san francisco  california                                    <NA>
## 2377       san francisco  california                       doesn't have kids
## 2378            berkeley  california       doesn't have kids, but wants them
## 2379       san francisco  california                                    <NA>
## 2380       san francisco  california                                    <NA>
## 2381       san francisco  california                                    <NA>
## 2382       san francisco  california                                    <NA>
## 2383       san francisco  california                                    <NA>
## 2384            crockett  california       doesn't have kids, but wants them
## 2385       san francisco  california                                    <NA>
## 2386          san rafael  california                                    <NA>
## 2387             oakland  california       doesn't have kids, but wants them
## 2388       san francisco  california                                    <NA>
## 2389       san francisco  california                       doesn't have kids
## 2390       san francisco  california                                    <NA>
## 2391          burlingame  california                                    <NA>
## 2392       san francisco  california                                    <NA>
## 2393       san francisco  california                       doesn't have kids
## 2394             oakland  california                                    <NA>
## 2395       san francisco  california       doesn't have kids, but wants them
## 2396       san francisco  california  doesn't have kids, but might want them
## 2397       san francisco  california                                    <NA>
## 2398       san francisco  california       doesn't have kids, but wants them
## 2399          san carlos  california                                    <NA>
## 2400       san francisco  california                                    <NA>
## 2401       san francisco  california                                    <NA>
## 2402       san francisco  california                                    <NA>
## 2403            berkeley  california                                    <NA>
## 2404       san francisco  california                                    <NA>
## 2405       san francisco  california       doesn't have kids, but wants them
## 2406       san francisco  california                       doesn't have kids
## 2407       san francisco  california  doesn't have kids, but might want them
## 2408           palo alto  california                       doesn't have kids
## 2409       san francisco  california                                    <NA>
## 2410       san francisco  california                                    <NA>
## 2411       san francisco  california  doesn't have kids, but might want them
## 2412             vallejo  california                                    <NA>
## 2413           san pablo  california                                    <NA>
## 2414       san francisco  california       doesn't have kids, but wants them
## 2415       san francisco  california                                    <NA>
## 2416       san francisco  california  doesn't have kids, but might want them
## 2417       san francisco  california  doesn't have kids, but might want them
## 2418            millbrae  california                                    <NA>
## 2419       san francisco  california                                    <NA>
## 2420       san francisco  california                                    <NA>
## 2421       san francisco  california                       doesn't have kids
## 2422           daly city  california                                    <NA>
## 2423       san francisco  california                               has a kid
## 2424            berkeley  california                       doesn't have kids
## 2425             fremont  california                                    <NA>
## 2426       san francisco  california                has kids, and wants more
## 2427       san francisco  california                                    <NA>
## 2428       san francisco  california                                    <NA>
## 2429            berkeley  california                                    <NA>
## 2430       san francisco  california                       doesn't have kids
## 2431       san francisco  california                                    <NA>
## 2432         mill valley  california                                    <NA>
## 2433           palo alto  california                                    <NA>
## 2434       san francisco  california                       doesn't want kids
## 2435       san francisco  california                       doesn't have kids
## 2436             oakland  california  doesn't have kids, but might want them
## 2437       san francisco  california                       doesn't want kids
## 2438       san francisco  california                                    <NA>
## 2439       san francisco  california                                    <NA>
## 2440       san francisco  california                       doesn't want kids
## 2441       san francisco  california  doesn't have kids, but might want them
## 2442       san francisco  california                       doesn't have kids
## 2443       san francisco  california                                    <NA>
## 2444       san francisco  california                                    <NA>
## 2445         el sobrante  california                                    <NA>
## 2446             oakland  california                                    <NA>
## 2447       san francisco  california                                    <NA>
## 2448       san francisco  california                                    <NA>
## 2449       san francisco  california                       doesn't want kids
## 2450       mountain view  california                       doesn't have kids
## 2451       san francisco  california                                    <NA>
## 2452              novato  california                                    <NA>
## 2453       san francisco  california                                    <NA>
## 2454             oakland  california                       doesn't have kids
## 2455           san bruno  california                                    <NA>
## 2456          burlingame  california                                    <NA>
## 2457            berkeley  california                                    <NA>
## 2458           palo alto  california       doesn't have kids, but wants them
## 2459           san mateo  california                                    <NA>
## 2460       san francisco  california                               has a kid
## 2461        walnut creek  california                                    <NA>
## 2462       san francisco  california                                    <NA>
## 2463       san francisco  california                                    <NA>
## 2464              albany  california                                    <NA>
## 2465             oakland  california                                    <NA>
## 2466             alameda  california       doesn't have kids, but wants them
## 2467       san francisco  california                                    <NA>
## 2468             oakland  california                                    <NA>
## 2469            berkeley  california                       doesn't have kids
## 2470            berkeley  california                       doesn't have kids
## 2471             oakland  california                       doesn't have kids
## 2472        walnut creek  california                       doesn't have kids
## 2473       san francisco  california                               has a kid
## 2474       san francisco  california                                    <NA>
## 2475            stanford  california                                    <NA>
## 2476       san francisco  california                       doesn't have kids
## 2477       san francisco  california                                    <NA>
## 2478       pleasant hill  california                                    <NA>
## 2479            berkeley  california                       doesn't have kids
## 2480            berkeley  california                                    <NA>
## 2481       san francisco  california                              wants kids
## 2482       san francisco  california                                    <NA>
## 2483             oakland  california                                    <NA>
## 2484       san francisco  california                       doesn't have kids
## 2485            berkeley  california                                    <NA>
## 2486             oakland  california                                    <NA>
## 2487       san francisco  california                       doesn't have kids
## 2488            berkeley  california                                    <NA>
## 2489             oakland  california                               has a kid
## 2490       san francisco  california                                    <NA>
## 2491       san francisco  california                                    <NA>
## 2492       san francisco  california       doesn't have kids, but wants them
## 2493             oakland  california                                    <NA>
## 2494       san francisco  california                                    <NA>
## 2495       san francisco  california                                    <NA>
## 2496             oakland  california                                    <NA>
## 2497       san francisco  california                                    <NA>
## 2498       san francisco  california  doesn't have kids, but might want them
## 2499            martinez  california                                    <NA>
## 2500            berkeley  california                                    <NA>
## 2501       san francisco  california                                    <NA>
## 2502       san francisco  california                       doesn't have kids
## 2503       san francisco  california                                    <NA>
## 2504             oakland  california                       doesn't want kids
## 2505       pleasant hill  california                                    <NA>
## 2506             vallejo  california                                has kids
## 2507             oakland  california       doesn't have kids, but wants them
## 2508            berkeley  california                                    <NA>
## 2509       san francisco  california                                    <NA>
## 2510       san francisco  california                               has a kid
## 2511           palo alto  california                                    <NA>
## 2512       san francisco  california                       doesn't have kids
## 2513           daly city  california                                    <NA>
## 2514       san francisco  california                                    <NA>
## 2515       san francisco  california                                    <NA>
## 2516       san francisco  california                                    <NA>
## 2517       san francisco  california                       doesn't have kids
## 2518       san francisco  california                                    <NA>
## 2519             oakland  california                                    <NA>
## 2520       san francisco  california                       doesn't have kids
## 2521          menlo park  california                                    <NA>
## 2522       san francisco  california  doesn't have kids, but might want them
## 2523       san francisco  california                                    <NA>
## 2524       san francisco  california                                    <NA>
## 2525             alameda  california                               has a kid
## 2526             oakland  california                                    <NA>
## 2527       san francisco  california                                    <NA>
## 2528           lafayette  california                                    <NA>
## 2529          emeryville  california                                    <NA>
## 2530        walnut creek  california                       doesn't have kids
## 2531       san francisco  california                                    <NA>
## 2532       san francisco  california                               has a kid
## 2533             oakland  california           has kids, and might want more
## 2534             oakland  california                                    <NA>
## 2535       san francisco  california                                    <NA>
## 2536       san francisco  california                                    <NA>
## 2537       san francisco  california                                    <NA>
## 2538             hayward  california                                has kids
## 2539       san francisco  california                                    <NA>
## 2540             oakland  california                                    <NA>
## 2541         san leandro  california         has kids, but doesn't want more
## 2542             oakland  california                                    <NA>
## 2543       san francisco  california                                    <NA>
## 2544             alameda  california                                    <NA>
## 2545       san francisco  california                                    <NA>
## 2546       san francisco  california                                    <NA>
## 2547         mill valley  california                       doesn't have kids
## 2548             oakland  california                       doesn't have kids
## 2549       san francisco  california                                    <NA>
## 2550            berkeley  california                                    <NA>
## 2551       san francisco  california                                    <NA>
## 2552       san francisco  california                       doesn't have kids
## 2553            berkeley  california                                has kids
## 2554       san francisco  california  doesn't have kids, but might want them
## 2555        redwood city  california                       doesn't have kids
## 2556       san francisco  california       doesn't have kids, but wants them
## 2557             oakland  california                       doesn't have kids
## 2558             oakland  california                                    <NA>
## 2559       san francisco  california  doesn't have kids, but might want them
## 2560       mountain view  california                                    <NA>
## 2561            berkeley  california                                    <NA>
## 2562       san francisco  california                       doesn't have kids
## 2563       san francisco  california  doesn't have kids, but might want them
## 2564             oakland  california                       doesn't have kids
## 2565          san carlos  california                                    <NA>
## 2566       san francisco  california                                    <NA>
## 2567       san francisco  california                               has a kid
## 2568           san mateo  california                                    <NA>
## 2569             oakland  california        has a kid, but doesn't want more
## 2570       san francisco  california                                    <NA>
## 2571       san francisco  california                                    <NA>
## 2572       san francisco  california                                    <NA>
## 2573       castro valley  california                                has kids
## 2574             oakland  california                                    <NA>
## 2575       san francisco  california                                    <NA>
## 2576       san francisco  california                                    <NA>
## 2577          san rafael  california                                has kids
## 2578             oakland  california                                    <NA>
## 2579       san francisco  california                                    <NA>
## 2580        redwood city  california                                has kids
## 2581       san francisco  california                                    <NA>
## 2582       san francisco  california                                    <NA>
## 2583       san francisco  california                                    <NA>
## 2584           palo alto  california                                    <NA>
## 2585       san francisco  california                                has kids
## 2586       san francisco  california       doesn't have kids, but wants them
## 2587       half moon bay  california                                    <NA>
## 2588       san francisco  california                       doesn't have kids
## 2589       san francisco  california                                    <NA>
## 2590            berkeley  california                                    <NA>
## 2591             hayward  california                       doesn't have kids
## 2592       san francisco  california                                    <NA>
## 2593       san francisco  california                       doesn't have kids
## 2594             oakland  california                                    <NA>
## 2595       san francisco  california                       doesn't want kids
## 2596        redwood city  california                                    <NA>
## 2597            berkeley  california                                    <NA>
## 2598       san francisco  california                                    <NA>
## 2599       san francisco  california                                    <NA>
## 2600             oakland  california                                    <NA>
## 2601             oakland  california                       doesn't want kids
## 2602            hercules  california                                    <NA>
## 2603       san francisco  california                                    <NA>
## 2604       san francisco  california                                    <NA>
## 2605       san francisco  california                                    <NA>
## 2606       san francisco  california                                    <NA>
## 2607             oakland  california       doesn't have kids, but wants them
## 2608             oakland  california                                    <NA>
## 2609       san francisco  california                       doesn't have kids
## 2610            san jose  california                                    <NA>
## 2611       san francisco  california       doesn't have kids, but wants them
## 2612       san francisco  california                                    <NA>
## 2613          burlingame  california                       doesn't want kids
## 2614             oakland  california                       doesn't want kids
## 2615            richmond  california                                    <NA>
## 2616       san francisco  california                                    <NA>
## 2617           san mateo  california                               has a kid
## 2618       san francisco  california                                    <NA>
## 2619       san francisco  california                                    <NA>
## 2620       san francisco  california                       doesn't want kids
## 2621       san francisco  california                                    <NA>
## 2622       san francisco  california                                    <NA>
## 2623       san francisco  california                                    <NA>
## 2624       san francisco  california                       doesn't have kids
## 2625       san francisco  california                                    <NA>
## 2626            richmond  california                               has a kid
## 2627          san carlos  california                       doesn't have kids
## 2628       san francisco  california                                    <NA>
## 2629              pinole  california                                    <NA>
## 2630       san francisco  california                       doesn't have kids
## 2631       san francisco  california                       doesn't have kids
## 2632       pleasant hill  california                                has kids
## 2633       san francisco  california                       doesn't want kids
## 2634           san bruno  california                                    <NA>
## 2635             oakland  california                                has kids
## 2636       san francisco  california                                    <NA>
## 2637       san francisco  california                                    <NA>
## 2638          san rafael  california       doesn't have kids, but wants them
## 2639           palo alto  california                       doesn't have kids
## 2640             benicia  california                                    <NA>
## 2641             oakland  california                                    <NA>
## 2642           san mateo  california  doesn't have kids, but might want them
## 2643          menlo park  california                       doesn't want kids
## 2644       san francisco  california                       doesn't have kids
## 2645       san francisco  california                                    <NA>
## 2646       san francisco  california                       doesn't want kids
## 2647             oakland  california                                    <NA>
## 2648       san francisco  california                                    <NA>
## 2649       san francisco  california                                    <NA>
## 2650       san francisco  california                       doesn't have kids
## 2651             oakland  california                                    <NA>
## 2652       san francisco  california                                    <NA>
## 2653           daly city  california                       doesn't want kids
## 2654 south san francisco  california                                    <NA>
## 2655       san francisco  california                                    <NA>
## 2656       san francisco  california                                    <NA>
## 2657            berkeley  california                       doesn't have kids
## 2658             oakland  california                                    <NA>
## 2659          burlingame  california                                    <NA>
## 2660          emeryville  california                                    <NA>
## 2661       san francisco  california                       doesn't have kids
## 2662            berkeley  california                               has a kid
## 2663       san francisco  california                       doesn't have kids
## 2664       san francisco  california                       doesn't have kids
## 2665       san francisco  california                                    <NA>
## 2666             oakland  california                                    <NA>
## 2667       san francisco  california                                    <NA>
## 2668            berkeley  california                                    <NA>
## 2669            pacifica  california doesn't have kids, and doesn't want any
## 2670       san francisco  california                                    <NA>
## 2671             oakland  california                                    <NA>
## 2672       san francisco  california                                    <NA>
## 2673            berkeley  california                                    <NA>
## 2674       san francisco  california                                    <NA>
## 2675       san francisco  california                                    <NA>
## 2676       san francisco  california                                    <NA>
## 2677             oakland  california                                    <NA>
## 2678             vallejo  california                                has kids
## 2679       san francisco  california                       doesn't want kids
## 2680             oakland  california                                    <NA>
## 2681       san francisco  california                                    <NA>
## 2682       san francisco  california                                    <NA>
## 2683       san francisco  california                       doesn't have kids
## 2684       san francisco  california                                    <NA>
## 2685             alameda  california                                    <NA>
## 2686             belmont  california                                    <NA>
## 2687       san francisco  california                                    <NA>
## 2688       san francisco  california       doesn't have kids, but wants them
## 2689       san francisco  california                              wants kids
## 2690       san francisco  california                                    <NA>
## 2691       san francisco  california                                    <NA>
## 2692       san francisco  california                                    <NA>
## 2693       san francisco  california       doesn't have kids, but wants them
## 2694       san francisco  california  doesn't have kids, but might want them
## 2695   belvedere tiburon  california                                    <NA>
## 2696              novato  california                       doesn't have kids
## 2697       san francisco  california                       doesn't have kids
## 2698             oakland  california                                    <NA>
## 2699              pinole  california                                    <NA>
## 2700       san francisco  california                                    <NA>
## 2701             oakland  california  doesn't have kids, but might want them
## 2702       san francisco  california                       doesn't have kids
## 2703             oakland  california                       doesn't have kids
## 2704       san francisco  california                                    <NA>
## 2705       san francisco  california                                    <NA>
## 2706             vallejo  california                                    <NA>
## 2707       san francisco  california                                    <NA>
## 2708       san francisco  california                                    <NA>
## 2709       san francisco  california                                    <NA>
## 2710       san francisco  california                                    <NA>
## 2711       san francisco  california                       doesn't have kids
## 2712       san francisco  california                                    <NA>
## 2713           san mateo  california                                has kids
## 2714       san francisco  california                       doesn't have kids
## 2715       san francisco  california  doesn't have kids, but might want them
## 2716            berkeley  california                                    <NA>
## 2717       san francisco  california                                    <NA>
## 2718       san francisco  california                                    <NA>
## 2719   belvedere tiburon  california                       doesn't have kids
## 2720             oakland  california                                    <NA>
## 2721             oakland  california  doesn't have kids, but might want them
## 2722       san francisco  california  doesn't have kids, but might want them
## 2723       san francisco  california                         might want kids
## 2724       san francisco  california  doesn't have kids, but might want them
## 2725       san francisco  california                                    <NA>
## 2726       san francisco  california                       doesn't have kids
## 2727             oakland  california                                    <NA>
## 2728             fairfax  california                               has a kid
## 2729       san francisco  california                                    <NA>
## 2730        redwood city  california                                    <NA>
## 2731       san francisco  california                                    <NA>
## 2732       san francisco  california                       doesn't have kids
## 2733       san francisco  california                                    <NA>
## 2734             oakland  california  doesn't have kids, but might want them
## 2735       san francisco  california                                    <NA>
## 2736       san francisco  california       doesn't have kids, but wants them
## 2737             oakland  california                                    <NA>
## 2738       san francisco  california                                    <NA>
## 2739           san mateo  california                                    <NA>
## 2740       san francisco  california                                    <NA>
## 2741            berkeley  california                                    <NA>
## 2742       san francisco  california                                    <NA>
## 2743             oakland  california       doesn't have kids, but wants them
## 2744           san pablo  california                                    <NA>
## 2745       san francisco  california       doesn't have kids, but wants them
## 2746       san francisco  california                       doesn't have kids
## 2747        walnut creek  california       doesn't have kids, but wants them
## 2748           san mateo  california       doesn't have kids, but wants them
## 2749             oakland  california                                    <NA>
## 2750       san francisco  california                       doesn't have kids
## 2751        corte madera  california                                has kids
## 2752             oakland  california  doesn't have kids, but might want them
## 2753          san carlos  california                       doesn't have kids
## 2754             alameda  california                                    <NA>
## 2755       san francisco  california       doesn't have kids, but wants them
## 2756       san francisco  california                                    <NA>
## 2757       san francisco  california  doesn't have kids, but might want them
## 2758            berkeley  california                                    <NA>
## 2759       san francisco  california                                    <NA>
## 2760       san francisco  california                                    <NA>
## 2761            berkeley  california                                    <NA>
## 2762       san francisco  california                                    <NA>
## 2763       san francisco  california                       doesn't have kids
## 2764         san anselmo  california                       doesn't have kids
## 2765       san francisco  california                                    <NA>
## 2766       san francisco  california                                    <NA>
## 2767       san francisco  california                       doesn't have kids
## 2768           san mateo  california                                    <NA>
## 2769       san francisco  california                                    <NA>
## 2770            berkeley  california                                    <NA>
## 2771           san mateo  california                                    <NA>
## 2772       san francisco  california doesn't have kids, and doesn't want any
## 2773       san francisco  california                                    <NA>
## 2774             oakland  california                                    <NA>
## 2775       san francisco  california       doesn't have kids, but wants them
## 2776           san mateo  california doesn't have kids, and doesn't want any
## 2777       san francisco  california                                    <NA>
## 2778       san francisco  california                       doesn't want kids
## 2779       san francisco  california                                    <NA>
## 2780       san francisco  california                                    <NA>
## 2781          burlingame  california                                    <NA>
## 2782       san francisco  california doesn't have kids, and doesn't want any
## 2783       castro valley  california                                    <NA>
## 2784       san francisco  california                       doesn't want kids
## 2785       san francisco  california                                    <NA>
## 2786       san francisco  california                                    <NA>
## 2787       san francisco  california                                    <NA>
## 2788       san francisco  california                                    <NA>
## 2789       san francisco  california                       doesn't have kids
## 2790       san francisco  california  doesn't have kids, but might want them
## 2791            berkeley  california                       doesn't have kids
## 2792 south san francisco  california                                    <NA>
## 2793 south san francisco  california                       doesn't have kids
## 2794       san francisco  california                                    <NA>
## 2795             oakland  california                       doesn't want kids
## 2796       san francisco  california                                    <NA>
## 2797           san mateo  california                                    <NA>
## 2798       san francisco  california                                    <NA>
## 2799         san leandro  california                       doesn't have kids
## 2800             oakland  california       doesn't have kids, but wants them
## 2801             hayward  california       doesn't have kids, but wants them
## 2802             oakland  california                                    <NA>
## 2803          emeryville  california                                    <NA>
## 2804            berkeley  california                                has kids
## 2805            berkeley  california                                    <NA>
## 2806       san francisco  california                       doesn't have kids
## 2807       san francisco  california                                    <NA>
## 2808       san francisco  california                                    <NA>
## 2809       san francisco  california                                    <NA>
## 2810             oakland  california       doesn't have kids, but wants them
## 2811       san francisco  california                       doesn't want kids
## 2812       san francisco  california                                    <NA>
## 2813 south san francisco  california                                    <NA>
## 2814           daly city  california                                    <NA>
## 2815       san francisco  california                       doesn't have kids
## 2816       san francisco  california                                    <NA>
## 2817       san francisco  california                               has a kid
## 2818       san francisco  california                                    <NA>
## 2819       san francisco  california                                    <NA>
## 2820            new york    new york                                    <NA>
## 2821       san francisco  california                                    <NA>
## 2822       san francisco  california                                has kids
## 2823       san francisco  california doesn't have kids, and doesn't want any
## 2824        corte madera  california                                    <NA>
## 2825        walnut creek  california                                has kids
## 2826       san francisco  california                                    <NA>
## 2827       san francisco  california                                    <NA>
## 2828       san francisco  california                                    <NA>
## 2829           san mateo  california doesn't have kids, and doesn't want any
## 2830       san francisco  california doesn't have kids, and doesn't want any
## 2831       san francisco  california       doesn't have kids, but wants them
## 2832       san francisco  california                                    <NA>
## 2833       san francisco  california                                    <NA>
## 2834           palo alto  california       doesn't have kids, but wants them
## 2835       san francisco  california                                    <NA>
## 2836       san francisco  california                                    <NA>
## 2837             oakland  california                       doesn't want kids
## 2838       san francisco  california                       doesn't have kids
## 2839       san francisco  california                       doesn't want kids
## 2840              pinole  california                       doesn't have kids
## 2841             oakland  california         has kids, but doesn't want more
## 2842          el cerrito  california  doesn't have kids, but might want them
## 2843         san anselmo  california                       doesn't want kids
## 2844            berkeley  california                                    <NA>
## 2845       san francisco  california                                    <NA>
## 2846             oakland  california doesn't have kids, and doesn't want any
## 2847       san francisco  california                                    <NA>
## 2848       san francisco  california  doesn't have kids, but might want them
## 2849            pacifica  california                                has kids
## 2850       half moon bay  california                               has a kid
## 2851           palo alto  california       doesn't have kids, but wants them
## 2852       san francisco  california                                    <NA>
## 2853             oakland  california                                has kids
## 2854            berkeley  california                       doesn't have kids
## 2855        walnut creek  california                                    <NA>
## 2856       san francisco  california               has a kid, and wants more
## 2857       san francisco  california                                    <NA>
## 2858             vallejo  california                               has a kid
## 2859       san francisco  california                                    <NA>
## 2860           palo alto  california                                    <NA>
## 2861           lafayette  california                                    <NA>
## 2862       pleasant hill  california                                    <NA>
## 2863       san francisco  california                              wants kids
## 2864            berkeley  california                                    <NA>
## 2865             oakland  california                                    <NA>
## 2866        redwood city  california                               has a kid
## 2867       san francisco  california                                    <NA>
## 2868             oakland  california                       doesn't want kids
## 2869       san francisco  california                                    <NA>
## 2870       san francisco  california                       doesn't have kids
## 2871       san francisco  california                                    <NA>
## 2872       san francisco  california                                    <NA>
## 2873       san francisco  california       doesn't have kids, but wants them
## 2874       san francisco  california doesn't have kids, and doesn't want any
## 2875              moraga  california                       doesn't want kids
## 2876       san francisco  california                       doesn't have kids
## 2877       san francisco  california                       doesn't have kids
## 2878       san francisco  california                                    <NA>
## 2879       san francisco  california                                    <NA>
## 2880             belmont  california                                has kids
## 2881       san francisco  california                                    <NA>
## 2882       san francisco  california       doesn't have kids, but wants them
## 2883       san francisco  california                                    <NA>
## 2884       san francisco  california                                    <NA>
## 2885       san francisco  california                       doesn't have kids
## 2886          el cerrito  california                                    <NA>
## 2887            berkeley  california                                    <NA>
## 2888              albany  california                               has a kid
## 2889       san francisco  california                                has kids
## 2890             oakland  california  doesn't have kids, but might want them
## 2891         mill valley  california                                    <NA>
## 2892       san francisco  california  doesn't have kids, but might want them
## 2893       san francisco  california                       doesn't have kids
## 2894            larkspur  california                                    <NA>
## 2895       san francisco  california                                    <NA>
## 2896       san francisco  california  doesn't have kids, but might want them
## 2897           daly city  california                                    <NA>
## 2898       san francisco  california                                    <NA>
## 2899       san francisco  california                                    <NA>
## 2900        redwood city  california       doesn't have kids, but wants them
## 2901             benicia  california  doesn't have kids, but might want them
## 2902             fairfax  california                               has a kid
## 2903       san francisco  california                                    <NA>
## 2904       san francisco  california                                    <NA>
## 2905       san francisco  california                                    <NA>
## 2906             oakland  california                       doesn't want kids
## 2907       san francisco  california       doesn't have kids, but wants them
## 2908       san francisco  california                       doesn't have kids
## 2909            berkeley  california                       doesn't have kids
## 2910           palo alto  california                                    <NA>
## 2911       san francisco  california                                    <NA>
## 2912           palo alto  california                                    <NA>
## 2913             oakland  california                                    <NA>
## 2914       san francisco  california                                    <NA>
## 2915          el cerrito  california                       doesn't have kids
## 2916             benicia  california                                    <NA>
## 2917             hayward  california doesn't have kids, and doesn't want any
## 2918       san francisco  california                                    <NA>
## 2919          el cerrito  california                                    <NA>
## 2920       san francisco  california                                    <NA>
## 2921             oakland  california  doesn't have kids, but might want them
## 2922       san francisco  california                                    <NA>
## 2923           san mateo  california                                    <NA>
## 2924             oakland  california                                    <NA>
## 2925            berkeley  california       doesn't have kids, but wants them
## 2926              novato  california                                    <NA>
## 2927       san francisco  california                         might want kids
## 2928          emeryville  california                                    <NA>
## 2929             oakland  california                                    <NA>
## 2930       san francisco  california                                    <NA>
## 2931             oakland  california                                    <NA>
## 2932       san francisco  california                                    <NA>
## 2933       san francisco  california                                    <NA>
## 2934       san francisco  california                       doesn't have kids
## 2935       san francisco  california                                    <NA>
## 2936       san francisco  california                                    <NA>
## 2937            richmond  california                                    <NA>
## 2938            berkeley  california                                    <NA>
## 2939             alameda  california                                    <NA>
## 2940       san francisco  california                                    <NA>
## 2941       san francisco  california                       doesn't want kids
## 2942       castro valley  california  doesn't have kids, but might want them
## 2943       san francisco  california                                    <NA>
## 2944          menlo park  california                                has kids
## 2945            berkeley  california       doesn't have kids, but wants them
## 2946         san anselmo  california                               has a kid
## 2947            berkeley  california                       doesn't have kids
## 2948             oakland  california                                    <NA>
## 2949       san francisco  california       doesn't have kids, but wants them
## 2950       san francisco  california                                    <NA>
## 2951       san francisco  california                       doesn't have kids
## 2952       san francisco  california                       doesn't have kids
## 2953            richmond  california                       doesn't have kids
## 2954       san francisco  california                       doesn't have kids
## 2955       san francisco  california                                    <NA>
## 2956            berkeley  california                       doesn't have kids
## 2957       san francisco  california                       doesn't have kids
## 2958          san rafael  california                                    <NA>
## 2959             oakland  california                               has a kid
## 2960             oakland  california                                    <NA>
## 2961       san francisco  california                       doesn't have kids
## 2962             hayward  california                                    <NA>
## 2963           palo alto  california                       doesn't want kids
## 2964       san francisco  california                                    <NA>
## 2965       san francisco  california                       doesn't want kids
## 2966             hayward  california doesn't have kids, and doesn't want any
## 2967            richmond  california                                    <NA>
## 2968             vallejo  california         has kids, but doesn't want more
## 2969             oakland  california                                    <NA>
## 2970             oakland  california                       doesn't have kids
## 2971       san francisco  california       doesn't have kids, but wants them
## 2972            berkeley  california  doesn't have kids, but might want them
## 2973       san francisco  california                                    <NA>
## 2974            berkeley  california                                    <NA>
## 2975       san francisco  california                                    <NA>
## 2976          green brae  california                                    <NA>
## 2977          el cerrito  california                                    <NA>
## 2978       san francisco  california                                    <NA>
## 2979            atherton  california  doesn't have kids, but might want them
## 2980          emeryville  california                       doesn't have kids
## 2981       san francisco  california                                    <NA>
## 2982       san francisco  california                                    <NA>
## 2983       san francisco  california                                    <NA>
## 2984             oakland  california                       doesn't have kids
## 2985             oakland  california                       doesn't have kids
## 2986       san francisco  california                                    <NA>
## 2987             oakland  california                                    <NA>
## 2988             alameda  california                                    <NA>
## 2989       san francisco  california                                    <NA>
## 2990       san francisco  california                       doesn't have kids
## 2991            berkeley  california                                    <NA>
## 2992            martinez  california                       doesn't have kids
## 2993           palo alto  california                                    <NA>
## 2994       san francisco  california                                    <NA>
## 2995       san francisco  california                       doesn't have kids
## 2996        corte madera  california                         might want kids
## 2997            berkeley  california                                    <NA>
## 2998       san francisco  california                                    <NA>
## 2999       san francisco  california                       doesn't have kids
## 3000       san francisco  california                                    <NA>
## 3001       san francisco  california                                    <NA>
## 3002       san francisco  california                                    <NA>
## 3003       san francisco  california                       doesn't have kids
## 3004            berkeley  california                                    <NA>
## 3005       san francisco  california                                    <NA>
## 3006            stanford  california                                    <NA>
## 3007       san francisco  california                                    <NA>
## 3008       san francisco  california       doesn't have kids, but wants them
## 3009       san francisco  california                                    <NA>
## 3010       san francisco  california                                    <NA>
## 3011       san francisco  california                                    <NA>
## 3012       san francisco  california                               has a kid
## 3013            berkeley  california                              wants kids
## 3014       san francisco  california  doesn't have kids, but might want them
## 3015                ross  california                                    <NA>
## 3016          el cerrito  california                                    <NA>
## 3017       san francisco  california                                    <NA>
## 3018             alameda  california                               has a kid
## 3019             hayward  california                                    <NA>
## 3020       san francisco  california                                    <NA>
## 3021       san francisco  california                                    <NA>
## 3022       san francisco  california                                    <NA>
## 3023       san francisco  california                                    <NA>
## 3024       san francisco  california                                    <NA>
## 3025             alameda  california                                    <NA>
## 3026             oakland  california                                    <NA>
## 3027       san francisco  california doesn't have kids, and doesn't want any
## 3028       san francisco  california                                    <NA>
## 3029       san francisco  california                                    <NA>
## 3030       san francisco  california                                    <NA>
## 3031       san francisco  california                                    <NA>
## 3032       san francisco  california                                    <NA>
## 3033       san francisco  california                       doesn't have kids
## 3034       san francisco  california       doesn't have kids, but wants them
## 3035            berkeley  california                                    <NA>
## 3036       san francisco  california        has a kid, but doesn't want more
## 3037          menlo park  california                       doesn't have kids
## 3038       san francisco  california                       doesn't have kids
## 3039            berkeley  california                                has kids
## 3040             oakland  california                       doesn't have kids
## 3041       san francisco  california                       doesn't have kids
## 3042             oakland  california                       doesn't have kids
## 3043       san francisco  california                                    <NA>
## 3044       san francisco  california                                has kids
## 3045            berkeley  california                                has kids
## 3046       san francisco  california                                    <NA>
## 3047       san francisco  california                                    <NA>
## 3048       san francisco  california                                    <NA>
## 3049           daly city  california                                    <NA>
## 3050            berkeley  california                       doesn't have kids
## 3051       san francisco  california                                    <NA>
## 3052       san francisco  california                       doesn't want kids
## 3053       san francisco  california  doesn't have kids, but might want them
## 3054       san francisco  california                                    <NA>
## 3055       san francisco  california                       doesn't have kids
## 3056       san francisco  california       doesn't have kids, but wants them
## 3057             hayward  california                                    <NA>
## 3058            berkeley  california                                    <NA>
## 3059            richmond  california                                    <NA>
## 3060            berkeley  california                                    <NA>
## 3061       san francisco  california                                    <NA>
## 3062       san francisco  california                                    <NA>
## 3063          emeryville  california  doesn't have kids, but might want them
## 3064       san francisco  california  doesn't have kids, but might want them
## 3065       san francisco  california                                    <NA>
## 3066            stanford  california                                    <NA>
## 3067       san francisco  california                                    <NA>
## 3068       san francisco  california                                    <NA>
## 3069          emeryville  california                       doesn't have kids
## 3070             vallejo  california           has kids, and might want more
## 3071       san francisco  california                                    <NA>
## 3072       san francisco  california                       doesn't have kids
## 3073             oakland  california                                    <NA>
## 3074             oakland  california                                    <NA>
## 3075       san francisco  california                                    <NA>
## 3076       san francisco  california                       doesn't have kids
## 3077       san francisco  california                                    <NA>
## 3078       san francisco  california  doesn't have kids, but might want them
## 3079             oakland  california                                    <NA>
## 3080       mountain view  california                                    <NA>
## 3081            richmond  california                                    <NA>
## 3082             oakland  california  doesn't have kids, but might want them
## 3083             oakland  california                                    <NA>
## 3084       san francisco  california                                    <NA>
## 3085       san francisco  california                                    <NA>
## 3086             oakland  california                                    <NA>
## 3087       san francisco  california       doesn't have kids, but wants them
## 3088       san francisco  california                       doesn't have kids
## 3089          el cerrito  california                                has kids
## 3090       san francisco  california                                    <NA>
## 3091             oakland  california                       doesn't want kids
## 3092           san pablo  california       doesn't have kids, but wants them
## 3093       san francisco  california                                    <NA>
## 3094           san mateo  california                                    <NA>
## 3095       san francisco  california                                    <NA>
## 3096            berkeley  california                                    <NA>
## 3097             oakland  california                                    <NA>
## 3098            berkeley  california                       doesn't want kids
## 3099             oakland  california                                    <NA>
## 3100           san mateo  california                                    <NA>
## 3101          menlo park  california                       doesn't have kids
## 3102          menlo park  california                       doesn't want kids
## 3103 south san francisco  california                       doesn't have kids
## 3104       san francisco  california                                    <NA>
## 3105       san francisco  california       doesn't have kids, but wants them
## 3106       san francisco  california                                    <NA>
## 3107       san francisco  california       doesn't have kids, but wants them
## 3108       san francisco  california       doesn't have kids, but wants them
## 3109             oakland  california                               has a kid
## 3110       san francisco  california                                    <NA>
## 3111             oakland  california                                    <NA>
## 3112       san francisco  california                                    <NA>
## 3113       san francisco  california  doesn't have kids, but might want them
## 3114        walnut creek  california       doesn't have kids, but wants them
## 3115       san francisco  california                       doesn't have kids
## 3116         mill valley  california                                    <NA>
## 3117          san rafael  california                                    <NA>
## 3118       san francisco  california                       doesn't want kids
## 3119           daly city  california                       doesn't have kids
## 3120       san francisco  california                                    <NA>
## 3121       san francisco  california                                    <NA>
## 3122       san francisco  california                       doesn't have kids
## 3123       san francisco  california       doesn't have kids, but wants them
## 3124           palo alto  california                       doesn't have kids
## 3125             oakland  california                                    <NA>
## 3126       san francisco  california       doesn't have kids, but wants them
## 3127         san leandro  california                                    <NA>
## 3128            berkeley  california                                    <NA>
## 3129         san leandro  california                       doesn't have kids
## 3130           san mateo  california                                    <NA>
## 3131       san francisco  california                                    <NA>
## 3132       san francisco  california                                    <NA>
## 3133       san francisco  california                       doesn't have kids
## 3134              albany  california                               has a kid
## 3135             oakland  california                                    <NA>
## 3136             oakland  california                                    <NA>
## 3137       san francisco  california                                    <NA>
## 3138            berkeley  california                       doesn't have kids
## 3139       san francisco  california  doesn't have kids, but might want them
## 3140       san francisco  california                       doesn't have kids
## 3141          san rafael  california                                    <NA>
## 3142          green brae  california                       doesn't have kids
## 3143             oakland  california                                    <NA>
## 3144       san francisco  california                                    <NA>
## 3145       san francisco  california                                    <NA>
## 3146       san francisco  california                       doesn't have kids
## 3147       san francisco  california  doesn't have kids, but might want them
## 3148       san francisco  california                       doesn't have kids
## 3149           sausalito  california                                    <NA>
## 3150             oakland  california                                    <NA>
## 3151          burlingame  california                                    <NA>
## 3152       san francisco  california                                    <NA>
## 3153       san francisco  california                                    <NA>
## 3154             alameda  california                       doesn't have kids
## 3155             oakland  california                                    <NA>
## 3156       san francisco  california                                    <NA>
## 3157       san francisco  california                       doesn't have kids
## 3158       san francisco  california                       doesn't have kids
## 3159       san francisco  california                                    <NA>
## 3160        walnut creek  california                       doesn't have kids
## 3161       san francisco  california  doesn't have kids, but might want them
## 3162       san francisco  california       doesn't have kids, but wants them
## 3163           sausalito  california                                    <NA>
## 3164       san francisco  california                                    <NA>
## 3165             oakland  california  doesn't have kids, but might want them
## 3166       san francisco  california                                    <NA>
## 3167       san francisco  california                                    <NA>
## 3168       san francisco  california                                    <NA>
## 3169       san francisco  california  doesn't have kids, but might want them
## 3170             oakland  california       doesn't have kids, but wants them
## 3171       san francisco  california                       doesn't have kids
## 3172       san francisco  california                                    <NA>
## 3173              albany  california                                    <NA>
## 3174       san francisco  california                                    <NA>
## 3175             oakland  california                                    <NA>
## 3176         mill valley  california                                    <NA>
## 3177             oakland  california                                    <NA>
## 3178       san francisco  california                                    <NA>
## 3179       san francisco  california doesn't have kids, and doesn't want any
## 3180           daly city  california                                    <NA>
## 3181          san rafael  california                                    <NA>
## 3182       san francisco  california                       doesn't have kids
## 3183        redwood city  california doesn't have kids, and doesn't want any
## 3184       san francisco  california                                    <NA>
## 3185        redwood city  california                                    <NA>
## 3186       san francisco  california                                    <NA>
## 3187          burlingame  california                                    <NA>
## 3188       san francisco  california                       doesn't want kids
## 3189        redwood city  california                                    <NA>
## 3190              moraga  california                                has kids
## 3191       san francisco  california       doesn't have kids, but wants them
## 3192       san francisco  california       doesn't have kids, but wants them
## 3193             oakland  california                                    <NA>
## 3194            berkeley  california                                    <NA>
## 3195             vallejo  california                                    <NA>
## 3196       san francisco  california                               has a kid
## 3197       san francisco  california                       doesn't have kids
## 3198       san francisco  california       doesn't have kids, but wants them
## 3199          green brae  california doesn't have kids, and doesn't want any
## 3200             oakland  california                                    <NA>
## 3201       san francisco  california  doesn't have kids, but might want them
## 3202             oakland  california                                    <NA>
## 3203       san francisco  california                                    <NA>
## 3204       san francisco  california                                    <NA>
## 3205            berkeley  california                                    <NA>
## 3206           sausalito  california                                    <NA>
## 3207       san francisco  california                                    <NA>
## 3208       san francisco  california                                    <NA>
## 3209            pacifica  california                               has a kid
## 3210          san rafael  california doesn't have kids, and doesn't want any
## 3211       san francisco  california                                    <NA>
## 3212       san francisco  california                       doesn't have kids
## 3213            berkeley  california                       doesn't have kids
## 3214             oakland  california                               has a kid
## 3215       san francisco  california       doesn't have kids, but wants them
## 3216       san francisco  california                                    <NA>
## 3217            berkeley  california                               has a kid
## 3218       san francisco  california                       doesn't have kids
## 3219       san francisco  california                                    <NA>
## 3220       san francisco  california                       doesn't have kids
## 3221             hayward  california  doesn't have kids, but might want them
## 3222             vallejo  california                                    <NA>
## 3223              novato  california  doesn't have kids, but might want them
## 3224             oakland  california                       doesn't want kids
## 3225       san francisco  california       doesn't have kids, but wants them
## 3226       san francisco  california                                    <NA>
## 3227        walnut creek  california                       doesn't have kids
## 3228       san francisco  california                                    <NA>
## 3229       san francisco  california                                    <NA>
## 3230             oakland  california                                    <NA>
## 3231       san francisco  california                       doesn't have kids
## 3232       san francisco  california                                    <NA>
## 3233            berkeley  california                               has a kid
## 3234          burlingame  california                              wants kids
## 3235       san francisco  california                                    <NA>
## 3236       san francisco  california                                    <NA>
## 3237          el cerrito  california                       doesn't have kids
## 3238       san francisco  california                                    <NA>
## 3239          emeryville  california                                    <NA>
## 3240             oakland  california       doesn't have kids, but wants them
## 3241       san francisco  california doesn't have kids, and doesn't want any
## 3242         san leandro  california                                    <NA>
## 3243          san rafael  california                                has kids
## 3244             vallejo  california                                    <NA>
## 3245            berkeley  california  doesn't have kids, but might want them
## 3246       san francisco  california                                    <NA>
## 3247             hayward  california       doesn't have kids, but wants them
## 3248             oakland  california                                    <NA>
## 3249       san francisco  california                                    <NA>
## 3250           palo alto  california doesn't have kids, and doesn't want any
## 3251       san francisco  california                                    <NA>
## 3252              orinda  california                                    <NA>
## 3253       san francisco  california                                    <NA>
## 3254           san mateo  california                               has a kid
## 3255       san francisco  california                                    <NA>
## 3256       san francisco  california                                    <NA>
## 3257            berkeley  california                                    <NA>
## 3258       san francisco  california                       doesn't have kids
## 3259             alameda  california                                    <NA>
## 3260       san francisco  california                                    <NA>
## 3261            berkeley  california                                    <NA>
## 3262            berkeley  california                                    <NA>
## 3263       san francisco  california                       doesn't have kids
## 3264       san francisco  california                                    <NA>
## 3265       san francisco  california                                    <NA>
## 3266       san francisco  california                                    <NA>
## 3267            berkeley  california                                    <NA>
## 3268            berkeley  california                                    <NA>
## 3269       san francisco  california                                    <NA>
## 3270            berkeley  california                                    <NA>
## 3271       san francisco  california                                    <NA>
## 3272       san francisco  california                                    <NA>
## 3273       san francisco  california                                    <NA>
## 3274      east palo alto  california                                    <NA>
## 3275            berkeley  california                       doesn't have kids
## 3276             oakland  california                                    <NA>
## 3277        redwood city  california                       doesn't have kids
## 3278       san francisco  california                                    <NA>
## 3279       san francisco  california  doesn't have kids, but might want them
## 3280           palo alto  california                                    <NA>
## 3281       san francisco  california                       doesn't have kids
## 3282       san francisco  california                       doesn't have kids
## 3283             oakland  california                                    <NA>
## 3284       san francisco  california                                    <NA>
## 3285       san francisco  california                                    <NA>
## 3286       san francisco  california                                    <NA>
## 3287       san francisco  california                                    <NA>
## 3288       san francisco  california                                    <NA>
## 3289             oakland  california                       doesn't have kids
## 3290       san francisco  california                                    <NA>
## 3291             hayward  california                       doesn't have kids
## 3292          menlo park  california                       doesn't have kids
## 3293       san francisco  california                                    <NA>
## 3294       san francisco  california                                    <NA>
## 3295       san francisco  california                                    <NA>
## 3296            martinez  california                               has a kid
## 3297       san francisco  california                                    <NA>
## 3298       san francisco  california                                    <NA>
## 3299 south san francisco  california                                    <NA>
## 3300       mountain view  california                                    <NA>
## 3301            pacifica  california                       doesn't have kids
## 3302       castro valley  california                                    <NA>
## 3303       san francisco  california                                    <NA>
## 3304             oakland  california                                    <NA>
## 3305       san francisco  california                       doesn't have kids
## 3306         san quentin  california                                    <NA>
## 3307            berkeley  california                       doesn't have kids
## 3308       san francisco  california                                    <NA>
## 3309       san francisco  california                       doesn't want kids
## 3310          emeryville  california                       doesn't have kids
## 3311         el sobrante  california  doesn't have kids, but might want them
## 3312            richmond  california                       doesn't have kids
## 3313             oakland  california                                    <NA>
## 3314       san francisco  california                                    <NA>
## 3315          san rafael  california                                    <NA>
## 3316       pleasant hill  california                                    <NA>
## 3317       san francisco  california                                    <NA>
## 3318             oakland  california                                    <NA>
## 3319             oakland  california  doesn't have kids, but might want them
## 3320            berkeley  california                                    <NA>
## 3321       san francisco  california                                    <NA>
## 3322            pacifica  california                                    <NA>
## 3323       san francisco  california                                    <NA>
## 3324       san francisco  california                                    <NA>
## 3325       san francisco  california                                    <NA>
## 3326       san francisco  california                                    <NA>
## 3327       san francisco  california                                    <NA>
## 3328          san carlos  california                                    <NA>
## 3329             alameda  california                               has a kid
## 3330          menlo park  california                                    <NA>
## 3331          san carlos  california                                    <NA>
## 3332             alameda  california                                    <NA>
## 3333       san francisco  california                                    <NA>
## 3334       san francisco  california                                    <NA>
## 3335             oakland  california                                    <NA>
## 3336       san francisco  california                       doesn't have kids
## 3337             oakland  california                                    <NA>
## 3338           palo alto  california                                    <NA>
## 3339       san francisco  california                                    <NA>
## 3340            hercules  california                       doesn't have kids
## 3341        walnut creek  california                                    <NA>
## 3342       san francisco  california                       doesn't have kids
## 3343       san francisco  california                                    <NA>
## 3344          san rafael  california                                    <NA>
## 3345       san francisco  california                                    <NA>
## 3346             oakland  california                                    <NA>
## 3347           palo alto  california                       doesn't want kids
## 3348       san francisco  california                                    <NA>
## 3349       san francisco  california                                    <NA>
## 3350             oakland  california                       doesn't want kids
## 3351       san francisco  california                                    <NA>
## 3352       san francisco  california                                    <NA>
## 3353              albany  california                                    <NA>
## 3354       pleasant hill  california                                    <NA>
## 3355       san francisco  california                                    <NA>
## 3356           san bruno  california                       doesn't have kids
## 3357       san francisco  california                                    <NA>
## 3358           san mateo  california                               has a kid
## 3359           palo alto  california                                    <NA>
## 3360       san francisco  california                                    <NA>
## 3361       san francisco  california                                    <NA>
## 3362       san francisco  california                                    <NA>
## 3363       san francisco  california                                    <NA>
## 3364       san francisco  california                                    <NA>
## 3365       san francisco  california                                    <NA>
## 3366       san francisco  california                                    <NA>
## 3367            stanford  california                                    <NA>
## 3368       san francisco  california                                    <NA>
## 3369       san francisco  california                       doesn't have kids
## 3370       san francisco  california                                    <NA>
## 3371             belmont  california                       doesn't have kids
## 3372       san francisco  california                                    <NA>
## 3373       san francisco  california                                    <NA>
## 3374       san francisco  california       doesn't have kids, but wants them
## 3375            berkeley  california  doesn't have kids, but might want them
## 3376        redwood city  california                                    <NA>
## 3377       san francisco  california                                    <NA>
## 3378             oakland  california                                    <NA>
## 3379       san francisco  california                                    <NA>
## 3380             oakland  california                                    <NA>
## 3381       san francisco  california  doesn't have kids, but might want them
## 3382       san francisco  california                       doesn't have kids
## 3383       san francisco  california                                    <NA>
## 3384         mill valley  california                                has kids
## 3385       san francisco  california doesn't have kids, and doesn't want any
## 3386            stanford  california                       doesn't have kids
## 3387        corte madera  california                                    <NA>
## 3388             oakland  california                                    <NA>
## 3389       san francisco  california                                    <NA>
## 3390       san francisco  california  doesn't have kids, but might want them
## 3391              pinole  california                                    <NA>
## 3392       san francisco  california                       doesn't want kids
## 3393       san francisco  california                                    <NA>
## 3394            berkeley  california                                    <NA>
## 3395             oakland  california                                    <NA>
## 3396           palo alto  california       doesn't have kids, but wants them
## 3397            berkeley  california                                    <NA>
## 3398       san francisco  california                                    <NA>
## 3399       san francisco  california                                    <NA>
## 3400             oakland  california                                    <NA>
## 3401       san francisco  california                                    <NA>
## 3402       san francisco  california                       doesn't want kids
## 3403             oakland  california  doesn't have kids, but might want them
## 3404       san francisco  california                       doesn't have kids
## 3405       san francisco  california                                    <NA>
## 3406             oakland  california                                    <NA>
## 3407             hayward  california                       doesn't have kids
## 3408            berkeley  california                                    <NA>
## 3409       san francisco  california                                    <NA>
## 3410            berkeley  california                                    <NA>
## 3411       san francisco  california                                    <NA>
## 3412            berkeley  california                                    <NA>
## 3413           san mateo  california                       doesn't have kids
## 3414       san francisco  california                                    <NA>
## 3415             oakland  california                                has kids
## 3416       san francisco  california       doesn't have kids, but wants them
## 3417            stanford  california                                    <NA>
## 3418             alameda  california                                    <NA>
## 3419             fairfax  california                                    <NA>
## 3420             oakland  california                               has a kid
## 3421          san rafael  california                                has kids
## 3422       san francisco  california                                    <NA>
## 3423           palo alto  california                                    <NA>
## 3424       san francisco  california  doesn't have kids, but might want them
## 3425       san francisco  california                                    <NA>
## 3426             oakland  california                                    <NA>
## 3427       san francisco  california                                    <NA>
## 3428       san francisco  california                                    <NA>
## 3429       san francisco  california  doesn't have kids, but might want them
## 3430       san francisco  california                                    <NA>
## 3431       san francisco  california                                    <NA>
## 3432             oakland  california                       doesn't have kids
## 3433            berkeley  california                       doesn't have kids
## 3434          emeryville  california                                    <NA>
## 3435          san rafael  california doesn't have kids, and doesn't want any
## 3436       san francisco  california                                    <NA>
## 3437             oakland  california                                    <NA>
## 3438           daly city  california  doesn't have kids, but might want them
## 3439       san francisco  california                                    <NA>
## 3440             oakland  california                                    <NA>
## 3441             alameda  california                                    <NA>
## 3442             oakland  california                       doesn't have kids
## 3443           daly city  california                                    <NA>
## 3444        redwood city  california                       doesn't have kids
## 3445          menlo park  california                               has a kid
## 3446          burlingame  california                                    <NA>
## 3447             oakland  california                                    <NA>
## 3448       san francisco  california  doesn't have kids, but might want them
## 3449       san francisco  california                                    <NA>
## 3450           san mateo  california                                    <NA>
## 3451             alameda  california                                    <NA>
## 3452       san francisco  california                                    <NA>
## 3453       san francisco  california                       doesn't have kids
## 3454          burlingame  california                                    <NA>
## 3455             belmont  california                       doesn't have kids
## 3456 south san francisco  california                                    <NA>
## 3457       san francisco  california                                    <NA>
## 3458       san francisco  california       doesn't have kids, but wants them
## 3459             oakland  california                                    <NA>
## 3460       san francisco  california                       doesn't have kids
## 3461       san francisco  california                                    <NA>
## 3462       san francisco  california doesn't have kids, and doesn't want any
## 3463       san francisco  california                                    <NA>
## 3464           daly city  california                                    <NA>
## 3465          green brae  california doesn't have kids, and doesn't want any
## 3466            pacifica  california                               has a kid
## 3467        walnut creek  california                                has kids
## 3468           san bruno  california  doesn't have kids, but might want them
## 3469       san francisco  california  doesn't have kids, but might want them
## 3470       san francisco  california                               has a kid
## 3471       castro valley  california                has kids, and wants more
## 3472         san anselmo  california                                    <NA>
## 3473            atherton  california                                    <NA>
## 3474       san francisco  california                                    <NA>
## 3475         san leandro  california                                    <NA>
## 3476       san francisco  california                                    <NA>
## 3477           san mateo  california                                    <NA>
## 3478             alameda  california                                    <NA>
## 3479       san francisco  california                                    <NA>
## 3480        redwood city  california                       doesn't want kids
## 3481             fairfax  california  doesn't have kids, but might want them
## 3482           san mateo  california                                    <NA>
## 3483           daly city  california                                    <NA>
## 3484       san francisco  california                                    <NA>
## 3485       san francisco  california                                    <NA>
## 3486       san francisco  california                       doesn't have kids
## 3487       san francisco  california                                    <NA>
## 3488             hayward  california           has kids, and might want more
## 3489       san francisco  california                                    <NA>
## 3490             oakland  california                                    <NA>
## 3491       san francisco  california                                    <NA>
## 3492             oakland  california                                    <NA>
## 3493 south san francisco  california                                    <NA>
## 3494       san francisco  california                                    <NA>
## 3495       san francisco  california                                    <NA>
## 3496       san francisco  california                       doesn't have kids
## 3497             oakland  california                                    <NA>
## 3498              pinole  california          has a kid, and might want more
## 3499       pleasant hill  california                                    <NA>
## 3500       san francisco  california                                    <NA>
## 3501       san francisco  california       doesn't have kids, but wants them
## 3502           san mateo  california                                    <NA>
## 3503       san francisco  california                                    <NA>
## 3504       san francisco  california                                    <NA>
## 3505        redwood city  california  doesn't have kids, but might want them
## 3506       san francisco  california                                    <NA>
## 3507       san francisco  california                                    <NA>
## 3508            berkeley  california                               has a kid
## 3509       san francisco  california                                    <NA>
## 3510       san francisco  california       doesn't have kids, but wants them
## 3511             hayward  california       doesn't have kids, but wants them
## 3512             alameda  california                                    <NA>
## 3513       san francisco  california         has kids, but doesn't want more
## 3514       san francisco  california                                    <NA>
## 3515          burlingame  california                                    <NA>
## 3516            berkeley  california                                    <NA>
## 3517        redwood city  california                       doesn't have kids
## 3518             oakland  california                         might want kids
## 3519           san bruno  california                                    <NA>
## 3520             vallejo  california                                    <NA>
## 3521       san francisco  california                                    <NA>
## 3522            berkeley  california                                    <NA>
## 3523       san francisco  california                       doesn't want kids
## 3524       san francisco  california                                    <NA>
## 3525             alameda  california  doesn't have kids, but might want them
## 3526       san francisco  california                                    <NA>
## 3527       san francisco  california       doesn't have kids, but wants them
## 3528       san francisco  california  doesn't have kids, but might want them
## 3529       san francisco  california                                    <NA>
## 3530          emeryville  california                                    <NA>
## 3531       san francisco  california       doesn't have kids, but wants them
## 3532             fremont  california                                    <NA>
## 3533       san francisco  california                                    <NA>
## 3534       san francisco  california                                    <NA>
## 3535       san francisco  california                                    <NA>
## 3536       san francisco  california                                    <NA>
## 3537             hayward  california  doesn't have kids, but might want them
## 3538       san francisco  california                                    <NA>
## 3539        walnut creek  california                                    <NA>
## 3540            berkeley  california                                    <NA>
## 3541       castro valley  california                                    <NA>
## 3542       mountain view  california                       doesn't have kids
## 3543             alameda  california  doesn't have kids, but might want them
## 3544       san francisco  california                       doesn't want kids
## 3545             oakland  california                                    <NA>
## 3546       san francisco  california                       doesn't want kids
## 3547          burlingame  california                                    <NA>
## 3548             oakland  california  doesn't have kids, but might want them
## 3549           san mateo  california                                    <NA>
## 3550       san francisco  california                                    <NA>
## 3551             oakland  california  doesn't have kids, but might want them
## 3552       san francisco  california                       doesn't have kids
## 3553       san francisco  california                       doesn't have kids
## 3554       san francisco  california                                    <NA>
## 3555       san francisco  california                                    <NA>
## 3556       san francisco  california                                    <NA>
## 3557       san francisco  california                                    <NA>
## 3558       san francisco  california                                    <NA>
## 3559       san francisco  california                       doesn't have kids
## 3560             oakland  california                                    <NA>
## 3561            stanford  california                       doesn't have kids
## 3562       san francisco  california  doesn't have kids, but might want them
## 3563             oakland  california       doesn't have kids, but wants them
## 3564       san francisco  california                       doesn't have kids
## 3565             oakland  california                                    <NA>
## 3566       san francisco  california                                    <NA>
## 3567          san rafael  california       doesn't have kids, but wants them
## 3568         san anselmo  california                                has kids
## 3569           palo alto  california                                    <NA>
## 3570            richmond  california                                    <NA>
## 3571       san francisco  california                                    <NA>
## 3572       san francisco  california  doesn't have kids, but might want them
## 3573             alameda  california                       doesn't have kids
## 3574           lafayette  california                               has a kid
## 3575             hayward  california       doesn't have kids, but wants them
## 3576       san francisco  california         has kids, but doesn't want more
## 3577       san francisco  california                                    <NA>
## 3578         mill valley  california         has kids, but doesn't want more
## 3579       san francisco  california                                    <NA>
## 3580             oakland  california  doesn't have kids, but might want them
## 3581       san francisco  california                                    <NA>
## 3582       san francisco  california                       doesn't have kids
## 3583       san francisco  california                                    <NA>
## 3584       san francisco  california  doesn't have kids, but might want them
## 3585            martinez  california                       doesn't have kids
## 3586             oakland  california       doesn't have kids, but wants them
## 3587          burlingame  california                                    <NA>
## 3588             oakland  california                                    <NA>
## 3589       san francisco  california  doesn't have kids, but might want them
## 3590             fairfax  california                                    <NA>
## 3591       san francisco  california                       doesn't have kids
## 3592   belvedere tiburon  california                       doesn't have kids
## 3593       san francisco  california  doesn't have kids, but might want them
## 3594            berkeley  california                                    <NA>
## 3595       san francisco  california  doesn't have kids, but might want them
## 3596             montara  california       doesn't have kids, but wants them
## 3597             oakland  california                                    <NA>
## 3598             oakland  california                                    <NA>
## 3599             oakland  california                       doesn't have kids
## 3600       san francisco  california                                    <NA>
## 3601       san francisco  california                                    <NA>
## 3602       san francisco  california                                    <NA>
## 3603       san francisco  california                       doesn't have kids
## 3604       san francisco  california                                    <NA>
## 3605       san francisco  california       doesn't have kids, but wants them
## 3606       san francisco  california                                    <NA>
## 3607           daly city  california                                    <NA>
## 3608            berkeley  california                       doesn't want kids
## 3609       san francisco  california        has a kid, but doesn't want more
## 3610       san francisco  california  doesn't have kids, but might want them
## 3611        walnut creek  california                                    <NA>
## 3612           palo alto  california  doesn't have kids, but might want them
## 3613            millbrae  california                               has a kid
## 3614           san bruno  california       doesn't have kids, but wants them
## 3615            berkeley  california                                has kids
## 3616        walnut creek  california                                    <NA>
## 3617       san francisco  california                                    <NA>
## 3618           san mateo  california                                    <NA>
## 3619       san francisco  california       doesn't have kids, but wants them
## 3620          emeryville  california                                    <NA>
## 3621       san francisco  california  doesn't have kids, but might want them
## 3622       san francisco  california                       doesn't want kids
## 3623       san francisco  california                                    <NA>
## 3624             oakland  california                                has kids
## 3625          san rafael  california                       doesn't want kids
## 3626       san francisco  california                       doesn't have kids
## 3627             alameda  california                       doesn't have kids
## 3628            berkeley  california  doesn't have kids, but might want them
## 3629       san francisco  california                                has kids
## 3630             oakland  california                                    <NA>
## 3631       san francisco  california                                    <NA>
## 3632             oakland  california                       doesn't have kids
## 3633       san francisco  california                                    <NA>
## 3634       san francisco  california                                has kids
## 3635             oakland  california                                    <NA>
## 3636       san francisco  california                       doesn't have kids
## 3637       san francisco  california                                    <NA>
## 3638             oakland  california                                    <NA>
## 3639             oakland  california                                    <NA>
## 3640       san francisco  california                                    <NA>
## 3641       san francisco  california                                    <NA>
## 3642         san leandro  california                       doesn't have kids
## 3643          burlingame  california                                    <NA>
## 3644          emeryville  california       doesn't have kids, but wants them
## 3645       san francisco  california                       doesn't want kids
## 3646        corte madera  california                                    <NA>
## 3647       san francisco  california                                    <NA>
## 3648          burlingame  california                                    <NA>
## 3649       san francisco  california                                    <NA>
## 3650       san francisco  california                                    <NA>
## 3651             oakland  california                                    <NA>
## 3652            richmond  california                                    <NA>
## 3653       san francisco  california       doesn't have kids, but wants them
## 3654       san francisco  california                       doesn't have kids
## 3655       castro valley  california       doesn't have kids, but wants them
## 3656            berkeley  california                       doesn't have kids
## 3657           sausalito  california                                    <NA>
## 3658       san francisco  california                                    <NA>
## 3659       san francisco  california        has a kid, but doesn't want more
## 3660           san mateo  california                                    <NA>
## 3661              novato  california                                    <NA>
## 3662             oakland  california                       doesn't have kids
## 3663       san francisco  california                                    <NA>
## 3664       san francisco  california                                    <NA>
## 3665          san rafael  california       doesn't have kids, but wants them
## 3666          emeryville  california                                    <NA>
## 3667       san francisco  california                                    <NA>
## 3668             oakland  california                                    <NA>
## 3669            berkeley  california                                    <NA>
## 3670       san francisco  california                                    <NA>
## 3671       san francisco  california                                    <NA>
## 3672            berkeley  california                                has kids
## 3673 south san francisco  california                       doesn't want kids
## 3674       san francisco  california                                    <NA>
## 3675             oakland  california                       doesn't have kids
## 3676            berkeley  california                                    <NA>
## 3677            berkeley  california                       doesn't want kids
## 3678            berkeley  california                                    <NA>
## 3679          san rafael  california                       doesn't want kids
## 3680            berkeley  california                                    <NA>
## 3681           san mateo  california                                    <NA>
## 3682       san francisco  california                       doesn't have kids
## 3683       san francisco  california                                    <NA>
## 3684             alameda  california doesn't have kids, and doesn't want any
## 3685             alameda  california                                    <NA>
## 3686             oakland  california                                    <NA>
## 3687       san francisco  california                                    <NA>
## 3688             oakland  california                                    <NA>
## 3689        redwood city  california                       doesn't have kids
## 3690       san francisco  california                       doesn't have kids
## 3691       san francisco  california                                    <NA>
## 3692       san francisco  california                                    <NA>
## 3693          menlo park  california                               has a kid
## 3694             oakland  california                                    <NA>
## 3695       san francisco  california  doesn't have kids, but might want them
## 3696             oakland  california                                    <NA>
## 3697            millbrae  california       doesn't have kids, but wants them
## 3698             vallejo  california                                    <NA>
## 3699       san francisco  california                                    <NA>
## 3700       san francisco  california                                    <NA>
## 3701       san francisco  california                                    <NA>
## 3702            berkeley  california doesn't have kids, and doesn't want any
## 3703       san francisco  california                       doesn't have kids
## 3704       san francisco  california                                has kids
## 3705       san francisco  california                                    <NA>
## 3706       san francisco  california                       doesn't have kids
## 3707       san francisco  california                                    <NA>
## 3708            berkeley  california                                    <NA>
## 3709          el cerrito  california                                    <NA>
## 3710       san francisco  california                                    <NA>
## 3711       san francisco  california                                    <NA>
## 3712       san francisco  california       doesn't have kids, but wants them
## 3713       san francisco  california                                    <NA>
## 3714             oakland  california                                    <NA>
## 3715            berkeley  california doesn't have kids, and doesn't want any
## 3716       san francisco  california                                    <NA>
## 3717             hayward  california                                    <NA>
## 3718           palo alto  california                                    <NA>
## 3719       san francisco  california                                    <NA>
## 3720       san francisco  california                       doesn't have kids
## 3721       san francisco  california                       doesn't have kids
## 3722             oakland  california                              wants kids
## 3723          emeryville  california                                    <NA>
## 3724           san mateo  california                                    <NA>
## 3725       san francisco  california                                    <NA>
## 3726             alameda  california       doesn't have kids, but wants them
## 3727            berkeley  california                                    <NA>
## 3728            berkeley  california                                    <NA>
## 3729       san francisco  california                                    <NA>
## 3730       pleasant hill  california                              wants kids
## 3731       san francisco  california                                    <NA>
## 3732       san francisco  california                                    <NA>
## 3733       san francisco  california                       doesn't have kids
## 3734       san francisco  california                                    <NA>
## 3735       san francisco  california                                    <NA>
## 3736       mountain view  california                       doesn't have kids
## 3737            berkeley  california                                    <NA>
## 3738         san lorenzo  california                                    <NA>
## 3739             oakland  california                                    <NA>
## 3740            richmond  california                                    <NA>
## 3741       san francisco  california                                    <NA>
## 3742           daly city  california                                    <NA>
## 3743       san francisco  california                                    <NA>
## 3744             oakland  california                       doesn't want kids
## 3745       castro valley  california                       doesn't want kids
## 3746       san francisco  california                       doesn't have kids
## 3747       san francisco  california                                    <NA>
## 3748              novato  california          has a kid, and might want more
## 3749            berkeley  california                       doesn't have kids
## 3750       san francisco  california                                    <NA>
## 3751             oakland  california                       doesn't have kids
## 3752       san francisco  california                                    <NA>
## 3753             oakland  california                                    <NA>
## 3754       san francisco  california                       doesn't want kids
## 3755            millbrae  california                                    <NA>
## 3756       pleasant hill  california                                    <NA>
## 3757       san francisco  california                                    <NA>
## 3758              novato  california                                    <NA>
## 3759       san francisco  california                                    <NA>
## 3760             oakland  california                                    <NA>
## 3761             oakland  california                                    <NA>
## 3762       san francisco  california                       doesn't have kids
## 3763       san francisco  california                       doesn't have kids
## 3764             oakland  california                                    <NA>
## 3765       san francisco  california doesn't have kids, and doesn't want any
## 3766       san francisco  california                       doesn't have kids
## 3767       san francisco  california                                    <NA>
## 3768       san francisco  california                                    <NA>
## 3769       san francisco  california                                    <NA>
## 3770       san francisco  california                                    <NA>
## 3771            berkeley  california                                    <NA>
## 3772            brisbane  california doesn't have kids, and doesn't want any
## 3773            berkeley  california                                    <NA>
## 3774       san francisco  california                                    <NA>
## 3775       san francisco  california                                    <NA>
## 3776            pacifica  california                                    <NA>
## 3777           palo alto  california                                    <NA>
## 3778            berkeley  california                                    <NA>
## 3779        redwood city  california                       doesn't have kids
## 3780 south san francisco  california                                    <NA>
## 3781             oakland  california                               has a kid
## 3782           palo alto  california                       doesn't have kids
## 3783             oakland  california                                    <NA>
## 3784       san francisco  california                                    <NA>
## 3785       san francisco  california                                    <NA>
## 3786             oakland  california       doesn't have kids, but wants them
## 3787       san francisco  california                                    <NA>
## 3788            berkeley  california                                    <NA>
## 3789       san francisco  california                                    <NA>
## 3790       san francisco  california                                    <NA>
## 3791       mountain view  california                                    <NA>
## 3792       san francisco  california                                    <NA>
## 3793       san francisco  california                       doesn't want kids
## 3794           daly city  california                               has a kid
## 3795       san francisco  california                                    <NA>
## 3796             oakland  california                                    <NA>
## 3797       san francisco  california                                    <NA>
## 3798           daly city  california                                    <NA>
## 3799             oakland  california                                    <NA>
## 3800            berkeley  california                               has a kid
## 3801       san francisco  california                       doesn't have kids
## 3802       san francisco  california          has a kid, and might want more
## 3803       san francisco  california                                    <NA>
## 3804       san francisco  california       doesn't have kids, but wants them
## 3805       san francisco  california                                    <NA>
## 3806       san francisco  california                                    <NA>
## 3807           palo alto  california                                    <NA>
## 3808         san leandro  california                       doesn't want kids
## 3809       san francisco  california                       doesn't want kids
## 3810        walnut creek  california       doesn't have kids, but wants them
## 3811       san francisco  california                                    <NA>
## 3812       san francisco  california                       doesn't have kids
## 3813            richmond  california                                    <NA>
## 3814           daly city  california                       doesn't have kids
## 3815       san francisco  california                                    <NA>
## 3816       san francisco  california                                    <NA>
## 3817           lafayette  california                       doesn't have kids
## 3818             oakland  california          has a kid, and might want more
## 3819            berkeley  california                                    <NA>
## 3820       san francisco  california                               has a kid
## 3821             oakland  california                                    <NA>
## 3822       san francisco  california                                    <NA>
## 3823             oakland  california       doesn't have kids, but wants them
## 3824             oakland  california                                    <NA>
## 3825           palo alto  california                                    <NA>
## 3826          el cerrito  california                                    <NA>
## 3827       san francisco  california                                    <NA>
## 3828           san bruno  california       doesn't have kids, but wants them
## 3829        walnut creek  california                                    <NA>
## 3830       san francisco  california                                    <NA>
## 3831       san francisco  california                                    <NA>
## 3832       san francisco  california                       doesn't have kids
## 3833       san francisco  california                                    <NA>
## 3834       san francisco  california       doesn't have kids, but wants them
## 3835       san francisco  california                                    <NA>
## 3836       san francisco  california                       doesn't want kids
## 3837       san francisco  california                                    <NA>
## 3838       san francisco  california                       doesn't want kids
## 3839             oakland  california                                    <NA>
## 3840       san francisco  california                                    <NA>
## 3841             oakland  california                                    <NA>
## 3842       san francisco  california                                    <NA>
## 3843       san francisco  california                                    <NA>
## 3844            millbrae  california                       doesn't want kids
## 3845           san mateo  california                                    <NA>
## 3846       san francisco  california       doesn't have kids, but wants them
## 3847            berkeley  california                                    <NA>
## 3848             oakland  california       doesn't have kids, but wants them
## 3849       san francisco  california                                    <NA>
## 3850            berkeley  california                                    <NA>
## 3851             hayward  california                                    <NA>
## 3852       san francisco  california doesn't have kids, and doesn't want any
## 3853              novato  california       doesn't have kids, but wants them
## 3854       san francisco  california  doesn't have kids, but might want them
## 3855       san francisco  california       doesn't have kids, but wants them
## 3856       san francisco  california                                    <NA>
## 3857       san francisco  california                                    <NA>
## 3858       san francisco  california                                    <NA>
## 3859       san francisco  california                       doesn't have kids
## 3860       san francisco  california                                    <NA>
## 3861       san francisco  california                                    <NA>
## 3862       san francisco  california                                    <NA>
## 3863            stanford  california                                    <NA>
## 3864            berkeley  california                                    <NA>
## 3865       san francisco  california                       doesn't have kids
## 3866       san francisco  california       doesn't have kids, but wants them
## 3867           palo alto  california                                    <NA>
## 3868              novato  california                       doesn't have kids
## 3869       san francisco  california                       doesn't have kids
## 3870       san francisco  california                                    <NA>
## 3871           san mateo  california                                    <NA>
## 3872              albany  california                                    <NA>
## 3873       san francisco  california                                    <NA>
## 3874       san francisco  california                       doesn't have kids
## 3875       san francisco  california                                    <NA>
## 3876             oakland  california                                    <NA>
## 3877             oakland  california                                    <NA>
## 3878            berkeley  california                                    <NA>
## 3879           daly city  california                       doesn't have kids
## 3880       san francisco  california                                    <NA>
## 3881       pleasant hill  california                              wants kids
## 3882       san francisco  california                                    <NA>
## 3883       san francisco  california                                    <NA>
## 3884       san francisco  california                                    <NA>
## 3885       san francisco  california                                    <NA>
## 3886            berkeley  california                                    <NA>
## 3887             oakland  california                       doesn't want kids
## 3888       san francisco  california                                    <NA>
## 3889       san francisco  california                       doesn't have kids
## 3890       san francisco  california                                    <NA>
## 3891       san francisco  california                                    <NA>
## 3892             oakland  california                                    <NA>
## 3893             oakland  california                                    <NA>
## 3894       san francisco  california                                    <NA>
## 3895           san bruno  california                                    <NA>
## 3896            berkeley  california                                    <NA>
## 3897           daly city  california                                    <NA>
## 3898       san francisco  california                                    <NA>
## 3899             oakland  california                                    <NA>
## 3900       san francisco  california                                    <NA>
## 3901       san francisco  california                                    <NA>
## 3902       san francisco  california                                    <NA>
## 3903       san francisco  california                                    <NA>
## 3904       san francisco  california                                    <NA>
## 3905          emeryville  california  doesn't have kids, but might want them
## 3906           sausalito  california  doesn't have kids, but might want them
## 3907          burlingame  california                                    <NA>
## 3908       san francisco  california                       doesn't have kids
## 3909       san francisco  california                                    <NA>
## 3910       san francisco  california                                    <NA>
## 3911             oakland  california                       doesn't want kids
## 3912       san francisco  california  doesn't have kids, but might want them
## 3913             belmont  california                       doesn't have kids
## 3914           daly city  california       doesn't have kids, but wants them
## 3915          emeryville  california                                    <NA>
## 3916             oakland  california                                    <NA>
## 3917       san francisco  california                               has a kid
## 3918             oakland  california                                    <NA>
## 3919            larkspur  california                               has a kid
## 3920           palo alto  california                                has kids
## 3921       san francisco  california         has kids, but doesn't want more
## 3922             oakland  california          has a kid, and might want more
## 3923             oakland  california                                    <NA>
## 3924           san mateo  california                                    <NA>
## 3925             oakland  california                                    <NA>
## 3926       san francisco  california                                    <NA>
## 3927       san francisco  california                                    <NA>
## 3928       san francisco  california                                    <NA>
## 3929       san francisco  california                                    <NA>
## 3930            richmond  california                                    <NA>
## 3931           daly city  california                       doesn't have kids
## 3932            berkeley  california         has kids, but doesn't want more
## 3933       san francisco  california                                    <NA>
## 3934             oakland  california                                    <NA>
## 3935            berkeley  california                                    <NA>
## 3936       san francisco  california                                    <NA>
## 3937       san francisco  california                                    <NA>
## 3938             oakland  california                                    <NA>
## 3939           daly city  california        has a kid, but doesn't want more
## 3940             oakland  california                       doesn't want kids
## 3941       san francisco  california                                    <NA>
## 3942       san francisco  california                               has a kid
## 3943             oakland  california       doesn't have kids, but wants them
## 3944       san francisco  california                                    <NA>
## 3945       san francisco  california                                    <NA>
## 3946           palo alto  california                                    <NA>
## 3947             oakland  california                       doesn't have kids
## 3948       san francisco  california                                    <NA>
## 3949             alameda  california                       doesn't have kids
## 3950             oakland  california       doesn't have kids, but wants them
## 3951       san francisco  california                                    <NA>
## 3952             oakland  california                                    <NA>
## 3953        walnut creek  california                                    <NA>
## 3954       san francisco  california                                    <NA>
## 3955       san francisco  california                                    <NA>
## 3956             oakland  california doesn't have kids, and doesn't want any
## 3957       san francisco  california                       doesn't have kids
## 3958       san francisco  california                                    <NA>
## 3959       san francisco  california                                    <NA>
## 3960              novato  california                                    <NA>
## 3961       san francisco  california                                    <NA>
## 3962             oakland  california                                    <NA>
## 3963       san francisco  california                                    <NA>
## 3964       san francisco  california                                    <NA>
## 3965       san francisco  california                                    <NA>
## 3966       san francisco  california                                    <NA>
## 3967       mountain view  california                                    <NA>
## 3968       san francisco  california                                    <NA>
## 3969             oakland  california                       doesn't have kids
## 3970       san francisco  california  doesn't have kids, but might want them
## 3971       san francisco  california                                    <NA>
## 3972              pinole  california                                    <NA>
## 3973       san francisco  california  doesn't have kids, but might want them
## 3974             oakland  california  doesn't have kids, but might want them
## 3975       pleasant hill  california                                    <NA>
## 3976       mountain view  california                                    <NA>
## 3977       san francisco  california                                    <NA>
## 3978       san francisco  california                                    <NA>
## 3979          san carlos  california                                    <NA>
## 3980       san francisco  california                                    <NA>
## 3981            berkeley  california                                    <NA>
## 3982             oakland  california                                has kids
## 3983            berkeley  california                                    <NA>
## 3984           san mateo  california                                    <NA>
## 3985            berkeley  california                                    <NA>
## 3986       san francisco  california                                    <NA>
## 3987       san francisco  california  doesn't have kids, but might want them
## 3988             oakland  california                       doesn't have kids
## 3989            pacifica  california  doesn't have kids, but might want them
## 3990         mill valley  california                                has kids
## 3991       san francisco  california       doesn't have kids, but wants them
## 3992             fairfax  california                               has a kid
## 3993            pacifica  california       doesn't have kids, but wants them
## 3994            richmond  california                       doesn't have kids
## 3995       san francisco  california  doesn't have kids, but might want them
## 3996       san francisco  california                                    <NA>
## 3997             oakland  california                                    <NA>
## 3998       san francisco  california                       doesn't have kids
## 3999       san francisco  california                                    <NA>
## 4000       san francisco  california                                    <NA>
## 4001       san francisco  california       doesn't have kids, but wants them
## 4002       mountain view  california                                    <NA>
## 4003             oakland  california                                    <NA>
## 4004            berkeley  california                                has kids
## 4005       san francisco  california                                    <NA>
## 4006          emeryville  california                                    <NA>
## 4007            berkeley  california                                    <NA>
## 4008           palo alto  california                       doesn't have kids
## 4009       san francisco  california                                    <NA>
## 4010            berkeley  california                                    <NA>
## 4011       san francisco  california                                has kids
## 4012             oakland  california                               has a kid
## 4013       san francisco  california                                    <NA>
## 4014          menlo park  california                       doesn't have kids
## 4015       san francisco  california                                    <NA>
## 4016       san francisco  california       doesn't have kids, but wants them
## 4017            millbrae  california                                    <NA>
## 4018            stanford  california                                    <NA>
## 4019          san rafael  california                                    <NA>
## 4020            berkeley  california                                    <NA>
## 4021             oakland  california                                    <NA>
## 4022       san francisco  california                                    <NA>
## 4023       san francisco  california                                    <NA>
## 4024              albany  california                                has kids
## 4025       san francisco  california                                    <NA>
## 4026       san francisco  california                                    <NA>
## 4027             alameda  california                                    <NA>
## 4028            pacifica  california                                    <NA>
## 4029             oakland  california                                    <NA>
## 4030       san francisco  california       doesn't have kids, but wants them
## 4031       san francisco  california                                    <NA>
## 4032       san francisco  california                                    <NA>
## 4033       san francisco  california                       doesn't have kids
## 4034             oakland  california                       doesn't have kids
## 4035            berkeley  california                                    <NA>
## 4036            berkeley  california                       doesn't want kids
## 4037             oakland  california                       doesn't want kids
## 4038       san francisco  california                                    <NA>
## 4039       pleasant hill  california                                    <NA>
## 4040       san francisco  california                              wants kids
## 4041       san francisco  california                                    <NA>
## 4042       mountain view  california                                    <NA>
## 4043          san rafael  california                       doesn't want kids
## 4044             oakland  california  doesn't have kids, but might want them
## 4045       san francisco  california                                    <NA>
## 4046       san francisco  california                                    <NA>
## 4047       san francisco  california  doesn't have kids, but might want them
## 4048             oakland  california                                    <NA>
## 4049            berkeley  california                                    <NA>
## 4050             oakland  california  doesn't have kids, but might want them
## 4051          emeryville  california  doesn't have kids, but might want them
## 4052         san leandro  california                                    <NA>
## 4053 south san francisco  california                                    <NA>
## 4054           san mateo  california                                    <NA>
## 4055             oakland  california                         might want kids
## 4056       san francisco  california                       doesn't want kids
## 4057             alameda  california                                    <NA>
## 4058       san francisco  california  doesn't have kids, but might want them
## 4059             oakland  california                                    <NA>
## 4060       san francisco  california                       doesn't have kids
## 4061       san francisco  california                                    <NA>
## 4062             oakland  california                       doesn't want kids
## 4063             oakland  california       doesn't have kids, but wants them
## 4064            berkeley  california                                    <NA>
## 4065           palo alto  california                                    <NA>
## 4066       san francisco  california                                    <NA>
## 4067           palo alto  california                       doesn't have kids
## 4068       san francisco  california                       doesn't have kids
## 4069       san francisco  california                                    <NA>
## 4070       san francisco  california                                    <NA>
## 4071       san francisco  california                       doesn't have kids
## 4072             alameda  california                               has a kid
## 4073       san francisco  california                       doesn't have kids
## 4074       san francisco  california                                    <NA>
## 4075             oakland  california                                    <NA>
## 4076 south san francisco  california                                    <NA>
## 4077       san francisco  california                                    <NA>
## 4078       san francisco  california                                    <NA>
## 4079       san francisco  california                                    <NA>
## 4080          san carlos  california                                    <NA>
## 4081       san francisco  california                                    <NA>
## 4082             oakland  california                                    <NA>
## 4083             oakland  california                                    <NA>
## 4084       san francisco  california                                    <NA>
## 4085       san francisco  california                                    <NA>
## 4086             oakland  california       doesn't have kids, but wants them
## 4087       san francisco  california                                    <NA>
## 4088       san francisco  california                                    <NA>
## 4089       san francisco  california                                    <NA>
## 4090       san francisco  california                                    <NA>
## 4091           palo alto  california                                    <NA>
## 4092       san francisco  california                                    <NA>
## 4093       san francisco  california                       doesn't have kids
## 4094       san francisco  california                                    <NA>
## 4095          menlo park  california                                    <NA>
## 4096            berkeley  california                       doesn't want kids
## 4097           daly city  california                       doesn't want kids
## 4098       san francisco  california                                    <NA>
## 4099          menlo park  california                                    <NA>
## 4100       san francisco  california                                    <NA>
## 4101       san francisco  california                       doesn't want kids
## 4102       san francisco  california                                    <NA>
## 4103            richmond  california                                    <NA>
## 4104       san francisco  california                       doesn't have kids
## 4105       san francisco  california                                    <NA>
## 4106       san francisco  california                                    <NA>
## 4107         foster city  california                                    <NA>
## 4108             oakland  california                                    <NA>
## 4109            berkeley  california  doesn't have kids, but might want them
## 4110       san francisco  california  doesn't have kids, but might want them
## 4111            pacifica  california                                    <NA>
## 4112              moraga  california                       doesn't have kids
## 4113           palo alto  california                                    <NA>
## 4114             oakland  california                                    <NA>
## 4115       san francisco  california                                    <NA>
## 4116       san francisco  california                       doesn't want kids
## 4117       san francisco  california                       doesn't have kids
## 4118             oakland  california                       doesn't want kids
## 4119             oakland  california                                    <NA>
## 4120       san francisco  california                       doesn't have kids
## 4121       san francisco  california  doesn't have kids, but might want them
## 4122            stanford  california                       doesn't have kids
## 4123       san francisco  california                                    <NA>
## 4124            stanford  california                                    <NA>
## 4125             oakland  california                                    <NA>
## 4126           daly city  california                                has kids
## 4127            richmond  california       doesn't have kids, but wants them
## 4128          san carlos  california                       doesn't have kids
## 4129             vallejo  california                                    <NA>
## 4130       san francisco  california                       doesn't have kids
## 4131       san francisco  california doesn't have kids, and doesn't want any
## 4132             hayward  california                                    <NA>
## 4133          burlingame  california                                    <NA>
## 4134           san pablo  california       doesn't have kids, but wants them
## 4135       san francisco  california                                    <NA>
## 4136       san francisco  california                                    <NA>
## 4137       san francisco  california       doesn't have kids, but wants them
## 4138       san francisco  california                                    <NA>
## 4139       san francisco  california                       doesn't have kids
## 4140         san anselmo  california                                has kids
## 4141       san francisco  california       doesn't have kids, but wants them
## 4142       san francisco  california       doesn't have kids, but wants them
## 4143       san francisco  california                                    <NA>
## 4144             alameda  california doesn't have kids, and doesn't want any
## 4145       san francisco  california                                    <NA>
## 4146             alameda  california                                    <NA>
## 4147             oakland  california       doesn't have kids, but wants them
## 4148              novato  california                                    <NA>
## 4149          emeryville  california                                    <NA>
## 4150           palo alto  california                                    <NA>
## 4151       san francisco  california                                    <NA>
## 4152       san francisco  california                       doesn't have kids
## 4153       san francisco  california                       doesn't want kids
## 4154             alameda  california                                    <NA>
## 4155       san francisco  california                       doesn't have kids
## 4156       san francisco  california                                    <NA>
## 4157       san francisco  california       doesn't have kids, but wants them
## 4158       san francisco  california                                    <NA>
## 4159       san francisco  california                       doesn't have kids
## 4160         san anselmo  california                                    <NA>
## 4161       san francisco  california                       doesn't want kids
## 4162       san francisco  california                                    <NA>
## 4163       san francisco  california                       doesn't want kids
## 4164             oakland  california                                    <NA>
## 4165       san francisco  california                       doesn't have kids
## 4166             oakland  california                                    <NA>
##                                 pets     religion         smokes        sign
## 1          likes dogs and likes cats  agnosticism      sometimes      gemini
## 2          likes dogs and likes cats  agnosticism             no      cancer
## 3                           has cats         <NA>             no      pisces
## 4                         likes cats         <NA>             no      pisces
## 5          likes dogs and likes cats         <NA>             no    aquarius
## 6                         likes cats      atheism             no      taurus
## 7          likes dogs and likes cats         <NA>           <NA>       virgo
## 8          likes dogs and likes cats christianity             no sagittarius
## 9          likes dogs and likes cats christianity  when drinking      gemini
## 10         likes dogs and likes cats      atheism             no      cancer
## 11                              <NA>         <NA>            yes      taurus
## 12                        likes cats christianity             no         leo
## 13                              <NA>        other           <NA>      taurus
## 14           has dogs and likes cats christianity             no        <NA>
## 15           likes dogs and has cats  catholicism             no      taurus
## 16           likes dogs and has cats      atheism             no    aquarius
## 17         likes dogs and likes cats         <NA>      sometimes      pisces
## 18                              <NA>         <NA>             no       aries
## 19         likes dogs and likes cats christianity             no       libra
## 20         likes dogs and likes cats  catholicism             no      pisces
## 21      likes dogs and dislikes cats  catholicism             no       libra
## 22         likes dogs and likes cats  catholicism             no      taurus
## 23         likes dogs and likes cats  agnosticism             no sagittarius
## 24         likes dogs and likes cats      atheism             no    aquarius
## 25                        likes cats        other      sometimes     scorpio
## 26                          has dogs         <NA>             no      gemini
## 27      likes dogs and dislikes cats  catholicism trying to quit         leo
## 28        has dogs and dislikes cats  agnosticism             no         leo
## 29         likes dogs and likes cats      atheism             no        <NA>
## 30                              <NA>  agnosticism             no         leo
## 31                              <NA>  agnosticism trying to quit      gemini
## 32                        likes dogs      atheism             no        <NA>
## 33                              <NA> christianity             no       libra
## 34           has dogs and likes cats         <NA>             no      cancer
## 35         likes dogs and likes cats      atheism  when drinking sagittarius
## 36                              <NA>         <NA>           <NA>        <NA>
## 37      likes dogs and dislikes cats     buddhism  when drinking      cancer
## 38         likes dogs and likes cats         <NA>           <NA>       libra
## 39                              <NA>         <NA>           <NA>       libra
## 40                              <NA>         <NA>             no        <NA>
## 41                        likes cats  agnosticism             no        <NA>
## 42                              <NA>  agnosticism             no      pisces
## 43                              <NA>        other             no      gemini
## 44                        likes dogs  agnosticism             no      gemini
## 45                          has cats        other             no    aquarius
## 46                              <NA>  catholicism           <NA>    aquarius
## 47                              <NA>         <NA>           <NA>        <NA>
## 48                              <NA>  agnosticism             no       libra
## 49                              <NA>         <NA>             no        <NA>
## 50         likes dogs and likes cats        other             no      taurus
## 51                              <NA>         <NA>             no      taurus
## 52                        likes dogs         <NA>             no      taurus
## 53         likes dogs and likes cats  agnosticism             no      gemini
## 54                          has dogs         <NA>           <NA>        <NA>
## 55         likes dogs and likes cats      atheism             no        <NA>
## 56           likes dogs and has cats         <NA>             no      pisces
## 57                              <NA>      atheism             no sagittarius
## 58                              <NA>     buddhism  when drinking        <NA>
## 59             has dogs and has cats  agnosticism      sometimes      pisces
## 60         likes dogs and likes cats  agnosticism  when drinking       libra
## 61      likes dogs and dislikes cats  catholicism             no      gemini
## 62         likes dogs and likes cats         <NA>             no      cancer
## 63                              <NA>  agnosticism  when drinking      cancer
## 64                        likes dogs        other      sometimes      gemini
## 65                              <NA>         <NA>             no       virgo
## 66                              <NA>      judaism             no        <NA>
## 67                              <NA>     buddhism             no       virgo
## 68           likes dogs and has cats        other      sometimes       aries
## 69         likes dogs and likes cats        other      sometimes       virgo
## 70         likes dogs and likes cats  agnosticism             no     scorpio
## 71                              <NA>         <NA>             no      pisces
## 72                        likes dogs         <NA>             no      gemini
## 73         likes dogs and likes cats  agnosticism             no      pisces
## 74                              <NA>     hinduism             no       libra
## 75           likes dogs and has cats         <NA>           <NA> sagittarius
## 76                              <NA>         <NA>           <NA>      gemini
## 77                        likes dogs  agnosticism             no   capricorn
## 78           likes dogs and has cats  agnosticism             no         leo
## 79                              <NA>  agnosticism             no        <NA>
## 80         likes dogs and likes cats  catholicism             no        <NA>
## 81                              <NA>      atheism             no      cancer
## 82         likes dogs and likes cats      atheism             no        <NA>
## 83           likes dogs and has cats  agnosticism             no        <NA>
## 84         likes dogs and likes cats         <NA>             no      pisces
## 85                        likes dogs         <NA>             no      gemini
## 86                        likes cats      atheism             no     scorpio
## 87         likes dogs and likes cats         <NA>             no      taurus
## 88                              <NA>         <NA>             no       aries
## 89                              <NA>         <NA>             no        <NA>
## 90           likes dogs and has cats        other             no        <NA>
## 91                              <NA>         <NA>            yes      cancer
## 92                              <NA>  catholicism           <NA>     scorpio
## 93                              <NA>         <NA>           <NA>   capricorn
## 94                        likes dogs         <NA>             no         leo
## 95         likes dogs and likes cats  agnosticism             no       libra
## 96         likes dogs and likes cats  catholicism             no       aries
## 97           likes dogs and has cats        other             no       aries
## 98                              <NA>  agnosticism             no        <NA>
## 99                        likes dogs      atheism             no      pisces
## 100                             <NA> christianity             no      taurus
## 101                             <NA>         <NA>             no    aquarius
## 102                             <NA>        other             no        <NA>
## 103                             <NA>  agnosticism             no       libra
## 104                       likes dogs      atheism             no         leo
## 105                       likes dogs         <NA>             no     scorpio
## 106                       likes dogs      judaism             no       aries
## 107                       likes dogs  agnosticism             no       aries
## 108                         has dogs         <NA>             no       aries
## 109                       likes dogs         <NA>             no       aries
## 110                             <NA> christianity             no        <NA>
## 111                             <NA>         <NA>             no       virgo
## 112                       likes dogs  agnosticism             no        <NA>
## 113                             <NA>         <NA>           <NA>        <NA>
## 114        likes dogs and likes cats        other  when drinking   capricorn
## 115        likes dogs and likes cats  agnosticism             no       aries
## 116                             <NA>      atheism  when drinking    aquarius
## 117                             <NA>         <NA>           <NA>        <NA>
## 118        likes dogs and likes cats        other             no         leo
## 119        likes dogs and likes cats        other             no   capricorn
## 120        likes dogs and likes cats         <NA>             no     scorpio
## 121                         has cats      atheism             no    aquarius
## 122       dislikes dogs and has cats christianity             no      gemini
## 123        likes dogs and likes cats         <NA> trying to quit      cancer
## 124                       likes dogs      atheism      sometimes sagittarius
## 125                             <NA>        other             no       aries
## 126        likes dogs and likes cats  agnosticism             no        <NA>
## 127                             <NA>         <NA>             no       virgo
## 128        likes dogs and likes cats  agnosticism             no        <NA>
## 129        likes dogs and likes cats      atheism trying to quit       libra
## 130                             <NA>      atheism             no        <NA>
## 131                       likes cats  agnosticism            yes      gemini
## 132                         has dogs        other trying to quit         leo
## 133          likes dogs and has cats         <NA>             no       libra
## 134                         has dogs         <NA>             no        <NA>
## 135        likes dogs and likes cats      atheism             no        <NA>
## 136                             <NA>         <NA>             no       libra
## 137                       likes cats      atheism  when drinking sagittarius
## 138                         has cats        other             no       libra
## 139                       likes dogs         <NA>             no      cancer
## 140                             <NA>         <NA>             no        <NA>
## 141                             <NA>     buddhism             no      pisces
## 142        likes dogs and likes cats        other             no       libra
## 143        likes dogs and likes cats        other             no      taurus
## 144                             <NA>  agnosticism             no        <NA>
## 145                             <NA>         <NA>             no         leo
## 146        likes dogs and likes cats  catholicism             no     scorpio
## 147                             <NA>      atheism            yes sagittarius
## 148     likes dogs and dislikes cats         <NA>             no        <NA>
## 149                       likes dogs      judaism             no        <NA>
## 150        likes dogs and likes cats         <NA>             no      cancer
## 151                       likes dogs      atheism             no      cancer
## 152          has dogs and likes cats  catholicism             no         leo
## 153            has dogs and has cats         <NA>             no    aquarius
## 154                             <NA>         <NA> trying to quit         leo
## 155        likes dogs and likes cats         <NA>             no       virgo
## 156                             <NA>  agnosticism             no     scorpio
## 157                             <NA> christianity           <NA>        <NA>
## 158                       likes dogs  agnosticism             no         leo
## 159          likes dogs and has cats        other             no     scorpio
## 160                       likes dogs christianity             no        <NA>
## 161          likes dogs and has cats christianity           <NA>       virgo
## 162                         has dogs         <NA>           <NA> sagittarius
## 163                             <NA>         <NA>           <NA>        <NA>
## 164                             <NA>         <NA>           <NA>       virgo
## 165                             <NA>      atheism             no       libra
## 166                             <NA>         <NA>           <NA>         leo
## 167                             <NA>         <NA>             no      pisces
## 168        likes dogs and likes cats  catholicism             no      gemini
## 169                       likes dogs  agnosticism             no sagittarius
## 170          has dogs and likes cats        other             no        <NA>
## 171                             <NA>         <NA>             no         leo
## 172          likes dogs and has cats        other             no sagittarius
## 173                       likes dogs christianity             no        <NA>
## 174          likes dogs and has cats      atheism             no    aquarius
## 175       has dogs and dislikes cats        other  when drinking       aries
## 176                             <NA>         <NA>           <NA> sagittarius
## 177          likes dogs and has cats      judaism             no       virgo
## 178       has dogs and dislikes cats     hinduism  when drinking      cancer
## 179                         has cats         <NA>           <NA>      taurus
## 180     likes dogs and dislikes cats      atheism  when drinking        <NA>
## 181          has dogs and likes cats      atheism             no    aquarius
## 182        likes dogs and likes cats  catholicism             no       aries
## 183          likes dogs and has cats  agnosticism             no         leo
## 184                             <NA>        other             no     scorpio
## 185                             <NA>         <NA>             no        <NA>
## 186                             <NA>      judaism             no       virgo
## 187                             <NA>      judaism             no    aquarius
## 188                             <NA>        other             no      taurus
## 189        likes dogs and likes cats  agnosticism             no      taurus
## 190        likes dogs and likes cats  agnosticism             no       virgo
## 191                       likes dogs  agnosticism             no        <NA>
## 192                       likes dogs  catholicism             no      cancer
## 193        likes dogs and likes cats  agnosticism      sometimes       virgo
## 194        likes dogs and likes cats  agnosticism             no      taurus
## 195                         has dogs         <NA>             no     scorpio
## 196     likes dogs and dislikes cats  catholicism      sometimes   capricorn
## 197        likes dogs and likes cats        other trying to quit    aquarius
## 198                             <NA>      judaism             no        <NA>
## 199                       likes dogs  catholicism             no        <NA>
## 200                         has dogs         <NA>             no         leo
## 201                             <NA>  catholicism             no    aquarius
## 202                       likes dogs        other             no      gemini
## 203        likes dogs and likes cats         <NA>             no sagittarius
## 204          likes dogs and has cats  agnosticism  when drinking      gemini
## 205     likes dogs and dislikes cats  catholicism             no       virgo
## 206          likes dogs and has cats      judaism             no       virgo
## 207                         has cats      judaism      sometimes      taurus
## 208                       likes dogs  catholicism             no      pisces
## 209                       likes cats christianity           <NA>     scorpio
## 210            has dogs and has cats  agnosticism             no      gemini
## 211                         has dogs      judaism             no        <NA>
## 212        likes dogs and likes cats      atheism             no         leo
## 213                             <NA>         <NA>             no   capricorn
## 214                             <NA>      judaism             no      gemini
## 215          likes dogs and has cats        other  when drinking        <NA>
## 216                       likes cats christianity             no        <NA>
## 217        likes dogs and likes cats christianity             no      cancer
## 218          likes dogs and has cats     hinduism             no       virgo
## 219     likes dogs and dislikes cats         <NA>             no       aries
## 220        likes dogs and likes cats         <NA>             no        <NA>
## 221                             <NA>         <NA>             no      pisces
## 222        likes dogs and likes cats  agnosticism             no      pisces
## 223        likes dogs and likes cats         <NA>      sometimes      gemini
## 224            has dogs and has cats christianity             no       aries
## 225        likes dogs and likes cats         <NA>            yes sagittarius
## 226          has dogs and likes cats christianity             no       virgo
## 227                             <NA>         <NA> trying to quit      gemini
## 228        likes dogs and likes cats        other             no    aquarius
## 229                         has dogs  agnosticism             no       virgo
## 230                             <NA>      judaism             no      cancer
## 231                       likes dogs      atheism           <NA>     scorpio
## 232                       likes dogs christianity             no         leo
## 233                             <NA>         <NA>             no        <NA>
## 234        likes dogs and likes cats christianity             no      pisces
## 235        likes dogs and likes cats  catholicism             no         leo
## 236                             <NA>         <NA>           <NA>     scorpio
## 237                         has dogs     buddhism  when drinking      pisces
## 238                             <NA> christianity      sometimes       libra
## 239          likes dogs and has cats         <NA>            yes      taurus
## 240          has dogs and likes cats      judaism             no    aquarius
## 241                       likes dogs christianity             no     scorpio
## 242                             <NA>         <NA>             no       virgo
## 243        likes dogs and likes cats christianity             no       aries
## 244     likes dogs and dislikes cats      atheism             no         leo
## 245                         has dogs        other             no       virgo
## 246     likes dogs and dislikes cats christianity             no     scorpio
## 247                         has dogs         <NA>             no         leo
## 248                         has cats      atheism             no      gemini
## 249                             <NA>  catholicism             no      taurus
## 250          likes dogs and has cats  agnosticism  when drinking      gemini
## 251                         has dogs         <NA>           <NA>         leo
## 252                             <NA>        other trying to quit       libra
## 253        likes dogs and likes cats     hinduism           <NA>    aquarius
## 254                       likes dogs         <NA>            yes   capricorn
## 255                         has dogs christianity           <NA>   capricorn
## 256                         has dogs christianity             no      gemini
## 257                             <NA>         <NA>           <NA>        <NA>
## 258                             <NA>         <NA>           <NA>        <NA>
## 259                         has dogs christianity             no      gemini
## 260                             <NA>         <NA>             no      pisces
## 261            has dogs and has cats         <NA>             no         leo
## 262                             <NA>         <NA>             no       aries
## 263                         has cats  catholicism             no    aquarius
## 264                         has dogs  catholicism             no      pisces
## 265          has dogs and likes cats      atheism trying to quit      pisces
## 266       has dogs and dislikes cats christianity             no      taurus
## 267          likes dogs and has cats christianity             no       libra
## 268        likes dogs and likes cats        other             no      cancer
## 269                             <NA>         <NA>             no        <NA>
## 270                       likes dogs      atheism             no      gemini
## 271                       likes dogs         <NA>             no       virgo
## 272                       likes dogs         <NA>             no         leo
## 273            has dogs and has cats      judaism             no       virgo
## 274                             <NA>  catholicism      sometimes   capricorn
## 275                             <NA>      atheism      sometimes         leo
## 276        likes dogs and likes cats      atheism             no      pisces
## 277                             <NA>         <NA>           <NA>      taurus
## 278        likes dogs and likes cats      atheism             no        <NA>
## 279                         has cats     buddhism             no    aquarius
## 280                             <NA>         <NA>           <NA>        <NA>
## 281  dislikes dogs and dislikes cats        other             no      taurus
## 282        likes dogs and likes cats        other             no       libra
## 283                         has dogs         <NA>             no       aries
## 284          has dogs and likes cats christianity             no       aries
## 285                       likes dogs christianity             no      pisces
## 286                         has cats        other             no      cancer
## 287        likes dogs and likes cats        other      sometimes       aries
## 288          likes dogs and has cats     buddhism             no      taurus
## 289                         has dogs         <NA>             no sagittarius
## 290                             <NA>         <NA>             no        <NA>
## 291        likes dogs and likes cats      atheism             no      gemini
## 292                             <NA>         <NA>             no      taurus
## 293                             <NA>  catholicism             no    aquarius
## 294                         has dogs         <NA>             no        <NA>
## 295          has dogs and likes cats         <NA>      sometimes      cancer
## 296                             <NA>         <NA>      sometimes        <NA>
## 297                             <NA> christianity             no         leo
## 298                             <NA>         <NA>             no         leo
## 299                         has dogs  agnosticism             no      taurus
## 300          likes dogs and has cats         <NA>             no     scorpio
## 301                         has dogs  agnosticism             no      pisces
## 302                       likes dogs         <NA> trying to quit       virgo
## 303        likes dogs and likes cats  agnosticism      sometimes       virgo
## 304        likes dogs and likes cats         <NA>      sometimes      taurus
## 305                       likes dogs  catholicism             no         leo
## 306     likes dogs and dislikes cats     buddhism             no       libra
## 307                             <NA> christianity             no     scorpio
## 308          likes dogs and has cats         <NA>             no        <NA>
## 309        likes dogs and likes cats        other trying to quit       libra
## 310        likes dogs and likes cats         <NA>             no    aquarius
## 311          has dogs and likes cats christianity             no     scorpio
## 312                             <NA>         <NA>             no       virgo
## 313                         has cats     buddhism             no         leo
## 314          likes dogs and has cats        other             no     scorpio
## 315                             <NA>      judaism           <NA>       aries
## 316        likes dogs and likes cats  catholicism             no        <NA>
## 317          has dogs and likes cats         <NA>             no      gemini
## 318        likes dogs and likes cats      atheism             no       libra
## 319                         has cats         <NA>             no         leo
## 320          likes dogs and has cats        other             no       virgo
## 321                         has cats         <NA>             no      pisces
## 322        likes dogs and likes cats         <NA>             no       libra
## 323            has dogs and has cats      atheism      sometimes      gemini
## 324                         has dogs        other             no        <NA>
## 325                       likes dogs        other             no      pisces
## 326                             <NA>         <NA>           <NA>        <NA>
## 327                       likes dogs         <NA>             no        <NA>
## 328        likes dogs and likes cats  agnosticism             no      pisces
## 329          likes dogs and has cats      judaism             no         leo
## 330                             <NA>        other             no       virgo
## 331                             <NA>  catholicism             no       aries
## 332                         has dogs      judaism             no       libra
## 333                             <NA>         <NA>  when drinking        <NA>
## 334            has dogs and has cats christianity             no        <NA>
## 335          likes dogs and has cats  agnosticism             no        <NA>
## 336            has dogs and has cats      atheism trying to quit   capricorn
## 337                       likes cats  catholicism             no       virgo
## 338                         has dogs  catholicism             no         leo
## 339                       likes dogs  agnosticism             no      taurus
## 340        likes dogs and likes cats        other             no     scorpio
## 341        likes dogs and likes cats        other             no         leo
## 342                       likes dogs         <NA>      sometimes      gemini
## 343                             <NA>      atheism             no      cancer
## 344       has dogs and dislikes cats christianity             no      pisces
## 345        likes dogs and likes cats  agnosticism             no      cancer
## 346        likes dogs and likes cats  agnosticism  when drinking      gemini
## 347                             <NA>         <NA>             no       virgo
## 348                         has dogs      atheism             no    aquarius
## 349                             <NA>         <NA>             no        <NA>
## 350                       likes dogs     buddhism             no      taurus
## 351        likes dogs and likes cats        islam      sometimes      cancer
## 352                       likes dogs  agnosticism           <NA>         leo
## 353        likes dogs and likes cats  agnosticism             no       libra
## 354        likes dogs and likes cats  catholicism             no       libra
## 355          likes dogs and has cats      atheism             no      cancer
## 356                             <NA>         <NA>             no        <NA>
## 357                       likes dogs     buddhism             no       aries
## 358          has dogs and likes cats         <NA>  when drinking    aquarius
## 359          likes dogs and has cats        other             no       libra
## 360                             <NA>         <NA>            yes      taurus
## 361        likes dogs and likes cats         <NA>  when drinking   capricorn
## 362            has dogs and has cats        other             no       libra
## 363        likes dogs and likes cats      atheism             no      taurus
## 364                             <NA>         <NA>             no         leo
## 365                         has dogs      judaism      sometimes       virgo
## 366                             <NA>         <NA>             no      cancer
## 367                             <NA>         <NA>             no        <NA>
## 368        likes dogs and likes cats      atheism             no         leo
## 369                             <NA>         <NA>             no        <NA>
## 370                       likes dogs         <NA>             no sagittarius
## 371                             <NA>  agnosticism             no        <NA>
## 372        likes dogs and likes cats         <NA>             no      gemini
## 373          likes dogs and has cats      atheism             no      gemini
## 374                             <NA>         <NA>           <NA>        <NA>
## 375                             <NA>  agnosticism trying to quit sagittarius
## 376                             <NA>        other            yes      pisces
## 377        likes dogs and likes cats  agnosticism      sometimes      taurus
## 378                         has dogs         <NA> trying to quit     scorpio
## 379                         has dogs christianity             no      pisces
## 380                       likes cats         <NA>             no       libra
## 381                             <NA>         <NA>             no        <NA>
## 382                             <NA>         <NA>             no    aquarius
## 383                         has cats      atheism             no        <NA>
## 384        likes dogs and likes cats         <NA>             no     scorpio
## 385        likes dogs and likes cats      atheism             no      gemini
## 386                             <NA>      atheism             no        <NA>
## 387                         has dogs         <NA>             no        <NA>
## 388            has dogs and has cats  agnosticism             no         leo
## 389                             <NA> christianity  when drinking         leo
## 390                             <NA>      judaism             no sagittarius
## 391                       likes dogs christianity             no         leo
## 392                             <NA> christianity             no       aries
## 393          has dogs and likes cats  catholicism             no    aquarius
## 394                         has dogs  agnosticism             no        <NA>
## 395                       likes dogs         <NA>             no sagittarius
## 396                         has cats        other             no   capricorn
## 397        likes dogs and likes cats        other             no      gemini
## 398        likes dogs and likes cats        other             no      cancer
## 399     likes dogs and dislikes cats  agnosticism             no       libra
## 400                             <NA>         <NA>             no   capricorn
## 401                             <NA>         <NA>           <NA>        <NA>
## 402                       likes dogs        other  when drinking      cancer
## 403        likes dogs and likes cats        other             no        <NA>
## 404          likes dogs and has cats  catholicism             no      gemini
## 405        likes dogs and likes cats        other             no       libra
## 406                         has cats     buddhism             no      cancer
## 407                       likes dogs         <NA>             no       libra
## 408                             <NA>         <NA>             no        <NA>
## 409                             <NA>      judaism             no   capricorn
## 410                       likes dogs         <NA>             no        <NA>
## 411     likes dogs and dislikes cats         <NA>             no       libra
## 412     likes dogs and dislikes cats  catholicism             no      taurus
## 413        likes dogs and likes cats         <NA>             no      gemini
## 414                             <NA>  agnosticism             no sagittarius
## 415          likes dogs and has cats        other             no       virgo
## 416                    dislikes cats christianity             no   capricorn
## 417                             <NA>         <NA>             no       aries
## 418        likes dogs and likes cats christianity           <NA>      cancer
## 419     likes dogs and dislikes cats  catholicism             no sagittarius
## 420  dislikes dogs and dislikes cats      judaism             no        <NA>
## 421        likes dogs and likes cats  agnosticism             no       libra
## 422        likes dogs and likes cats  agnosticism             no        <NA>
## 423        likes dogs and likes cats  agnosticism             no       aries
## 424          has dogs and likes cats     buddhism      sometimes    aquarius
## 425                             <NA>  agnosticism           <NA>   capricorn
## 426                         has cats  agnosticism             no        <NA>
## 427                             <NA>         <NA>             no       libra
## 428                             <NA>  agnosticism             no   capricorn
## 429                             <NA>         <NA>             no       libra
## 430                             <NA>         <NA>             no      pisces
## 431        likes dogs and likes cats         <NA>             no        <NA>
## 432     likes dogs and dislikes cats      atheism             no      taurus
## 433       has dogs and dislikes cats christianity           <NA>       virgo
## 434                             <NA>         <NA>             no      pisces
## 435                             <NA> christianity             no    aquarius
## 436                       likes dogs  catholicism             no       virgo
## 437          likes dogs and has cats  catholicism             no       virgo
## 438                       likes cats        other             no      gemini
## 439     likes dogs and dislikes cats         <NA>             no sagittarius
## 440                         has dogs         <NA>             no sagittarius
## 441                             <NA>         <NA>      sometimes    aquarius
## 442                             <NA>         <NA>           <NA>   capricorn
## 443        likes dogs and likes cats  catholicism            yes       libra
## 444        likes dogs and likes cats        other             no    aquarius
## 445                             <NA>         <NA>             no        <NA>
## 446        likes dogs and likes cats  catholicism           <NA>      taurus
## 447                             <NA>         <NA>             no      cancer
## 448     likes dogs and dislikes cats         <NA>           <NA>        <NA>
## 449        likes dogs and likes cats        islam            yes        <NA>
## 450        likes dogs and likes cats     buddhism             no       virgo
## 451          likes dogs and has cats  agnosticism             no    aquarius
## 452                             <NA>  catholicism      sometimes       aries
## 453                         has dogs  agnosticism             no sagittarius
## 454                             <NA> christianity             no      gemini
## 455                       likes dogs         <NA>             no       libra
## 456                             <NA>     buddhism             no     scorpio
## 457                             <NA>         <NA>           <NA>        <NA>
## 458                             <NA>     hinduism             no        <NA>
## 459        likes dogs and likes cats        other             no      pisces
## 460        likes dogs and likes cats     buddhism             no       aries
## 461                       likes dogs  catholicism             no      pisces
## 462                       likes dogs         <NA>             no       libra
## 463                             <NA>  agnosticism           <NA>        <NA>
## 464        likes dogs and likes cats  agnosticism trying to quit   capricorn
## 465                         has dogs christianity           <NA>        <NA>
## 466                             <NA>         <NA>  when drinking        <NA>
## 467          has dogs and likes cats  catholicism             no      cancer
## 468        likes dogs and likes cats  agnosticism             no sagittarius
## 469                       likes dogs  catholicism             no sagittarius
## 470        likes dogs and likes cats christianity             no      taurus
## 471                             <NA>        other             no       aries
## 472                       likes dogs        other             no       virgo
## 473        likes dogs and likes cats        other             no       virgo
## 474        likes dogs and likes cats christianity trying to quit      taurus
## 475        likes dogs and likes cats         <NA>             no      pisces
## 476        likes dogs and likes cats christianity             no         leo
## 477        likes dogs and likes cats  agnosticism             no   capricorn
## 478                             <NA>         <NA>  when drinking       libra
## 479          likes dogs and has cats  agnosticism             no         leo
## 480                             <NA>         <NA>             no       aries
## 481          has dogs and likes cats         <NA>             no      taurus
## 482                             <NA>      atheism           <NA>       virgo
## 483                             <NA>         <NA>             no       virgo
## 484        likes dogs and likes cats  agnosticism             no sagittarius
## 485                       likes dogs         <NA>             no         leo
## 486                         has dogs      atheism            yes    aquarius
## 487                             <NA>     buddhism             no       aries
## 488        likes dogs and likes cats         <NA>             no      cancer
## 489        likes dogs and likes cats         <NA>             no      taurus
## 490                         has dogs      atheism             no      cancer
## 491     likes dogs and dislikes cats        other             no         leo
## 492            has dogs and has cats        other             no   capricorn
## 493        likes dogs and likes cats         <NA> trying to quit      taurus
## 494        likes dogs and likes cats      judaism             no     scorpio
## 495                             <NA>      judaism             no        <NA>
## 496          likes dogs and has cats  agnosticism             no       libra
## 497  dislikes dogs and dislikes cats        other             no     scorpio
## 498                             <NA>         <NA>             no       aries
## 499        likes dogs and likes cats         <NA>             no      gemini
## 500                             <NA>         <NA>             no        <NA>
## 501                             <NA>         <NA>           <NA>        <NA>
## 502                             <NA>  agnosticism             no    aquarius
## 503        likes dogs and likes cats  agnosticism             no         leo
## 504                         has dogs         <NA>             no sagittarius
## 505        likes dogs and likes cats        other             no       aries
## 506                       likes dogs         <NA>           <NA>      pisces
## 507                         has dogs  catholicism             no     scorpio
## 508        likes dogs and likes cats      atheism             no   capricorn
## 509                             <NA> christianity             no       libra
## 510                             <NA> christianity             no       virgo
## 511                             <NA>     buddhism           <NA>      pisces
## 512                             <NA>        other             no      gemini
## 513          likes dogs and has cats      atheism  when drinking         leo
## 514                       likes dogs  agnosticism             no     scorpio
## 515     likes dogs and dislikes cats         <NA>             no    aquarius
## 516        likes dogs and likes cats     buddhism             no       virgo
## 517                       likes dogs         <NA>             no        <NA>
## 518                       likes dogs christianity             no       libra
## 519        likes dogs and likes cats     buddhism trying to quit      cancer
## 520          likes dogs and has cats        other  when drinking     scorpio
## 521        likes dogs and likes cats         <NA>             no      cancer
## 522                             <NA>         <NA>             no         leo
## 523                             <NA>         <NA>      sometimes      cancer
## 524          likes dogs and has cats  agnosticism             no sagittarius
## 525                         has dogs         <NA>             no      taurus
## 526     likes dogs and dislikes cats  agnosticism             no   capricorn
## 527                             <NA>        other             no      cancer
## 528                       likes dogs         <NA>      sometimes       libra
## 529        likes dogs and likes cats         <NA>             no      taurus
## 530                       likes dogs         <NA>             no      pisces
## 531        likes dogs and likes cats        other             no   capricorn
## 532          likes dogs and has cats christianity             no      taurus
## 533        likes dogs and likes cats christianity             no    aquarius
## 534                             <NA>        other      sometimes       aries
## 535                             <NA> christianity             no     scorpio
## 536            has dogs and has cats     buddhism             no      cancer
## 537            has dogs and has cats         <NA>            yes       virgo
## 538                       likes dogs      atheism             no       aries
## 539                       likes dogs         <NA>             no    aquarius
## 540                             <NA>      atheism             no      gemini
## 541                             <NA>         <NA>             no        <NA>
## 542                             <NA>         <NA> trying to quit sagittarius
## 543        likes dogs and likes cats  agnosticism             no    aquarius
## 544        likes dogs and likes cats         <NA>             no      gemini
## 545                         has dogs         <NA>             no         leo
## 546        likes dogs and likes cats  agnosticism             no         leo
## 547        likes dogs and likes cats     buddhism  when drinking       aries
## 548                             <NA>         <NA> trying to quit    aquarius
## 549                             <NA>        other            yes      gemini
## 550          has dogs and likes cats         <NA>            yes sagittarius
## 551                       likes dogs         <NA>             no        <NA>
## 552                             <NA>         <NA>             no     scorpio
## 553          likes dogs and has cats        other             no    aquarius
## 554                             <NA>         <NA>             no        <NA>
## 555                             <NA>         <NA>             no        <NA>
## 556                       likes dogs         <NA>             no    aquarius
## 557          likes dogs and has cats         <NA>             no      taurus
## 558                       likes dogs christianity             no        <NA>
## 559        likes dogs and likes cats christianity           <NA>     scorpio
## 560                         has cats         <NA>             no sagittarius
## 561        likes dogs and likes cats      atheism             no      gemini
## 562                             <NA>        other             no sagittarius
## 563          has dogs and likes cats      atheism             no       virgo
## 564                             <NA>         <NA>            yes         leo
## 565        likes dogs and likes cats      atheism             no      cancer
## 566        likes dogs and likes cats        other             no    aquarius
## 567                             <NA>         <NA>             no      cancer
## 568                       likes dogs         <NA>      sometimes    aquarius
## 569        likes dogs and likes cats        other             no       libra
## 570                             <NA> christianity             no sagittarius
## 571                         has dogs  catholicism             no       libra
## 572                         has dogs christianity             no      pisces
## 573                       likes dogs christianity             no       virgo
## 574                             <NA> christianity             no      pisces
## 575                       likes dogs  catholicism trying to quit      pisces
## 576     likes dogs and dislikes cats  catholicism             no      gemini
## 577                             <NA>  catholicism  when drinking         leo
## 578                             <NA>     hinduism             no       virgo
## 579                             <NA>         <NA>             no       libra
## 580                             <NA> christianity             no        <NA>
## 581                         has dogs christianity trying to quit      cancer
## 582            has dogs and has cats         <NA>             no      gemini
## 583          likes dogs and has cats         <NA>             no      gemini
## 584          likes dogs and has cats         <NA>             no      gemini
## 585                             <NA> christianity             no     scorpio
## 586          has dogs and likes cats christianity             no      gemini
## 587        likes dogs and likes cats      atheism             no        <NA>
## 588                       likes dogs     hinduism             no      cancer
## 589                             <NA>         <NA>           <NA>      cancer
## 590                             <NA>        other             no sagittarius
## 591          likes dogs and has cats        other  when drinking       aries
## 592        likes dogs and likes cats        other             no    aquarius
## 593        likes dogs and likes cats      atheism             no      pisces
## 594                         has cats      judaism             no    aquarius
## 595          likes dogs and has cats      judaism             no      cancer
## 596                             <NA>      judaism             no sagittarius
## 597                             <NA>         <NA>           <NA>        <NA>
## 598        likes dogs and likes cats        other             no    aquarius
## 599        likes dogs and likes cats  catholicism             no sagittarius
## 600                             <NA>         <NA>           <NA>      gemini
## 601     likes dogs and dislikes cats        other             no       virgo
## 602                       likes dogs         <NA>             no       libra
## 603                         has dogs  catholicism             no        <NA>
## 604                         has dogs  catholicism             no     scorpio
## 605        likes dogs and likes cats  agnosticism             no        <NA>
## 606        likes dogs and likes cats  agnosticism             no         leo
## 607                         has dogs         <NA>             no       virgo
## 608        likes dogs and likes cats         <NA>             no      taurus
## 609                             <NA>         <NA>             no        <NA>
## 610        likes dogs and likes cats  catholicism             no       libra
## 611                             <NA>      judaism             no        <NA>
## 612                         has dogs      judaism             no     scorpio
## 613        likes dogs and likes cats      atheism             no      cancer
## 614                       likes dogs      judaism  when drinking      taurus
## 615            has dogs and has cats  catholicism             no      cancer
## 616          has dogs and likes cats christianity             no    aquarius
## 617  dislikes dogs and dislikes cats  agnosticism            yes   capricorn
## 618                         has dogs  catholicism           <NA>         leo
## 619     likes dogs and dislikes cats  agnosticism             no        <NA>
## 620                             <NA>         <NA>             no        <NA>
## 621        likes dogs and likes cats christianity      sometimes      cancer
## 622                             <NA>        other             no        <NA>
## 623                         has dogs  agnosticism             no      taurus
## 624     likes dogs and dislikes cats christianity             no       virgo
## 625        likes dogs and likes cats        other trying to quit    aquarius
## 626                             <NA>      judaism             no      pisces
## 627                         has dogs  catholicism             no     scorpio
## 628                       likes dogs     buddhism             no        <NA>
## 629                       likes dogs      atheism             no         leo
## 630                             <NA>         <NA>      sometimes        <NA>
## 631                             <NA>         <NA>             no       libra
## 632                       likes dogs         <NA>             no      cancer
## 633     likes dogs and dislikes cats        other  when drinking     scorpio
## 634                             <NA>         <NA>             no        <NA>
## 635          likes dogs and has cats  agnosticism  when drinking       aries
## 636          likes dogs and has cats         <NA>             no       libra
## 637                         has cats     buddhism             no    aquarius
## 638                         has dogs      judaism             no       virgo
## 639        likes dogs and likes cats         <NA> trying to quit sagittarius
## 640                       likes cats  catholicism             no       virgo
## 641        likes dogs and likes cats  catholicism             no   capricorn
## 642          has dogs and likes cats         <NA>             no      gemini
## 643          likes dogs and has cats      judaism             no      pisces
## 644                             <NA>     buddhism           <NA>    aquarius
## 645                             <NA>        other trying to quit      cancer
## 646        likes dogs and likes cats         <NA>             no    aquarius
## 647                             <NA>  catholicism             no      gemini
## 648                       likes dogs         <NA>             no      pisces
## 649                             <NA>         <NA>             no       aries
## 650            has dogs and has cats         <NA>             no      gemini
## 651                             <NA>         <NA>             no        <NA>
## 652                             <NA>  catholicism             no        <NA>
## 653                         has cats         <NA>             no       aries
## 654          likes dogs and has cats      atheism             no      cancer
## 655        likes dogs and likes cats  agnosticism             no       aries
## 656                             <NA>         <NA>             no       libra
## 657     likes dogs and dislikes cats  catholicism             no     scorpio
## 658                             <NA>  catholicism             no       virgo
## 659                             <NA>         <NA>             no       libra
## 660                             <NA> christianity      sometimes   capricorn
## 661        likes dogs and likes cats        other             no      pisces
## 662        likes dogs and likes cats      atheism             no     scorpio
## 663        likes dogs and likes cats  agnosticism             no      gemini
## 664        likes dogs and likes cats  agnosticism             no      cancer
## 665                             <NA>        other             no      taurus
## 666          has dogs and likes cats  agnosticism             no   capricorn
## 667                       likes dogs christianity             no      gemini
## 668          has dogs and likes cats        other             no      taurus
## 669                       likes dogs      judaism             no sagittarius
## 670                             <NA>      atheism             no     scorpio
## 671        likes dogs and likes cats         <NA>             no sagittarius
## 672                             <NA>        other             no      pisces
## 673     likes dogs and dislikes cats         <NA>             no        <NA>
## 674        likes dogs and likes cats  agnosticism trying to quit      taurus
## 675                             <NA>        other             no      taurus
## 676        likes dogs and likes cats christianity             no       virgo
## 677                             <NA>  agnosticism             no        <NA>
## 678        likes dogs and likes cats         <NA>  when drinking      cancer
## 679        likes dogs and likes cats christianity  when drinking   capricorn
## 680          likes dogs and has cats        other             no        <NA>
## 681          has dogs and likes cats         <NA>             no      pisces
## 682          likes dogs and has cats        other      sometimes      pisces
## 683                             <NA>         <NA>             no     scorpio
## 684          has dogs and likes cats  catholicism             no sagittarius
## 685        likes dogs and likes cats         <NA>             no sagittarius
## 686        likes dogs and likes cats  agnosticism             no        <NA>
## 687                         has dogs         <NA>      sometimes      taurus
## 688          has dogs and likes cats  agnosticism      sometimes      gemini
## 689        likes dogs and likes cats         <NA>             no   capricorn
## 690                       likes dogs      atheism             no       virgo
## 691        likes dogs and likes cats         <NA>             no         leo
## 692        likes dogs and likes cats  catholicism             no      pisces
## 693            has dogs and has cats         <NA>      sometimes         leo
## 694            has dogs and has cats      judaism             no       libra
## 695                       likes dogs     buddhism             no      pisces
## 696                             <NA>         <NA>           <NA>        <NA>
## 697                         has dogs      atheism             no        <NA>
## 698                             <NA>        other             no       libra
## 699                             <NA>         <NA>  when drinking        <NA>
## 700          has dogs and likes cats        other             no     scorpio
## 701                             <NA>      atheism             no sagittarius
## 702                             <NA>  agnosticism            yes       aries
## 703                         has cats      atheism            yes      gemini
## 704       has dogs and dislikes cats christianity  when drinking       libra
## 705                             <NA>  agnosticism             no       aries
## 706                             <NA>         <NA>             no      cancer
## 707                             <NA>         <NA>             no       libra
## 708        likes dogs and likes cats      judaism             no    aquarius
## 709        likes dogs and likes cats     buddhism           <NA>      cancer
## 710     likes dogs and dislikes cats  catholicism             no      gemini
## 711                             <NA>         <NA>           <NA>      gemini
## 712            has dogs and has cats  catholicism trying to quit sagittarius
## 713                             <NA>         <NA>           <NA>        <NA>
## 714          likes dogs and has cats      atheism             no        <NA>
## 715                         has dogs         <NA>             no      taurus
## 716          likes dogs and has cats        other           <NA>     scorpio
## 717                         has dogs christianity             no       virgo
## 718                             <NA> christianity             no         leo
## 719                             <NA>         <NA>           <NA>        <NA>
## 720                       likes cats  agnosticism      sometimes     scorpio
## 721                       likes dogs         <NA>  when drinking        <NA>
## 722                       likes dogs         <NA>             no      cancer
## 723        likes dogs and likes cats  catholicism             no      taurus
## 724                             <NA>     buddhism  when drinking     scorpio
## 725        likes dogs and likes cats     buddhism             no      pisces
## 726                       likes dogs         <NA>             no sagittarius
## 727                         has dogs        other trying to quit      taurus
## 728            has dogs and has cats  agnosticism             no       aries
## 729                             <NA>         <NA>             no        <NA>
## 730                             <NA>         <NA>             no    aquarius
## 731                         has dogs  catholicism             no   capricorn
## 732                             <NA>  agnosticism             no      cancer
## 733        likes dogs and likes cats  catholicism             no     scorpio
## 734                             <NA>         <NA> trying to quit       virgo
## 735                             <NA> christianity      sometimes      gemini
## 736        likes dogs and likes cats         <NA>             no      pisces
## 737        likes dogs and likes cats        other trying to quit       libra
## 738        likes dogs and likes cats      atheism           <NA>        <NA>
## 739          likes dogs and has cats        other trying to quit     scorpio
## 740          likes dogs and has cats  catholicism             no       libra
## 741     likes dogs and dislikes cats christianity             no      taurus
## 742                       likes cats  agnosticism             no      gemini
## 743                             <NA>  agnosticism           <NA>     scorpio
## 744     likes dogs and dislikes cats      atheism             no       libra
## 745                       likes dogs  catholicism             no      gemini
## 746        likes dogs and likes cats  agnosticism             no sagittarius
## 747                       likes cats  agnosticism           <NA>       aries
## 748                             <NA> christianity             no        <NA>
## 749     likes dogs and dislikes cats      atheism            yes       virgo
## 750          has dogs and likes cats christianity             no    aquarius
## 751        likes dogs and likes cats        other             no   capricorn
## 752                             <NA>         <NA>             no     scorpio
## 753                             <NA>         <NA>             no      gemini
## 754        likes dogs and likes cats christianity             no      gemini
## 755                             <NA> christianity             no         leo
## 756        likes dogs and likes cats        other      sometimes      gemini
## 757                             <NA>  agnosticism             no    aquarius
## 758                             <NA> christianity             no      taurus
## 759                             <NA>  agnosticism             no        <NA>
## 760          has dogs and likes cats         <NA>             no      gemini
## 761                       likes dogs         <NA>             no      taurus
## 762                             <NA>         <NA>             no        <NA>
## 763       has dogs and dislikes cats christianity             no        <NA>
## 764                             <NA> christianity      sometimes        <NA>
## 765        likes dogs and likes cats      atheism             no      taurus
## 766     likes dogs and dislikes cats        other             no      pisces
## 767                             <NA>      atheism trying to quit sagittarius
## 768                             <NA>  catholicism             no        <NA>
## 769                       likes dogs  agnosticism             no        <NA>
## 770        likes dogs and likes cats         <NA>      sometimes     scorpio
## 771                             <NA>         <NA>           <NA>        <NA>
## 772        likes dogs and likes cats         <NA>             no       libra
## 773                             <NA>        other trying to quit      cancer
## 774                             <NA>  agnosticism             no sagittarius
## 775                       likes dogs      judaism trying to quit         leo
## 776                       likes dogs      atheism            yes         leo
## 777        likes dogs and likes cats      judaism             no       aries
## 778        likes dogs and likes cats  agnosticism  when drinking       aries
## 779          has dogs and likes cats  catholicism      sometimes   capricorn
## 780        likes dogs and likes cats      atheism             no      taurus
## 781                       likes dogs         <NA>             no   capricorn
## 782  dislikes dogs and dislikes cats  agnosticism             no         leo
## 783                         has dogs  catholicism             no       libra
## 784                       likes dogs  catholicism             no      cancer
## 785                       likes dogs  catholicism             no      taurus
## 786        likes dogs and likes cats        other  when drinking      cancer
## 787        likes dogs and likes cats         <NA>             no       aries
## 788          has dogs and likes cats         <NA>             no         leo
## 789                         has cats         <NA>             no   capricorn
## 790                       likes dogs  catholicism             no       aries
## 791                             <NA>        other            yes      gemini
## 792        likes dogs and likes cats         <NA>             no    aquarius
## 793                             <NA>         <NA>      sometimes         leo
## 794                             <NA>  agnosticism             no    aquarius
## 795                             <NA> christianity             no       libra
## 796     likes dogs and dislikes cats christianity             no       virgo
## 797                    dislikes cats         <NA>             no      pisces
## 798                             <NA>         <NA>             no       libra
## 799        likes dogs and likes cats christianity      sometimes       aries
## 800        likes dogs and likes cats christianity             no       virgo
## 801        likes dogs and likes cats        other             no    aquarius
## 802          likes dogs and has cats  agnosticism             no         leo
## 803          has dogs and likes cats        other             no sagittarius
## 804                             <NA>         <NA>           <NA>        <NA>
## 805                             <NA>        other      sometimes       virgo
## 806                             <NA> christianity             no        <NA>
## 807                         has dogs  agnosticism             no      taurus
## 808                       likes cats         <NA>             no      cancer
## 809                       likes cats        other             no      taurus
## 810        likes dogs and likes cats      judaism             no        <NA>
## 811                             <NA>         <NA>             no       virgo
## 812        likes dogs and likes cats         <NA>             no       aries
## 813                             <NA>         <NA>           <NA>        <NA>
## 814                         has dogs  catholicism             no      pisces
## 815        likes dogs and likes cats         <NA>             no        <NA>
## 816                             <NA>      atheism             no        <NA>
## 817                             <NA>         <NA>             no      gemini
## 818                       likes dogs christianity             no sagittarius
## 819                             <NA>         <NA>             no        <NA>
## 820          likes dogs and has cats         <NA>             no         leo
## 821                             <NA>         <NA>           <NA>      cancer
## 822        likes dogs and likes cats        other             no      pisces
## 823          has dogs and likes cats        other             no     scorpio
## 824        likes dogs and likes cats      atheism             no      cancer
## 825        likes dogs and likes cats      atheism             no     scorpio
## 826                       likes cats  agnosticism             no        <NA>
## 827        likes dogs and likes cats        other trying to quit sagittarius
## 828                             <NA>         <NA>             no        <NA>
## 829                       likes dogs         <NA>            yes         leo
## 830                             <NA>         <NA>             no   capricorn
## 831        likes dogs and likes cats         <NA>             no        <NA>
## 832        likes dogs and likes cats  agnosticism  when drinking     scorpio
## 833                             <NA>  agnosticism           <NA>      pisces
## 834                       likes dogs  agnosticism             no sagittarius
## 835          likes dogs and has cats         <NA>      sometimes       libra
## 836                             <NA>  agnosticism             no sagittarius
## 837        likes dogs and likes cats      atheism             no   capricorn
## 838        likes dogs and likes cats      atheism            yes        <NA>
## 839        likes dogs and likes cats        other             no   capricorn
## 840          has dogs and likes cats christianity             no      cancer
## 841        likes dogs and likes cats         <NA>             no       virgo
## 842                       likes cats         <NA>             no      taurus
## 843                         has dogs christianity             no      pisces
## 844                             <NA>         <NA>             no      taurus
## 845            has dogs and has cats      atheism             no      taurus
## 846                         has dogs         <NA>             no      cancer
## 847        likes dogs and likes cats         <NA>             no       virgo
## 848                         has cats      atheism             no    aquarius
## 849                       likes dogs        other             no       aries
## 850                             <NA>      atheism             no    aquarius
## 851        likes dogs and likes cats      atheism             no      taurus
## 852                             <NA>         <NA>           <NA>     scorpio
## 853                             <NA>         <NA>             no        <NA>
## 854                             <NA>         <NA>             no       virgo
## 855          likes dogs and has cats         <NA>           <NA>         leo
## 856                       likes dogs      judaism             no      taurus
## 857                       likes dogs         <NA>             no     scorpio
## 858     likes dogs and dislikes cats  agnosticism             no    aquarius
## 859          likes dogs and has cats        other            yes       virgo
## 860                             <NA>         <NA>             no        <NA>
## 861        likes dogs and likes cats         <NA>             no       libra
## 862                             <NA>      atheism             no        <NA>
## 863                             <NA>  agnosticism             no      cancer
## 864                             <NA>         <NA>             no        <NA>
## 865                       likes cats  agnosticism             no      gemini
## 866                         has dogs         <NA>             no        <NA>
## 867        likes dogs and likes cats      atheism             no       virgo
## 868                       likes dogs         <NA>             no     scorpio
## 869        likes dogs and likes cats  agnosticism             no       virgo
## 870        likes dogs and likes cats      atheism  when drinking       virgo
## 871                             <NA>        other             no   capricorn
## 872                             <NA>      atheism             no        <NA>
## 873                         has dogs        other  when drinking    aquarius
## 874                             <NA>         <NA>           <NA>        <NA>
## 875                             <NA>         <NA>             no      taurus
## 876        likes dogs and likes cats  agnosticism             no       aries
## 877        likes dogs and likes cats         <NA>             no   capricorn
## 878        likes dogs and likes cats  agnosticism  when drinking      pisces
## 879                             <NA>  agnosticism             no        <NA>
## 880          likes dogs and has cats      atheism             no    aquarius
## 881                         has dogs         <NA>           <NA>       libra
## 882                             <NA>  catholicism             no   capricorn
## 883        likes dogs and likes cats         <NA>      sometimes     scorpio
## 884                             <NA>         <NA>           <NA>        <NA>
## 885        likes dogs and likes cats        other             no     scorpio
## 886        likes dogs and likes cats         <NA>             no    aquarius
## 887                       likes dogs         <NA>             no        <NA>
## 888        likes dogs and likes cats         <NA>           <NA>      pisces
## 889                         has cats  agnosticism             no      cancer
## 890                       likes cats         <NA>             no        <NA>
## 891                             <NA>         <NA>             no    aquarius
## 892                             <NA>         <NA>             no       libra
## 893                       likes dogs  agnosticism            yes       virgo
## 894        likes dogs and likes cats  agnosticism             no      cancer
## 895        likes dogs and likes cats        other      sometimes      gemini
## 896        likes dogs and likes cats christianity             no sagittarius
## 897                             <NA>         <NA>             no        <NA>
## 898                             <NA>         <NA>      sometimes         leo
## 899                         has cats         <NA>             no         leo
## 900                             <NA>  agnosticism           <NA>        <NA>
## 901                         has dogs christianity             no      taurus
## 902                             <NA>        other trying to quit       libra
## 903                       likes dogs         <NA>             no      taurus
## 904       has dogs and dislikes cats        other             no      taurus
## 905                       likes dogs  catholicism             no        <NA>
## 906          likes dogs and has cats      judaism             no     scorpio
## 907                         has cats  agnosticism  when drinking      taurus
## 908                             <NA>  agnosticism             no      gemini
## 909                         has cats         <NA>           <NA>        <NA>
## 910        likes dogs and likes cats      judaism             no       aries
## 911          likes dogs and has cats christianity             no     scorpio
## 912                             <NA>         <NA>             no        <NA>
## 913        likes dogs and likes cats     buddhism             no      taurus
## 914                             <NA>  agnosticism             no      gemini
## 915          likes dogs and has cats        other             no sagittarius
## 916        likes dogs and likes cats  agnosticism             no      taurus
## 917        likes dogs and likes cats  agnosticism             no    aquarius
## 918                             <NA>     buddhism             no      taurus
## 919                             <NA>         <NA>             no         leo
## 920            has dogs and has cats      atheism             no         leo
## 921          likes dogs and has cats      atheism trying to quit sagittarius
## 922        likes dogs and likes cats         <NA>  when drinking      cancer
## 923        likes dogs and likes cats         <NA>             no         leo
## 924                             <NA>      atheism             no      pisces
## 925                             <NA>      atheism             no      taurus
## 926                             <NA>         <NA>           <NA>   capricorn
## 927                             <NA>         <NA>             no   capricorn
## 928     likes dogs and dislikes cats         <NA>             no       aries
## 929                             <NA>  agnosticism             no        <NA>
## 930                             <NA>         <NA>  when drinking      cancer
## 931                             <NA> christianity             no        <NA>
## 932        likes dogs and likes cats      atheism             no       aries
## 933        likes dogs and likes cats         <NA> trying to quit        <NA>
## 934        likes dogs and likes cats         <NA>             no      pisces
## 935                         has cats      atheism             no      gemini
## 936        likes dogs and likes cats christianity             no      gemini
## 937        likes dogs and likes cats         <NA>             no       aries
## 938        likes dogs and likes cats  agnosticism             no      gemini
## 939                         has dogs         <NA>           <NA>        <NA>
## 940                             <NA>         <NA>           <NA>       libra
## 941                             <NA>         <NA>             no        <NA>
## 942                             <NA>  agnosticism             no      pisces
## 943        likes dogs and likes cats      atheism            yes sagittarius
## 944        likes dogs and likes cats      atheism      sometimes      taurus
## 945                             <NA>         <NA>  when drinking   capricorn
## 946        likes dogs and likes cats         <NA>             no        <NA>
## 947                             <NA>         <NA>           <NA>      gemini
## 948          likes dogs and has cats      atheism             no        <NA>
## 949        likes dogs and likes cats      atheism             no sagittarius
## 950                             <NA>         <NA>             no     scorpio
## 951        likes dogs and likes cats      atheism             no      taurus
## 952                       likes cats  agnosticism             no         leo
## 953                         has dogs  agnosticism  when drinking         leo
## 954            has dogs and has cats  agnosticism            yes       virgo
## 955                             <NA>  agnosticism             no        <NA>
## 956                             <NA>         <NA>             no       libra
## 957        likes dogs and likes cats  agnosticism             no        <NA>
## 958        likes dogs and likes cats      atheism             no sagittarius
## 959        likes dogs and likes cats        other             no      cancer
## 960            has dogs and has cats         <NA>             no   capricorn
## 961                             <NA>         <NA>             no       aries
## 962        likes dogs and likes cats      judaism             no        <NA>
## 963                             <NA>  agnosticism           <NA>     scorpio
## 964                             <NA>         <NA>             no        <NA>
## 965                             <NA>  agnosticism             no      cancer
## 966                             <NA>         <NA>           <NA>        <NA>
## 967                             <NA>         <NA>  when drinking sagittarius
## 968            has dogs and has cats        other      sometimes      pisces
## 969                         has dogs         <NA>             no        <NA>
## 970          likes dogs and has cats      atheism             no       aries
## 971                             <NA>      atheism  when drinking       aries
## 972     likes dogs and dislikes cats         <NA>             no      cancer
## 973                             <NA>         <NA>             no       aries
## 974                       likes dogs  catholicism           <NA>         leo
## 975                         has dogs      atheism             no         leo
## 976                             <NA>      atheism             no         leo
## 977                             <NA>         <NA>           <NA>      cancer
## 978        likes dogs and likes cats  catholicism             no     scorpio
## 979                             <NA>      atheism             no        <NA>
## 980                             <NA>      atheism           <NA>        <NA>
## 981          likes dogs and has cats      atheism             no sagittarius
## 982          has dogs and likes cats      atheism             no       virgo
## 983                             <NA>         <NA>             no       virgo
## 984                         has dogs         <NA>             no       aries
## 985          likes dogs and has cats      judaism             no       aries
## 986                       likes dogs         <NA>             no      cancer
## 987        likes dogs and likes cats  agnosticism             no      taurus
## 988          likes dogs and has cats      atheism  when drinking      gemini
## 989                             <NA>        other             no         leo
## 990        likes dogs and likes cats         <NA>           <NA>       libra
## 991          has dogs and likes cats         <NA>             no      taurus
## 992          has dogs and likes cats  agnosticism             no sagittarius
## 993                         has dogs  catholicism             no       aries
## 994                             <NA>         <NA>             no      cancer
## 995       has dogs and dislikes cats christianity             no sagittarius
## 996                         has dogs christianity             no      pisces
## 997        likes dogs and likes cats  agnosticism             no       libra
## 998        likes dogs and likes cats         <NA>             no         leo
## 999                         has dogs        other             no      taurus
## 1000    likes dogs and dislikes cats         <NA>             no      cancer
## 1001                            <NA>         <NA>           <NA>        <NA>
## 1002       likes dogs and likes cats      judaism             no       virgo
## 1003                            <NA>  agnosticism           <NA>       aries
## 1004       likes dogs and likes cats         <NA>             no    aquarius
## 1005         has dogs and likes cats         <NA>             no    aquarius
## 1006       likes dogs and likes cats      atheism      sometimes   capricorn
## 1007    dislikes dogs and likes cats      atheism             no   capricorn
## 1008                            <NA>  catholicism             no         leo
## 1009       likes dogs and likes cats        other             no      gemini
## 1010         likes dogs and has cats      judaism             no       libra
## 1011                      likes dogs         <NA>             no        <NA>
## 1012       likes dogs and likes cats         <NA>             no    aquarius
## 1013                      likes dogs         <NA>             no     scorpio
## 1014       likes dogs and likes cats  agnosticism             no       virgo
## 1015       likes dogs and likes cats      atheism             no      taurus
## 1016       likes dogs and likes cats  agnosticism           <NA>      gemini
## 1017                            <NA>      atheism            yes sagittarius
## 1018                      likes dogs      atheism             no sagittarius
## 1019                            <NA>         <NA>             no      taurus
## 1020       likes dogs and likes cats        other             no      taurus
## 1021                        has dogs  agnosticism trying to quit    aquarius
## 1022                      likes dogs      atheism             no       aries
## 1023                            <NA>      atheism  when drinking        <NA>
## 1024                        has cats        other      sometimes        <NA>
## 1025                        has cats  agnosticism             no        <NA>
## 1026       likes dogs and likes cats  agnosticism             no       virgo
## 1027                      likes dogs         <NA>             no        <NA>
## 1028                      likes dogs  agnosticism             no       libra
## 1029       likes dogs and likes cats christianity             no       virgo
## 1030                            <NA>      atheism             no        <NA>
## 1031                            <NA>         <NA>             no        <NA>
## 1032       likes dogs and likes cats     hinduism             no       virgo
## 1033                            <NA>         <NA>             no    aquarius
## 1034                        has cats         <NA>             no sagittarius
## 1035                        has dogs         <NA>             no      cancer
## 1036                            <NA>         <NA>             no        <NA>
## 1037           has dogs and has cats     buddhism trying to quit   capricorn
## 1038                            <NA>  catholicism             no      pisces
## 1039         has dogs and likes cats      atheism           <NA>         leo
## 1040                            <NA>  agnosticism           <NA>   capricorn
## 1041                            <NA> christianity             no      gemini
## 1042                            <NA>         <NA>             no         leo
## 1043       likes dogs and likes cats         <NA>             no      taurus
## 1044                        has dogs        other             no     scorpio
## 1045                            <NA>        other             no         leo
## 1046       likes dogs and likes cats  agnosticism             no       aries
## 1047       likes dogs and likes cats      atheism             no         leo
## 1048       likes dogs and likes cats         <NA>             no    aquarius
## 1049                      likes dogs         <NA>             no     scorpio
## 1050       likes dogs and likes cats christianity             no      pisces
## 1051         likes dogs and has cats        other            yes       libra
## 1052                            <NA>        other             no         leo
## 1053                      likes dogs         <NA>             no        <NA>
## 1054       likes dogs and likes cats         <NA>             no      cancer
## 1055       likes dogs and likes cats      judaism           <NA>    aquarius
## 1056                            <NA>      judaism  when drinking      gemini
## 1057       likes dogs and likes cats         <NA>             no     scorpio
## 1058           has dogs and has cats  catholicism             no   capricorn
## 1059         has dogs and likes cats  agnosticism             no     scorpio
## 1060                      likes cats         <NA>  when drinking       aries
## 1061       likes dogs and likes cats      atheism           <NA>      gemini
## 1062       likes dogs and likes cats        other             no       libra
## 1063                            <NA>         <NA>      sometimes    aquarius
## 1064       likes dogs and likes cats      judaism             no       libra
## 1065                            <NA>         <NA>             no        <NA>
## 1066                            <NA>  agnosticism             no         leo
## 1067                            <NA>         <NA>             no      gemini
## 1068       likes dogs and likes cats      judaism trying to quit       virgo
## 1069                        has dogs         <NA>  when drinking     scorpio
## 1070                        has dogs        other             no        <NA>
## 1071                        has dogs        other      sometimes     scorpio
## 1072                            <NA>         <NA>             no    aquarius
## 1073                            <NA>         <NA>             no    aquarius
## 1074       likes dogs and likes cats      atheism             no       virgo
## 1075                        has cats         <NA>             no       virgo
## 1076       likes dogs and likes cats         <NA>             no    aquarius
## 1077                        has cats christianity             no        <NA>
## 1078                            <NA>      judaism             no   capricorn
## 1079                            <NA>         <NA>             no        <NA>
## 1080                      likes dogs  catholicism             no   capricorn
## 1081       likes dogs and likes cats      atheism             no   capricorn
## 1082                        has dogs         <NA>             no        <NA>
## 1083      has dogs and dislikes cats christianity             no       aries
## 1084                            <NA>         <NA>             no        <NA>
## 1085         likes dogs and has cats        other             no      pisces
## 1086    likes dogs and dislikes cats      atheism             no       libra
## 1087         has dogs and likes cats  agnosticism             no         leo
## 1088       likes dogs and likes cats         <NA>             no   capricorn
## 1089                            <NA>         <NA>      sometimes      cancer
## 1090                            <NA>        other             no        <NA>
## 1091                      likes dogs         <NA>             no        <NA>
## 1092                            <NA>         <NA>             no   capricorn
## 1093                            <NA>         <NA>           <NA>         leo
## 1094                      likes cats        other             no       aries
## 1095                        has cats         <NA>             no       libra
## 1096       likes dogs and likes cats        other             no      pisces
## 1097    likes dogs and dislikes cats  catholicism             no    aquarius
## 1098                            <NA>         <NA>           <NA>        <NA>
## 1099         likes dogs and has cats  agnosticism             no      taurus
## 1100                            <NA>         <NA>           <NA>        <NA>
## 1101         has dogs and likes cats      judaism             no      taurus
## 1102                            <NA>         <NA>             no        <NA>
## 1103                        has dogs christianity             no      gemini
## 1104                      likes dogs  agnosticism             no       virgo
## 1105                            <NA>         <NA>             no        <NA>
## 1106                            <NA>         <NA>  when drinking     scorpio
## 1107       likes dogs and likes cats      atheism             no         leo
## 1108       likes dogs and likes cats        other             no sagittarius
## 1109                        has dogs        other             no sagittarius
## 1110         has dogs and likes cats  agnosticism            yes      taurus
## 1111       likes dogs and likes cats  agnosticism  when drinking        <NA>
## 1112      has dogs and dislikes cats      atheism             no sagittarius
## 1113                            <NA>      judaism             no         leo
## 1114       likes dogs and likes cats         <NA>             no   capricorn
## 1115                            <NA>         <NA>             no        <NA>
## 1116                            <NA>      atheism             no        <NA>
## 1117                      likes dogs      judaism             no      taurus
## 1118                            <NA>  agnosticism             no        <NA>
## 1119                            <NA>         <NA>           <NA>         leo
## 1120       likes dogs and likes cats      atheism             no   capricorn
## 1121                            <NA>      atheism  when drinking       aries
## 1122       likes dogs and likes cats  agnosticism             no      cancer
## 1123       likes dogs and likes cats  agnosticism             no      cancer
## 1124                            <NA>         <NA>           <NA>        <NA>
## 1125                            <NA>  catholicism             no      cancer
## 1126       likes dogs and likes cats         <NA>           <NA>    aquarius
## 1127                        has dogs         <NA>           <NA>        <NA>
## 1128         likes dogs and has cats         <NA>           <NA>      cancer
## 1129    likes dogs and dislikes cats  agnosticism             no      cancer
## 1130    likes dogs and dislikes cats christianity             no      gemini
## 1131                            <NA>         <NA>             no sagittarius
## 1132                        has dogs        islam             no     scorpio
## 1133       likes dogs and likes cats         <NA>             no    aquarius
## 1134         likes dogs and has cats     buddhism             no      pisces
## 1135         has dogs and likes cats  agnosticism             no    aquarius
## 1136                            <NA>         <NA>           <NA>      gemini
## 1137    likes dogs and dislikes cats      atheism             no     scorpio
## 1138       likes dogs and likes cats         <NA> trying to quit    aquarius
## 1139         likes dogs and has cats        other             no        <NA>
## 1140                            <NA>        other             no       libra
## 1141                        has cats  agnosticism             no      pisces
## 1142                        has dogs         <NA>             no       libra
## 1143                      likes dogs         <NA>             no    aquarius
## 1144                            <NA>  agnosticism             no      gemini
## 1145           has dogs and has cats      atheism             no   capricorn
## 1146         likes dogs and has cats        other             no      cancer
## 1147                        has dogs      atheism             no       aries
## 1148       likes dogs and likes cats      judaism             no         leo
## 1149         likes dogs and has cats  agnosticism             no      gemini
## 1150         has dogs and likes cats         <NA>      sometimes   capricorn
## 1151                            <NA>         <NA>           <NA>       aries
## 1152       likes dogs and likes cats      atheism             no sagittarius
## 1153                            <NA>         <NA>             no      gemini
## 1154       likes dogs and likes cats  agnosticism  when drinking         leo
## 1155                      likes dogs         <NA>             no        <NA>
## 1156                            <NA>      atheism             no         leo
## 1157       likes dogs and likes cats  agnosticism             no        <NA>
## 1158         likes dogs and has cats  agnosticism             no      gemini
## 1159       likes dogs and likes cats  agnosticism  when drinking      taurus
## 1160                            <NA>         <NA>             no        <NA>
## 1161                      likes dogs         <NA>             no    aquarius
## 1162                   dislikes dogs        other             no        <NA>
## 1163                            <NA>        other           <NA>      gemini
## 1164         has dogs and likes cats      atheism             no        <NA>
## 1165                            <NA>         <NA>           <NA>         leo
## 1166       likes dogs and likes cats        other             no         leo
## 1167       likes dogs and likes cats     buddhism             no         leo
## 1168                      likes dogs         <NA>             no      cancer
## 1169                            <NA>        other  when drinking    aquarius
## 1170                      likes dogs  catholicism           <NA>     scorpio
## 1171                      likes dogs     hinduism             no        <NA>
## 1172       likes dogs and likes cats        other             no       aries
## 1173                      likes dogs christianity             no sagittarius
## 1174       likes dogs and likes cats         <NA>            yes sagittarius
## 1175                      likes dogs         <NA>             no       aries
## 1176                      likes cats      atheism             no      taurus
## 1177                            <NA> christianity             no    aquarius
## 1178                      likes cats  agnosticism             no      taurus
## 1179                            <NA>  agnosticism             no        <NA>
## 1180                      likes dogs     buddhism           <NA>       aries
## 1181                      likes dogs christianity             no      taurus
## 1182                        has dogs  catholicism             no        <NA>
## 1183       likes dogs and likes cats         <NA>             no        <NA>
## 1184    likes dogs and dislikes cats      atheism             no       libra
## 1185         likes dogs and has cats        other             no      pisces
## 1186       likes dogs and likes cats christianity             no      taurus
## 1187       likes dogs and likes cats  catholicism             no      gemini
## 1188      has dogs and dislikes cats         <NA>             no   capricorn
## 1189                            <NA>      atheism             no       libra
## 1190                            <NA>         <NA>             no       virgo
## 1191                            <NA>      atheism             no sagittarius
## 1192                        has dogs     hinduism             no       aries
## 1193       likes dogs and likes cats  agnosticism             no      pisces
## 1194                            <NA>         <NA>             no       libra
## 1195       likes dogs and likes cats      judaism             no        <NA>
## 1196       likes dogs and likes cats  agnosticism             no        <NA>
## 1197                            <NA>      atheism             no      taurus
## 1198         has dogs and likes cats         <NA>             no      gemini
## 1199       likes dogs and likes cats         <NA>           <NA>      pisces
## 1200                            <NA>         <NA>             no        <NA>
## 1201                      likes dogs         <NA>            yes       virgo
## 1202                            <NA>         <NA>           <NA>      cancer
## 1203         has dogs and likes cats  agnosticism             no    aquarius
## 1204                            <NA>  agnosticism             no       virgo
## 1205                            <NA>      judaism           <NA>        <NA>
## 1206                            <NA>        other             no sagittarius
## 1207         has dogs and likes cats christianity             no     scorpio
## 1208                            <NA>         <NA>             no       libra
## 1209       likes dogs and likes cats  agnosticism             no      taurus
## 1210                            <NA>         <NA>             no        <NA>
## 1211       likes dogs and likes cats      atheism             no      gemini
## 1212       likes dogs and likes cats christianity           <NA>   capricorn
## 1213       likes dogs and likes cats  agnosticism             no       libra
## 1214                            <NA>         <NA>             no        <NA>
## 1215                            <NA>         <NA>             no    aquarius
## 1216         likes dogs and has cats         <NA>             no      cancer
## 1217                        has dogs         <NA>             no    aquarius
## 1218       likes dogs and likes cats         <NA>             no     scorpio
## 1219       likes dogs and likes cats      judaism             no      taurus
## 1220       likes dogs and likes cats         <NA>      sometimes       libra
## 1221       likes dogs and likes cats      judaism             no        <NA>
## 1222                      likes dogs         <NA>             no       virgo
## 1223         likes dogs and has cats      atheism            yes      taurus
## 1224                            <NA>  agnosticism             no      cancer
## 1225                            <NA>         <NA>             no     scorpio
## 1226         has dogs and likes cats         <NA>             no       virgo
## 1227       likes dogs and likes cats      atheism  when drinking         leo
## 1228                            <NA>         <NA>           <NA>        <NA>
## 1229                            <NA>         <NA>             no sagittarius
## 1230       likes dogs and likes cats         <NA>             no         leo
## 1231       likes dogs and likes cats         <NA>             no       aries
## 1232                            <NA>         <NA>             no      taurus
## 1233         likes dogs and has cats      judaism             no    aquarius
## 1234                            <NA>         <NA>             no        <NA>
## 1235    likes dogs and dislikes cats  agnosticism             no        <NA>
## 1236                      likes dogs         <NA>             no         leo
## 1237           has dogs and has cats         <NA>             no         leo
## 1238                      likes dogs christianity             no       virgo
## 1239         likes dogs and has cats  agnosticism             no      cancer
## 1240                            <NA> christianity      sometimes       aries
## 1241       likes dogs and likes cats      atheism  when drinking      pisces
## 1242       likes dogs and likes cats     buddhism             no      gemini
## 1243                            <NA>         <NA>             no        <NA>
## 1244                            <NA>         <NA>             no      taurus
## 1245                            <NA>      atheism             no      cancer
## 1246       likes dogs and likes cats      atheism             no      pisces
## 1247       likes dogs and likes cats      atheism             no   capricorn
## 1248         likes dogs and has cats      atheism             no       libra
## 1249       likes dogs and likes cats        other             no         leo
## 1250                      likes dogs     buddhism             no    aquarius
## 1251         likes dogs and has cats      atheism             no     scorpio
## 1252                            <NA>  catholicism             no   capricorn
## 1253                            <NA>         <NA>           <NA>        <NA>
## 1254         likes dogs and has cats        other           <NA>         leo
## 1255         likes dogs and has cats christianity             no       aries
## 1256                      likes cats      atheism             no        <NA>
## 1257       likes dogs and likes cats         <NA>             no        <NA>
## 1258                      likes dogs  catholicism             no      cancer
## 1259           has dogs and has cats  catholicism      sometimes       virgo
## 1260         has dogs and likes cats         <NA>  when drinking       libra
## 1261                      likes dogs         <NA>             no    aquarius
## 1262                            <NA>  agnosticism             no       aries
## 1263      has dogs and dislikes cats      atheism             no        <NA>
## 1264           has dogs and has cats         <NA>             no       virgo
## 1265    likes dogs and dislikes cats      judaism             no        <NA>
## 1266       likes dogs and likes cats     buddhism             no      cancer
## 1267       likes dogs and likes cats  agnosticism  when drinking      cancer
## 1268                        has dogs  agnosticism             no         leo
## 1269                            <NA>      atheism             no   capricorn
## 1270                      likes dogs  agnosticism             no    aquarius
## 1271                        has dogs  catholicism             no       libra
## 1272         likes dogs and has cats  catholicism             no sagittarius
## 1273                            <NA>         <NA>             no       aries
## 1274                        has dogs         <NA>             no      cancer
## 1275                            <NA>  agnosticism             no   capricorn
## 1276                            <NA>         <NA>           <NA>       aries
## 1277           has dogs and has cats christianity             no    aquarius
## 1278                        has dogs         <NA>             no      gemini
## 1279       likes dogs and likes cats         <NA>           <NA>      gemini
## 1280                        has dogs         <NA>             no        <NA>
## 1281                        has dogs         <NA>             no      cancer
## 1282                            <NA>      atheism             no      cancer
## 1283                      likes dogs        other             no sagittarius
## 1284       likes dogs and likes cats christianity             no      taurus
## 1285         likes dogs and has cats  catholicism             no sagittarius
## 1286         has dogs and likes cats      judaism             no        <NA>
## 1287                      likes dogs      judaism             no        <NA>
## 1288                        has dogs     buddhism      sometimes    aquarius
## 1289                            <NA>         <NA>           <NA>        <NA>
## 1290                            <NA>         <NA>             no         leo
## 1291                        has cats     buddhism             no    aquarius
## 1292                            <NA>         <NA>             no       aries
## 1293                            <NA>     buddhism             no        <NA>
## 1294                            <NA> christianity           <NA>       virgo
## 1295       likes dogs and likes cats        other             no        <NA>
## 1296       likes dogs and likes cats      atheism           <NA> sagittarius
## 1297    likes dogs and dislikes cats         <NA>             no      pisces
## 1298                      likes dogs     buddhism             no      taurus
## 1299         has dogs and likes cats  agnosticism             no      pisces
## 1300                            <NA>         <NA>             no     scorpio
## 1301                            <NA>  catholicism             no   capricorn
## 1302                            <NA>        other  when drinking   capricorn
## 1303       likes dogs and likes cats        other             no       libra
## 1304       likes dogs and likes cats  agnosticism             no       aries
## 1305       likes dogs and likes cats        other             no      pisces
## 1306       likes dogs and likes cats        other             no sagittarius
## 1307                            <NA>      atheism             no        <NA>
## 1308       likes dogs and likes cats     buddhism             no      gemini
## 1309       likes dogs and likes cats         <NA>             no       virgo
## 1310                      likes dogs        other             no      cancer
## 1311                        has dogs  agnosticism             no   capricorn
## 1312                            <NA>      atheism             no      cancer
## 1313                            <NA>         <NA>             no        <NA>
## 1314       likes dogs and likes cats        other             no      taurus
## 1315                            <NA>         <NA>             no      pisces
## 1316         likes dogs and has cats christianity             no         leo
## 1317                            <NA>  agnosticism      sometimes         leo
## 1318                      likes cats  agnosticism             no      gemini
## 1319                            <NA>         <NA>             no         leo
## 1320       likes dogs and likes cats        other             no     scorpio
## 1321         likes dogs and has cats      atheism             no sagittarius
## 1322                      likes dogs christianity            yes   capricorn
## 1323      has dogs and dislikes cats        other             no      gemini
## 1324       likes dogs and likes cats christianity             no   capricorn
## 1325         likes dogs and has cats      judaism             no      pisces
## 1326       likes dogs and likes cats  agnosticism             no      gemini
## 1327                      likes dogs         <NA>           <NA>      cancer
## 1328                            <NA>     hinduism             no      pisces
## 1329       likes dogs and likes cats  agnosticism             no sagittarius
## 1330                      likes dogs     hinduism             no   capricorn
## 1331                            <NA>         <NA>             no       aries
## 1332                            <NA>     hinduism             no       aries
## 1333                            <NA>  agnosticism             no   capricorn
## 1334                      likes dogs      judaism             no      pisces
## 1335         has dogs and likes cats      atheism             no        <NA>
## 1336                            <NA>         <NA>             no      gemini
## 1337                      likes dogs      atheism             no         leo
## 1338       likes dogs and likes cats        other             no       virgo
## 1339                            <NA>         <NA>           <NA>        <NA>
## 1340         has dogs and likes cats  agnosticism             no sagittarius
## 1341                            <NA>     hinduism             no       libra
## 1342       likes dogs and likes cats         <NA>           <NA>      pisces
## 1343                      likes dogs      judaism             no       virgo
## 1344                            <NA>         <NA>             no        <NA>
## 1345       likes dogs and likes cats  agnosticism             no       libra
## 1346                            <NA>         <NA>           <NA>      cancer
## 1347    likes dogs and dislikes cats         <NA>             no sagittarius
## 1348                            <NA>         <NA> trying to quit       libra
## 1349       likes dogs and likes cats  agnosticism             no      pisces
## 1350                            <NA>        other             no       aries
## 1351                      likes dogs christianity             no    aquarius
## 1352                            <NA>  agnosticism             no    aquarius
## 1353                        has dogs  agnosticism             no       virgo
## 1354                            <NA>         <NA>             no     scorpio
## 1355                      likes dogs      judaism             no    aquarius
## 1356                            <NA>  catholicism             no       aries
## 1357       likes dogs and likes cats        other             no         leo
## 1358       likes dogs and likes cats  agnosticism      sometimes    aquarius
## 1359         has dogs and likes cats      atheism             no     scorpio
## 1360                            <NA>         <NA>             no        <NA>
## 1361                      likes cats      atheism             no     scorpio
## 1362                      likes dogs         <NA>             no        <NA>
## 1363                            <NA>         <NA>           <NA>       virgo
## 1364       likes dogs and likes cats      atheism             no      cancer
## 1365       likes dogs and likes cats  agnosticism             no         leo
## 1366       likes dogs and likes cats  agnosticism             no         leo
## 1367                            <NA>      atheism             no       libra
## 1368                            <NA> christianity             no      gemini
## 1369                            <NA>  catholicism             no sagittarius
## 1370       likes dogs and likes cats      atheism  when drinking       libra
## 1371         likes dogs and has cats  catholicism             no       virgo
## 1372                            <NA>         <NA>             no     scorpio
## 1373                            <NA> christianity             no        <NA>
## 1374                            <NA>  agnosticism             no    aquarius
## 1375         has dogs and likes cats  agnosticism             no      cancer
## 1376                        has dogs         <NA>           <NA>       libra
## 1377                            <NA>         <NA>           <NA>      taurus
## 1378                            <NA>  agnosticism             no      cancer
## 1379                        has dogs         <NA>             no   capricorn
## 1380       likes dogs and likes cats      atheism      sometimes       aries
## 1381                            <NA>         <NA>           <NA>   capricorn
## 1382                            <NA>         <NA>           <NA>        <NA>
## 1383       likes dogs and likes cats  agnosticism  when drinking   capricorn
## 1384       likes dogs and likes cats         <NA>             no sagittarius
## 1385         has dogs and likes cats     buddhism             no      pisces
## 1386                      likes dogs         <NA>             no       virgo
## 1387                            <NA>      atheism      sometimes      cancer
## 1388                        has cats        other             no      cancer
## 1389                        has dogs         <NA>           <NA>        <NA>
## 1390       likes dogs and likes cats      judaism             no       aries
## 1391                            <NA>     hinduism             no       virgo
## 1392                            <NA>         <NA>      sometimes      taurus
## 1393         likes dogs and has cats  agnosticism      sometimes       virgo
## 1394                            <NA>         <NA>  when drinking      gemini
## 1395                            <NA>  agnosticism             no       virgo
## 1396                            <NA>  catholicism             no      cancer
## 1397                            <NA>         <NA>             no       aries
## 1398                      likes dogs         <NA>             no      gemini
## 1399       likes dogs and likes cats     buddhism             no         leo
## 1400                            <NA> christianity           <NA>       aries
## 1401                      likes dogs         <NA>             no      cancer
## 1402    likes dogs and dislikes cats      judaism  when drinking         leo
## 1403                      likes cats     buddhism             no     scorpio
## 1404         likes dogs and has cats  agnosticism             no         leo
## 1405       likes dogs and likes cats        other  when drinking         leo
## 1406       likes dogs and likes cats        other             no   capricorn
## 1407                            <NA>         <NA>           <NA>       aries
## 1408                        has cats  agnosticism             no        <NA>
## 1409                      likes cats         <NA>  when drinking      gemini
## 1410                        has dogs  catholicism             no       libra
## 1411                            <NA>         <NA>             no        <NA>
## 1412       likes dogs and likes cats  agnosticism             no     scorpio
## 1413                            <NA>         <NA>             no       aries
## 1414       likes dogs and likes cats      judaism             no         leo
## 1415                        has cats        other             no       aries
## 1416                      likes dogs     buddhism             no       aries
## 1417                      likes dogs     buddhism             no       aries
## 1418       likes dogs and likes cats        other             no       libra
## 1419         likes dogs and has cats     buddhism             no      gemini
## 1420       likes dogs and likes cats christianity             no        <NA>
## 1421                      likes dogs      atheism             no        <NA>
## 1422       likes dogs and likes cats        other trying to quit         leo
## 1423         likes dogs and has cats         <NA> trying to quit      gemini
## 1424                            <NA>         <NA>           <NA>        <NA>
## 1425                      likes dogs         <NA>  when drinking         leo
## 1426         likes dogs and has cats      atheism             no    aquarius
## 1427                            <NA>        other             no       libra
## 1428                        has dogs         <NA>             no   capricorn
## 1429                      likes dogs         <NA>             no sagittarius
## 1430                      likes dogs  agnosticism             no   capricorn
## 1431                            <NA>         <NA>  when drinking      gemini
## 1432                            <NA>  agnosticism             no        <NA>
## 1433           has dogs and has cats  catholicism             no         leo
## 1434                            <NA>  agnosticism           <NA>       aries
## 1435       likes dogs and likes cats      atheism             no         leo
## 1436                            <NA> christianity             no      pisces
## 1437       likes dogs and likes cats christianity             no       aries
## 1438                            <NA>         <NA>      sometimes        <NA>
## 1439                        has dogs         <NA>  when drinking   capricorn
## 1440                        has dogs     buddhism             no sagittarius
## 1441                            <NA>         <NA>           <NA>         leo
## 1442                            <NA>  agnosticism      sometimes         leo
## 1443                            <NA>      judaism            yes   capricorn
## 1444                            <NA>         <NA>             no        <NA>
## 1445                            <NA>         <NA>             no        <NA>
## 1446       likes dogs and likes cats        other             no      cancer
## 1447       likes dogs and likes cats  catholicism             no       libra
## 1448                            <NA>         <NA>             no        <NA>
## 1449                            <NA>  catholicism             no sagittarius
## 1450         has dogs and likes cats      atheism             no      cancer
## 1451                      likes dogs      atheism           <NA>        <NA>
## 1452                        has cats  agnosticism  when drinking       virgo
## 1453                            <NA>      atheism             no      pisces
## 1454                        has dogs      atheism           <NA>     scorpio
## 1455                            <NA>         <NA>             no       aries
## 1456                        has dogs      judaism             no      taurus
## 1457                            <NA>         <NA>             no       aries
## 1458                            <NA>  agnosticism             no     scorpio
## 1459       likes dogs and likes cats christianity             no       libra
## 1460           has dogs and has cats      atheism             no         leo
## 1461                        has dogs         <NA>             no        <NA>
## 1462       likes dogs and likes cats      atheism             no       aries
## 1463         likes dogs and has cats  agnosticism             no   capricorn
## 1464                            <NA>  catholicism             no    aquarius
## 1465                            <NA>        other             no      cancer
## 1466       likes dogs and likes cats  agnosticism            yes sagittarius
## 1467                            <NA>  agnosticism             no      taurus
## 1468       likes dogs and likes cats      atheism             no        <NA>
## 1469                      likes dogs         <NA>             no      gemini
## 1470                            <NA>         <NA>             no      taurus
## 1471                            <NA>         <NA>            yes     scorpio
## 1472       likes dogs and likes cats  agnosticism             no         leo
## 1473                            <NA> christianity             no       virgo
## 1474                            <NA>  catholicism             no   capricorn
## 1475       likes dogs and likes cats        other             no     scorpio
## 1476           has dogs and has cats        other             no       aries
## 1477                            <NA>         <NA>      sometimes       virgo
## 1478       likes dogs and likes cats         <NA>             no sagittarius
## 1479                            <NA>  catholicism             no       virgo
## 1480       likes dogs and likes cats      atheism             no      pisces
## 1481                            <NA>      judaism             no       aries
## 1482                            <NA>      judaism           <NA>     scorpio
## 1483                        has dogs  catholicism             no      gemini
## 1484       likes dogs and likes cats         <NA>      sometimes      pisces
## 1485                      likes dogs     buddhism             no       virgo
## 1486                            <NA>         <NA>             no        <NA>
## 1487       likes dogs and likes cats         <NA>             no   capricorn
## 1488                            <NA>     hinduism             no      cancer
## 1489                            <NA>         <NA>           <NA>   capricorn
## 1490                            <NA> christianity             no        <NA>
## 1491       likes dogs and likes cats         <NA>             no         leo
## 1492                        has cats christianity             no         leo
## 1493                            <NA>  catholicism            yes      taurus
## 1494                      likes dogs         <NA>             no      taurus
## 1495                            <NA>         <NA>             no        <NA>
## 1496       likes dogs and likes cats  catholicism             no       aries
## 1497       likes dogs and likes cats         <NA>             no        <NA>
## 1498                            <NA> christianity             no         leo
## 1499       likes dogs and likes cats  agnosticism             no    aquarius
## 1500                        has dogs         <NA>             no      cancer
## 1501       likes dogs and likes cats christianity             no      taurus
## 1502       likes dogs and likes cats  agnosticism             no      pisces
## 1503                            <NA>         <NA>             no        <NA>
## 1504       likes dogs and likes cats  agnosticism             no       aries
## 1505                            <NA>         <NA>             no        <NA>
## 1506                      likes dogs      atheism             no        <NA>
## 1507                        has dogs         <NA>             no   capricorn
## 1508                            <NA> christianity             no        <NA>
## 1509                            <NA>  catholicism             no         leo
## 1510                            <NA>  agnosticism             no        <NA>
## 1511                      likes dogs  catholicism             no       aries
## 1512    likes dogs and dislikes cats christianity             no   capricorn
## 1513       likes dogs and likes cats      judaism             no      pisces
## 1514       likes dogs and likes cats  agnosticism             no       virgo
## 1515                        has dogs  agnosticism             no      taurus
## 1516       likes dogs and likes cats  catholicism             no       aries
## 1517                            <NA>         <NA>           <NA>        <NA>
## 1518                      likes dogs        other             no    aquarius
## 1519                            <NA>         <NA>             no        <NA>
## 1520       likes dogs and likes cats         <NA>             no       virgo
## 1521       likes dogs and likes cats         <NA>             no      cancer
## 1522         has dogs and likes cats  agnosticism             no   capricorn
## 1523           has dogs and has cats  agnosticism             no       virgo
## 1524       likes dogs and likes cats      judaism           <NA>      cancer
## 1525                        has cats  catholicism             no     scorpio
## 1526         likes dogs and has cats      atheism             no     scorpio
## 1527       likes dogs and likes cats        other  when drinking       aries
## 1528                            <NA>         <NA>             no       libra
## 1529                        has dogs  agnosticism             no      gemini
## 1530         likes dogs and has cats  agnosticism             no         leo
## 1531       likes dogs and likes cats         <NA>           <NA>      pisces
## 1532       likes dogs and likes cats  agnosticism             no         leo
## 1533                            <NA>         <NA>             no       libra
## 1534                      likes dogs         <NA>  when drinking     scorpio
## 1535                      likes dogs         <NA>             no      pisces
## 1536                      likes dogs  catholicism             no        <NA>
## 1537                      likes dogs      atheism           <NA>      cancer
## 1538                      likes dogs      atheism             no       libra
## 1539                            <NA>      atheism trying to quit        <NA>
## 1540                        has dogs         <NA>      sometimes        <NA>
## 1541    likes dogs and dislikes cats  agnosticism             no      cancer
## 1542       likes dogs and likes cats  agnosticism             no    aquarius
## 1543                            <NA>         <NA>             no        <NA>
## 1544                            <NA>         <NA>           <NA>      cancer
## 1545                      likes dogs      atheism             no      taurus
## 1546       likes dogs and likes cats      judaism             no      taurus
## 1547                      likes dogs         <NA>             no      pisces
## 1548       likes dogs and likes cats      judaism             no      pisces
## 1549                      likes dogs      judaism             no       virgo
## 1550                            <NA>  agnosticism             no      gemini
## 1551                            <NA>         <NA>           <NA>        <NA>
## 1552                      likes dogs         <NA>             no       virgo
## 1553         has dogs and likes cats      judaism           <NA> sagittarius
## 1554                      likes dogs         <NA>             no       libra
## 1555                        has dogs  agnosticism             no     scorpio
## 1556                            <NA>      judaism             no        <NA>
## 1557       likes dogs and likes cats  agnosticism           <NA>       aries
## 1558                      likes dogs      judaism             no    aquarius
## 1559                            <NA>         <NA>  when drinking sagittarius
## 1560                            <NA>         <NA>           <NA>        <NA>
## 1561       likes dogs and likes cats  agnosticism  when drinking       aries
## 1562    likes dogs and dislikes cats  agnosticism             no       aries
## 1563                        has dogs      atheism             no      cancer
## 1564       likes dogs and likes cats  agnosticism      sometimes       libra
## 1565       likes dogs and likes cats         <NA>             no sagittarius
## 1566                            <NA>        other             no         leo
## 1567                            <NA> christianity             no       libra
## 1568                      likes dogs      atheism             no     scorpio
## 1569                      likes dogs  agnosticism             no       libra
## 1570                      likes dogs      judaism             no       virgo
## 1571                        has dogs     buddhism           <NA>      cancer
## 1572       likes dogs and likes cats         <NA>           <NA>        <NA>
## 1573         has dogs and likes cats        other  when drinking     scorpio
## 1574       likes dogs and likes cats  agnosticism             no   capricorn
## 1575                            <NA>         <NA>           <NA>    aquarius
## 1576                            <NA>         <NA>             no        <NA>
## 1577                            <NA>      atheism  when drinking        <NA>
## 1578       likes dogs and likes cats         <NA>             no      gemini
## 1579                      likes cats         <NA>             no        <NA>
## 1580       likes dogs and likes cats  catholicism             no        <NA>
## 1581         likes dogs and has cats         <NA> trying to quit      taurus
## 1582       likes dogs and likes cats        other  when drinking       aries
## 1583                            <NA>  catholicism             no        <NA>
## 1584                            <NA>        other             no      gemini
## 1585                            <NA>  agnosticism             no        <NA>
## 1586                      likes dogs      atheism           <NA>         leo
## 1587       likes dogs and likes cats      judaism             no       aries
## 1588       likes dogs and likes cats        other             no       virgo
## 1589       likes dogs and likes cats         <NA>             no      cancer
## 1590                            <NA>        other             no sagittarius
## 1591       likes dogs and likes cats        other      sometimes    aquarius
## 1592                        has dogs      atheism           <NA>        <NA>
## 1593         has dogs and likes cats     buddhism             no       aries
## 1594                            <NA>         <NA>             no      taurus
## 1595       likes dogs and likes cats      atheism             no   capricorn
## 1596                            <NA>        other             no sagittarius
## 1597                            <NA>         <NA>             no        <NA>
## 1598                            <NA>      judaism             no sagittarius
## 1599         likes dogs and has cats      atheism             no    aquarius
## 1600       likes dogs and likes cats        other             no       virgo
## 1601                            <NA>  agnosticism             no       virgo
## 1602                            <NA>         <NA>             no    aquarius
## 1603         has dogs and likes cats         <NA>      sometimes      pisces
## 1604                      likes dogs         <NA>             no        <NA>
## 1605                        has dogs      atheism      sometimes      taurus
## 1606         has dogs and likes cats         <NA>      sometimes         leo
## 1607       likes dogs and likes cats        other             no sagittarius
## 1608                            <NA>         <NA>             no        <NA>
## 1609         likes dogs and has cats      atheism             no    aquarius
## 1610                      likes dogs christianity             no         leo
## 1611         likes dogs and has cats        other             no      pisces
## 1612       likes dogs and likes cats      atheism             no sagittarius
## 1613         likes dogs and has cats  agnosticism             no      pisces
## 1614       likes dogs and likes cats        other  when drinking        <NA>
## 1615                        has dogs  catholicism             no      taurus
## 1616       likes dogs and likes cats         <NA>            yes       libra
## 1617                      likes cats      atheism trying to quit     scorpio
## 1618           has dogs and has cats         <NA>             no      cancer
## 1619                      likes dogs        other  when drinking         leo
## 1620                            <NA>      atheism             no        <NA>
## 1621       likes dogs and likes cats      atheism             no      taurus
## 1622                            <NA>        other  when drinking      gemini
## 1623                      likes dogs         <NA>             no         leo
## 1624                            <NA>     hinduism           <NA>      taurus
## 1625                      likes dogs     hinduism           <NA>    aquarius
## 1626       likes dogs and likes cats         <NA>             no       virgo
## 1627                        has dogs christianity           <NA>        <NA>
## 1628                            <NA>         <NA>             no       virgo
## 1629       likes dogs and likes cats  agnosticism             no        <NA>
## 1630       likes dogs and likes cats         <NA>             no      cancer
## 1631                            <NA> christianity             no        <NA>
## 1632                            <NA>         <NA>      sometimes      pisces
## 1633         likes dogs and has cats      atheism             no sagittarius
## 1634                      likes dogs         <NA>           <NA>      gemini
## 1635                      likes dogs        other           <NA>   capricorn
## 1636       likes dogs and likes cats  catholicism  when drinking   capricorn
## 1637         has dogs and likes cats  agnosticism             no      cancer
## 1638                            <NA>      judaism             no       aries
## 1639                      likes dogs  catholicism             no sagittarius
## 1640                        has dogs  agnosticism             no   capricorn
## 1641                      likes dogs      atheism             no sagittarius
## 1642       likes dogs and likes cats         <NA>             no     scorpio
## 1643    dislikes dogs and likes cats        other            yes      taurus
## 1644                      likes dogs      atheism  when drinking      gemini
## 1645                            <NA>  agnosticism             no        <NA>
## 1646       likes dogs and likes cats  catholicism             no        <NA>
## 1647      dislikes dogs and has cats         <NA>             no sagittarius
## 1648                      likes dogs         <NA>             no         leo
## 1649                            <NA>         <NA>             no        <NA>
## 1650       likes dogs and likes cats     hinduism             no      gemini
## 1651                      likes dogs  catholicism             no      gemini
## 1652       likes dogs and likes cats         <NA>           <NA>   capricorn
## 1653                        has cats         <NA>             no sagittarius
## 1654                        has dogs      judaism             no    aquarius
## 1655                            <NA>         <NA>      sometimes        <NA>
## 1656       likes dogs and likes cats      atheism             no      taurus
## 1657         likes dogs and has cats         <NA>           <NA>      cancer
## 1658       likes dogs and likes cats         <NA>             no         leo
## 1659       likes dogs and likes cats  catholicism             no        <NA>
## 1660                            <NA>     buddhism             no sagittarius
## 1661                            <NA>      atheism           <NA>      cancer
## 1662                            <NA>     hinduism             no       libra
## 1663       likes dogs and likes cats         <NA>           <NA>   capricorn
## 1664                            <NA>      atheism  when drinking        <NA>
## 1665                      likes dogs  catholicism             no        <NA>
## 1666 dislikes dogs and dislikes cats christianity             no      gemini
## 1667      dislikes dogs and has cats        islam  when drinking      pisces
## 1668                      likes dogs  agnosticism             no      pisces
## 1669       likes dogs and likes cats      judaism             no   capricorn
## 1670                            <NA>         <NA>           <NA>        <NA>
## 1671         likes dogs and has cats         <NA>             no         leo
## 1672       likes dogs and likes cats      atheism             no       virgo
## 1673                            <NA> christianity             no      gemini
## 1674                      likes dogs christianity             no   capricorn
## 1675         likes dogs and has cats      atheism  when drinking   capricorn
## 1676                      likes dogs  agnosticism             no         leo
## 1677                            <NA>         <NA>             no       libra
## 1678       likes dogs and likes cats        other             no         leo
## 1679                            <NA>         <NA>             no        <NA>
## 1680                      likes dogs christianity             no       aries
## 1681                   dislikes cats        other  when drinking       aries
## 1682       likes dogs and likes cats      atheism             no       virgo
## 1683       likes dogs and likes cats      atheism             no      taurus
## 1684                      likes dogs      judaism             no       aries
## 1685                            <NA>        other             no      taurus
## 1686                            <NA>         <NA>             no       aries
## 1687                      likes dogs      judaism             no       libra
## 1688                        has dogs  agnosticism  when drinking     scorpio
## 1689                        has dogs         <NA>             no sagittarius
## 1690                            <NA>      atheism             no      gemini
## 1691       likes dogs and likes cats  agnosticism             no     scorpio
## 1692       likes dogs and likes cats         <NA>             no   capricorn
## 1693                        has dogs christianity             no      pisces
## 1694                      likes dogs         <NA>             no       virgo
## 1695                        has dogs  catholicism             no sagittarius
## 1696         likes dogs and has cats         <NA>            yes    aquarius
## 1697           has dogs and has cats     buddhism  when drinking      taurus
## 1698                        has dogs  catholicism             no    aquarius
## 1699                            <NA>      atheism             no       virgo
## 1700                            <NA>  catholicism             no       aries
## 1701                            <NA>         <NA> trying to quit       virgo
## 1702       likes dogs and likes cats christianity             no       libra
## 1703         has dogs and likes cats         <NA>             no        <NA>
## 1704                            <NA>         <NA>  when drinking      cancer
## 1705                            <NA>     buddhism             no         leo
## 1706      has dogs and dislikes cats christianity             no      taurus
## 1707           has dogs and has cats christianity             no      taurus
## 1708                      likes dogs         <NA>             no       libra
## 1709                        has dogs     buddhism  when drinking sagittarius
## 1710       likes dogs and likes cats christianity             no       virgo
## 1711                            <NA>         <NA>             no       aries
## 1712       likes dogs and likes cats         <NA>             no     scorpio
## 1713                            <NA>         <NA>             no      pisces
## 1714                        has cats  agnosticism      sometimes      gemini
## 1715                      likes dogs  catholicism             no     scorpio
## 1716      has dogs and dislikes cats      atheism  when drinking         leo
## 1717    likes dogs and dislikes cats         <NA>             no       virgo
## 1718           has dogs and has cats      atheism      sometimes    aquarius
## 1719                            <NA>         <NA>             no        <NA>
## 1720       likes dogs and likes cats  catholicism             no     scorpio
## 1721                      likes dogs      judaism             no     scorpio
## 1722                        has dogs         <NA>             no     scorpio
## 1723       likes dogs and likes cats         <NA>             no   capricorn
## 1724       likes dogs and likes cats        other             no         leo
## 1725                            <NA>         <NA>             no        <NA>
## 1726       likes dogs and likes cats christianity  when drinking    aquarius
## 1727                      likes dogs         <NA>             no         leo
## 1728                      likes cats      atheism trying to quit       aries
## 1729                            <NA>     hinduism             no     scorpio
## 1730       likes dogs and likes cats     buddhism             no        <NA>
## 1731                            <NA>         <NA>             no        <NA>
## 1732                            <NA>         <NA>           <NA>        <NA>
## 1733       likes dogs and likes cats  agnosticism             no      gemini
## 1734       likes dogs and likes cats         <NA>             no        <NA>
## 1735                            <NA>         <NA>           <NA> sagittarius
## 1736                      likes dogs      atheism             no       aries
## 1737       likes dogs and likes cats         <NA>             no        <NA>
## 1738       likes dogs and likes cats         <NA>           <NA>       virgo
## 1739       likes dogs and likes cats      atheism             no      taurus
## 1740           has dogs and has cats         <NA>             no    aquarius
## 1741                            <NA>      judaism             no       libra
## 1742       likes dogs and likes cats      judaism             no      cancer
## 1743                            <NA>         <NA>           <NA>        <NA>
## 1744                      likes dogs         <NA>             no       aries
## 1745                      likes dogs  agnosticism             no       aries
## 1746                        has dogs         <NA>             no     scorpio
## 1747                      likes dogs  agnosticism  when drinking       virgo
## 1748                            <NA>        other             no       libra
## 1749                        has dogs         <NA>             no         leo
## 1750         likes dogs and has cats      judaism             no     scorpio
## 1751       likes dogs and likes cats christianity             no      pisces
## 1752    likes dogs and dislikes cats  catholicism             no      pisces
## 1753       likes dogs and likes cats  catholicism             no       aries
## 1754                            <NA> christianity             no   capricorn
## 1755       likes dogs and likes cats         <NA>             no      cancer
## 1756         has dogs and likes cats  agnosticism             no     scorpio
## 1757                            <NA>      judaism             no       aries
## 1758       likes dogs and likes cats  agnosticism             no    aquarius
## 1759         likes dogs and has cats        other      sometimes         leo
## 1760       likes dogs and likes cats         <NA>  when drinking   capricorn
## 1761       likes dogs and likes cats        other             no      cancer
## 1762                        has dogs  catholicism             no sagittarius
## 1763       likes dogs and likes cats  agnosticism             no       aries
## 1764                            <NA>      atheism             no      gemini
## 1765                            <NA>         <NA>             no        <NA>
## 1766                            <NA>  catholicism           <NA>       virgo
## 1767       likes dogs and likes cats christianity             no   capricorn
## 1768                            <NA>         <NA>           <NA>        <NA>
## 1769                            <NA>        islam             no       libra
## 1770         likes dogs and has cats      judaism trying to quit         leo
## 1771                            <NA>         <NA>             no      pisces
## 1772                        has cats         <NA>            yes       aries
## 1773                            <NA>         <NA>             no        <NA>
## 1774      has dogs and dislikes cats  catholicism             no       aries
## 1775       likes dogs and likes cats  agnosticism             no      gemini
## 1776       likes dogs and likes cats  agnosticism             no    aquarius
## 1777                            <NA>        other             no         leo
## 1778                            <NA>      atheism             no       virgo
## 1779                      likes dogs      atheism             no        <NA>
## 1780                            <NA>         <NA>             no        <NA>
## 1781    likes dogs and dislikes cats      atheism             no     scorpio
## 1782                      likes dogs         <NA>             no       virgo
## 1783                            <NA>      atheism             no       virgo
## 1784         likes dogs and has cats  agnosticism             no       aries
## 1785                        has dogs  catholicism             no         leo
## 1786                            <NA>         <NA>             no        <NA>
## 1787                            <NA>         <NA>             no      gemini
## 1788       likes dogs and likes cats  catholicism             no sagittarius
## 1789                      likes dogs  agnosticism             no        <NA>
## 1790    likes dogs and dislikes cats      atheism             no    aquarius
## 1791                            <NA>        other             no sagittarius
## 1792                            <NA>        other             no sagittarius
## 1793         has dogs and likes cats      judaism  when drinking       libra
## 1794                        has dogs christianity             no    aquarius
## 1795       likes dogs and likes cats        other           <NA>      gemini
## 1796                            <NA>         <NA>           <NA>        <NA>
## 1797                        has cats        other            yes sagittarius
## 1798           has dogs and has cats      atheism             no       virgo
## 1799       likes dogs and likes cats      atheism             no       virgo
## 1800       likes dogs and likes cats     buddhism  when drinking      cancer
## 1801                      likes dogs  agnosticism             no        <NA>
## 1802       likes dogs and likes cats  agnosticism            yes       aries
## 1803                            <NA>         <NA>             no        <NA>
## 1804       likes dogs and likes cats         <NA>             no sagittarius
## 1805                            <NA>      judaism             no       aries
## 1806       likes dogs and likes cats      atheism           <NA>         leo
## 1807                            <NA>  catholicism             no       libra
## 1808         has dogs and likes cats      atheism             no       aries
## 1809       likes dogs and likes cats christianity             no      cancer
## 1810                            <NA>         <NA>             no        <NA>
## 1811       likes dogs and likes cats      atheism             no sagittarius
## 1812                            <NA>  agnosticism             no       aries
## 1813       likes dogs and likes cats         <NA>             no        <NA>
## 1814                            <NA>         <NA>             no    aquarius
## 1815                        has dogs      atheism             no       virgo
## 1816         likes dogs and has cats  agnosticism      sometimes      gemini
## 1817       likes dogs and likes cats  agnosticism             no       aries
## 1818                            <NA>     hinduism             no       libra
## 1819       likes dogs and likes cats         <NA>             no sagittarius
## 1820                      likes dogs      judaism             no       aries
## 1821                      likes dogs  agnosticism             no        <NA>
## 1822                            <NA>         <NA>             no        <NA>
## 1823                            <NA>         <NA>             no       aries
## 1824                        has dogs         <NA>             no      cancer
## 1825                        has cats  agnosticism             no    aquarius
## 1826       likes dogs and likes cats christianity             no         leo
## 1827    likes dogs and dislikes cats         <NA>             no        <NA>
## 1828                        has dogs         <NA>             no        <NA>
## 1829                      likes dogs  agnosticism             no        <NA>
## 1830                      likes dogs         <NA>      sometimes      cancer
## 1831                            <NA>         <NA>             no      gemini
## 1832                      likes dogs         <NA>             no         leo
## 1833    likes dogs and dislikes cats        other             no   capricorn
## 1834       likes dogs and likes cats christianity             no      gemini
## 1835       likes dogs and likes cats     buddhism             no       aries
## 1836       likes dogs and likes cats     buddhism trying to quit      gemini
## 1837         likes dogs and has cats        other             no      cancer
## 1838                        has dogs         <NA>             no        <NA>
## 1839       likes dogs and likes cats         <NA>             no      taurus
## 1840                            <NA>         <NA>             no      cancer
## 1841                            <NA>         <NA>             no        <NA>
## 1842                        has dogs      judaism             no      gemini
## 1843                        has cats  agnosticism             no        <NA>
## 1844                      likes dogs  agnosticism             no       virgo
## 1845                            <NA>      atheism             no        <NA>
## 1846                      likes dogs         <NA>             no      taurus
## 1847                      likes dogs         <NA>             no      gemini
## 1848                        has cats         <NA>             no       libra
## 1849       likes dogs and likes cats        other             no         leo
## 1850                      likes dogs         <NA>             no   capricorn
## 1851                            <NA>  agnosticism             no      pisces
## 1852       likes dogs and likes cats  agnosticism             no      gemini
## 1853                            <NA>         <NA>      sometimes        <NA>
## 1854         likes dogs and has cats      judaism             no     scorpio
## 1855       likes dogs and likes cats         <NA>             no sagittarius
## 1856       likes dogs and likes cats        other             no sagittarius
## 1857       likes dogs and likes cats  catholicism             no      cancer
## 1858                        has cats christianity             no      cancer
## 1859                        has dogs         <NA>             no      gemini
## 1860                        has dogs        other             no        <NA>
## 1861    likes dogs and dislikes cats  agnosticism             no   capricorn
## 1862         likes dogs and has cats        other             no   capricorn
## 1863                            <NA>         <NA>             no         leo
## 1864       likes dogs and likes cats        other             no    aquarius
## 1865                      likes dogs         <NA>             no      pisces
## 1866         likes dogs and has cats        other             no    aquarius
## 1867                            <NA>  agnosticism             no       aries
## 1868                            <NA> christianity             no        <NA>
## 1869       likes dogs and likes cats      atheism  when drinking      taurus
## 1870                            <NA>         <NA>           <NA>        <NA>
## 1871         likes dogs and has cats  agnosticism  when drinking      taurus
## 1872       likes dogs and likes cats  agnosticism             no        <NA>
## 1873                            <NA> christianity             no        <NA>
## 1874                        has dogs         <NA>           <NA>        <NA>
## 1875                        has cats        other trying to quit       virgo
## 1876                            <NA>      atheism             no     scorpio
## 1877       likes dogs and likes cats  catholicism             no       libra
## 1878                        has dogs         <NA>             no      pisces
## 1879       likes dogs and likes cats  agnosticism             no      gemini
## 1880                            <NA>         <NA>             no       aries
## 1881                        has dogs         <NA>           <NA>        <NA>
## 1882                            <NA> christianity             no      taurus
## 1883           has dogs and has cats        other             no    aquarius
## 1884         likes dogs and has cats      atheism             no sagittarius
## 1885       likes dogs and likes cats  agnosticism             no      gemini
## 1886                      likes dogs      judaism             no      gemini
## 1887                      likes dogs christianity             no        <NA>
## 1888       likes dogs and likes cats         <NA>             no       aries
## 1889       likes dogs and likes cats  agnosticism             no      cancer
## 1890                      likes dogs         <NA>      sometimes         leo
## 1891       likes dogs and likes cats         <NA>             no       libra
## 1892       likes dogs and likes cats  agnosticism             no      taurus
## 1893       likes dogs and likes cats christianity           <NA>        <NA>
## 1894       likes dogs and likes cats christianity             no       libra
## 1895                            <NA>         <NA>             no         leo
## 1896    likes dogs and dislikes cats         <NA>             no    aquarius
## 1897                            <NA>     buddhism             no       libra
## 1898                      likes dogs      judaism             no   capricorn
## 1899       likes dogs and likes cats      judaism             no      taurus
## 1900                            <NA>  agnosticism             no        <NA>
## 1901       likes dogs and likes cats christianity             no         leo
## 1902                      likes dogs     hinduism             no     scorpio
## 1903       likes dogs and likes cats  agnosticism             no      pisces
## 1904       likes dogs and likes cats christianity  when drinking       aries
## 1905                      likes cats        other             no     scorpio
## 1906                            <NA> christianity  when drinking      gemini
## 1907                            <NA>         <NA>      sometimes      taurus
## 1908       likes dogs and likes cats         <NA>           <NA>       virgo
## 1909           has dogs and has cats     buddhism             no      gemini
## 1910       likes dogs and likes cats         <NA>             no      gemini
## 1911       likes dogs and likes cats  agnosticism             no      pisces
## 1912       likes dogs and likes cats        other             no      pisces
## 1913                            <NA>         <NA>             no        <NA>
## 1914                            <NA>         <NA>             no        <NA>
## 1915       likes dogs and likes cats        other             no       libra
## 1916    likes dogs and dislikes cats      judaism             no       virgo
## 1917                            <NA>      atheism             no sagittarius
## 1918                      likes dogs         <NA>             no      gemini
## 1919       likes dogs and likes cats      judaism             no     scorpio
## 1920       likes dogs and likes cats         <NA>             no      gemini
## 1921                        has dogs  agnosticism             no        <NA>
## 1922                            <NA>         <NA>             no      gemini
## 1923                            <NA>         <NA>           <NA>        <NA>
## 1924       likes dogs and likes cats  agnosticism           <NA> sagittarius
## 1925                            <NA>         <NA>             no        <NA>
## 1926                            <NA>         <NA>             no        <NA>
## 1927                      likes cats  agnosticism             no      gemini
## 1928       likes dogs and likes cats         <NA>             no        <NA>
## 1929                            <NA>        other             no       aries
## 1930         has dogs and likes cats         <NA>             no      taurus
## 1931         has dogs and likes cats  agnosticism             no         leo
## 1932                        has cats         <NA>           <NA>      taurus
## 1933                            <NA>      atheism             no       aries
## 1934                      likes cats  agnosticism             no        <NA>
## 1935                      likes dogs      atheism             no         leo
## 1936       likes dogs and likes cats      judaism           <NA>        <NA>
## 1937    likes dogs and dislikes cats     buddhism             no         leo
## 1938       likes dogs and likes cats      atheism             no      gemini
## 1939       likes dogs and likes cats christianity trying to quit      cancer
## 1940       likes dogs and likes cats         <NA>             no         leo
## 1941 dislikes dogs and dislikes cats christianity             no        <NA>
## 1942       likes dogs and likes cats         <NA>             no sagittarius
## 1943       likes dogs and likes cats      judaism             no       libra
## 1944         likes dogs and has cats        other             no       virgo
## 1945                            <NA>         <NA>             no        <NA>
## 1946                            <NA>         <NA>  when drinking        <NA>
## 1947                      likes dogs  catholicism             no       libra
## 1948                        has dogs      judaism             no      gemini
## 1949       likes dogs and likes cats      atheism             no    aquarius
## 1950                            <NA>         <NA>             no       libra
## 1951       likes dogs and likes cats  catholicism             no    aquarius
## 1952                            <NA>     buddhism             no      cancer
## 1953                            <NA>         <NA>           <NA>      gemini
## 1954                            <NA>  agnosticism             no      pisces
## 1955                            <NA> christianity             no     scorpio
## 1956       likes dogs and likes cats         <NA>             no      cancer
## 1957         likes dogs and has cats        other trying to quit      cancer
## 1958       likes dogs and likes cats christianity             no      gemini
## 1959                      likes dogs        other  when drinking      taurus
## 1960                        has dogs         <NA>  when drinking      gemini
## 1961       likes dogs and likes cats        other             no      taurus
## 1962       likes dogs and likes cats        other            yes      taurus
## 1963         has dogs and likes cats         <NA>             no       libra
## 1964       likes dogs and likes cats  agnosticism             no      gemini
## 1965         has dogs and likes cats  agnosticism             no     scorpio
## 1966                      likes cats        other             no         leo
## 1967                            <NA>         <NA>      sometimes     scorpio
## 1968       likes dogs and likes cats  agnosticism      sometimes       virgo
## 1969                            <NA>      atheism            yes      gemini
## 1970                        has cats      atheism             no      gemini
## 1971                            <NA>         <NA>             no        <NA>
## 1972                            <NA>         <NA>             no    aquarius
## 1973                      likes dogs        islam             no sagittarius
## 1974                            <NA>         <NA>           <NA>        <NA>
## 1975       likes dogs and likes cats        other             no       virgo
## 1976                        has dogs         <NA>             no         leo
## 1977       likes dogs and likes cats  agnosticism             no       aries
## 1978                            <NA>         <NA>           <NA>        <NA>
## 1979                            <NA>         <NA>           <NA>       virgo
## 1980                            <NA>         <NA>            yes    aquarius
## 1981                      likes cats  agnosticism             no         leo
## 1982       likes dogs and likes cats         <NA>           <NA>    aquarius
## 1983                            <NA>         <NA>             no        <NA>
## 1984                      likes dogs         <NA>             no   capricorn
## 1985       likes dogs and likes cats christianity             no sagittarius
## 1986       likes dogs and likes cats  agnosticism             no       libra
## 1987         likes dogs and has cats      atheism  when drinking sagittarius
## 1988                      likes dogs  catholicism             no     scorpio
## 1989       likes dogs and likes cats     buddhism             no       virgo
## 1990       likes dogs and likes cats  agnosticism             no       aries
## 1991                      likes dogs christianity             no   capricorn
## 1992       likes dogs and likes cats         <NA>             no sagittarius
## 1993 dislikes dogs and dislikes cats  agnosticism             no        <NA>
## 1994       likes dogs and likes cats  catholicism             no    aquarius
## 1995         likes dogs and has cats      atheism  when drinking         leo
## 1996                            <NA>         <NA>  when drinking sagittarius
## 1997                            <NA>         <NA>             no        <NA>
## 1998         likes dogs and has cats        other             no      gemini
## 1999                            <NA>         <NA>             no        <NA>
## 2000       likes dogs and likes cats      atheism           <NA>   capricorn
## 2001                            <NA>        other             no      cancer
## 2002                            <NA> christianity             no      gemini
## 2003       likes dogs and likes cats      atheism             no         leo
## 2004         has dogs and likes cats  catholicism             no sagittarius
## 2005           has dogs and has cats christianity             no       aries
## 2006                            <NA>         <NA>             no       libra
## 2007                            <NA>         <NA>           <NA>        <NA>
## 2008       likes dogs and likes cats         <NA>             no      cancer
## 2009                            <NA>         <NA>             no        <NA>
## 2010         likes dogs and has cats  catholicism             no     scorpio
## 2011       likes dogs and likes cats         <NA>             no        <NA>
## 2012         likes dogs and has cats        other             no      gemini
## 2013         has dogs and likes cats  catholicism             no       aries
## 2014       likes dogs and likes cats  agnosticism             no       libra
## 2015                      likes dogs      atheism             no      cancer
## 2016                            <NA>         <NA>           <NA>       aries
## 2017       likes dogs and likes cats        other             no      pisces
## 2018                            <NA>      judaism             no      gemini
## 2019                            <NA>  agnosticism             no        <NA>
## 2020                      likes dogs         <NA>             no       libra
## 2021                            <NA>  agnosticism             no      taurus
## 2022                            <NA>         <NA>             no sagittarius
## 2023                            <NA>         <NA>             no        <NA>
## 2024                      likes dogs  agnosticism             no        <NA>
## 2025                            <NA>  agnosticism  when drinking    aquarius
## 2026                            <NA>         <NA>             no   capricorn
## 2027                            <NA>      judaism             no    aquarius
## 2028                            <NA>         <NA>             no      pisces
## 2029                            <NA> christianity  when drinking       virgo
## 2030                            <NA>         <NA>             no        <NA>
## 2031       likes dogs and likes cats         <NA>             no       virgo
## 2032                            <NA>         <NA>           <NA>        <NA>
## 2033       likes dogs and likes cats         <NA>             no         leo
## 2034                      likes cats  agnosticism             no      cancer
## 2035       likes dogs and likes cats      atheism             no      pisces
## 2036       likes dogs and likes cats         <NA>             no    aquarius
## 2037                            <NA>        other           <NA>      gemini
## 2038                      likes dogs         <NA>             no      pisces
## 2039                      likes cats        other             no         leo
## 2040         likes dogs and has cats        other      sometimes      pisces
## 2041                      likes dogs      judaism           <NA>       libra
## 2042       likes dogs and likes cats         <NA>           <NA>      cancer
## 2043         likes dogs and has cats      atheism             no sagittarius
## 2044                            <NA>         <NA>             no        <NA>
## 2045       likes dogs and likes cats      atheism             no      cancer
## 2046         likes dogs and has cats        islam trying to quit       aries
## 2047       likes dogs and likes cats        other             no    aquarius
## 2048       likes dogs and likes cats        other             no      taurus
## 2049       likes dogs and likes cats  agnosticism             no      pisces
## 2050                            <NA>      atheism trying to quit        <NA>
## 2051         has dogs and likes cats      atheism      sometimes      cancer
## 2052                            <NA>      atheism             no     scorpio
## 2053                      likes dogs      atheism             no   capricorn
## 2054       likes dogs and likes cats         <NA>             no       aries
## 2055       likes dogs and likes cats christianity  when drinking      gemini
## 2056                            <NA>         <NA>           <NA>        <NA>
## 2057                      likes cats         <NA>             no       libra
## 2058       likes dogs and likes cats  agnosticism             no         leo
## 2059                      likes dogs         <NA>             no      gemini
## 2060         likes dogs and has cats         <NA>  when drinking sagittarius
## 2061                            <NA>  agnosticism           <NA>       virgo
## 2062                            <NA>  catholicism           <NA>        <NA>
## 2063                            <NA>         <NA>             no        <NA>
## 2064                      likes dogs      judaism             no sagittarius
## 2065       likes dogs and likes cats christianity             no         leo
## 2066           has dogs and has cats christianity trying to quit sagittarius
## 2067                      likes cats      atheism             no    aquarius
## 2068                            <NA>         <NA> trying to quit       aries
## 2069                            <NA>        other             no      gemini
## 2070       likes dogs and likes cats         <NA>             no    aquarius
## 2071       likes dogs and likes cats christianity             no       virgo
## 2072       likes dogs and likes cats         <NA>             no    aquarius
## 2073         likes dogs and has cats      atheism  when drinking       virgo
## 2074       likes dogs and likes cats      atheism           <NA>      cancer
## 2075         likes dogs and has cats         <NA>             no      pisces
## 2076       likes dogs and likes cats  agnosticism             no        <NA>
## 2077                      likes dogs         <NA>             no         leo
## 2078       likes dogs and likes cats christianity             no       virgo
## 2079         has dogs and likes cats        other             no      taurus
## 2080                        has dogs        other             no   capricorn
## 2081                      likes dogs christianity             no        <NA>
## 2082                            <NA>         <NA>             no       aries
## 2083       likes dogs and likes cats      atheism             no     scorpio
## 2084                            <NA>     buddhism             no       aries
## 2085                      likes dogs  catholicism             no       aries
## 2086       likes dogs and likes cats  catholicism             no     scorpio
## 2087    likes dogs and dislikes cats        other             no       virgo
## 2088         likes dogs and has cats  agnosticism  when drinking      cancer
## 2089                        has dogs         <NA>             no sagittarius
## 2090         likes dogs and has cats         <NA>           <NA>        <NA>
## 2091       likes dogs and likes cats     buddhism      sometimes      gemini
## 2092    likes dogs and dislikes cats  agnosticism             no      pisces
## 2093         has dogs and likes cats        other  when drinking      cancer
## 2094                        has dogs         <NA>      sometimes       aries
## 2095                            <NA>  catholicism             no        <NA>
## 2096       likes dogs and likes cats      judaism             no      cancer
## 2097       likes dogs and likes cats        other             no    aquarius
## 2098       likes dogs and likes cats         <NA>             no        <NA>
## 2099           has dogs and has cats      atheism             no   capricorn
## 2100                        has cats         <NA>             no        <NA>
## 2101                            <NA>        other            yes      cancer
## 2102       likes dogs and likes cats christianity             no      pisces
## 2103                      likes dogs christianity             no         leo
## 2104                      likes dogs christianity             no   capricorn
## 2105                            <NA>         <NA>           <NA>        <NA>
## 2106                      likes dogs christianity             no sagittarius
## 2107                            <NA>      judaism           <NA>       libra
## 2108                      likes dogs  agnosticism             no      cancer
## 2109                            <NA>         <NA>             no      cancer
## 2110                      likes cats      atheism             no        <NA>
## 2111       likes dogs and likes cats         <NA> trying to quit         leo
## 2112         likes dogs and has cats  agnosticism             no       virgo
## 2113                        has dogs        other             no      cancer
## 2114    likes dogs and dislikes cats      atheism             no     scorpio
## 2115                      likes dogs         <NA>             no sagittarius
## 2116                            <NA>        other             no         leo
## 2117                        has dogs         <NA>             no   capricorn
## 2118                            <NA>        other             no      cancer
## 2119           has dogs and has cats         <NA>             no      gemini
## 2120                            <NA>         <NA>           <NA>      cancer
## 2121                            <NA>  agnosticism             no sagittarius
## 2122                            <NA>  catholicism             no    aquarius
## 2123         has dogs and likes cats         <NA>            yes      gemini
## 2124    likes dogs and dislikes cats        other             no         leo
## 2125                      likes cats        other      sometimes   capricorn
## 2126                        has cats  agnosticism             no      gemini
## 2127                            <NA>  agnosticism             no        <NA>
## 2128         has dogs and likes cats  agnosticism             no    aquarius
## 2129       likes dogs and likes cats         <NA> trying to quit      gemini
## 2130                      likes dogs         <NA>             no        <NA>
## 2131    likes dogs and dislikes cats     buddhism             no      taurus
## 2132                      likes cats        other             no       aries
## 2133         likes dogs and has cats christianity             no       libra
## 2134       likes dogs and likes cats        other             no        <NA>
## 2135                        has dogs christianity             no      taurus
## 2136       likes dogs and likes cats        other             no      taurus
## 2137                            <NA>         <NA>             no        <NA>
## 2138                        has dogs  catholicism            yes      pisces
## 2139                      likes dogs         <NA>             no      cancer
## 2140       likes dogs and likes cats        other      sometimes      pisces
## 2141       likes dogs and likes cats        other             no       virgo
## 2142                            <NA>         <NA>      sometimes      gemini
## 2143       likes dogs and likes cats         <NA>             no    aquarius
## 2144                      likes dogs  catholicism             no     scorpio
## 2145                            <NA>         <NA>             no        <NA>
## 2146       likes dogs and likes cats     hinduism            yes    aquarius
## 2147       likes dogs and likes cats      atheism  when drinking        <NA>
## 2148                        has cats        other             no      gemini
## 2149                            <NA>         <NA>  when drinking     scorpio
## 2150         has dogs and likes cats christianity             no    aquarius
## 2151       likes dogs and likes cats  agnosticism             no     scorpio
## 2152                            <NA>      atheism             no      taurus
## 2153                      likes dogs     buddhism             no       libra
## 2154                            <NA>  agnosticism             no      pisces
## 2155                            <NA>         <NA>           <NA>        <NA>
## 2156       likes dogs and likes cats         <NA>             no      pisces
## 2157         likes dogs and has cats         <NA>             no       libra
## 2158                        has dogs         <NA>             no         leo
## 2159       likes dogs and likes cats         <NA> trying to quit      taurus
## 2160                            <NA>  catholicism      sometimes       aries
## 2161                            <NA>  catholicism             no     scorpio
## 2162       likes dogs and likes cats christianity             no     scorpio
## 2163                            <NA>         <NA>             no     scorpio
## 2164           has dogs and has cats      judaism trying to quit        <NA>
## 2165                            <NA>         <NA>             no         leo
## 2166                            <NA>         <NA>             no     scorpio
## 2167                      likes dogs         <NA>             no        <NA>
## 2168       likes dogs and likes cats      atheism             no     scorpio
## 2169       likes dogs and likes cats        other             no    aquarius
## 2170         likes dogs and has cats         <NA>             no       libra
## 2171                            <NA>  catholicism             no         leo
## 2172                        has dogs        other             no         leo
## 2173                            <NA>      atheism             no    aquarius
## 2174                            <NA>         <NA>             no    aquarius
## 2175                      likes dogs         <NA>             no     scorpio
## 2176                        has dogs         <NA>             no        <NA>
## 2177                      likes dogs        other             no       virgo
## 2178                            <NA>      atheism  when drinking      gemini
## 2179                            <NA>  agnosticism             no        <NA>
## 2180       likes dogs and likes cats christianity             no       virgo
## 2181       likes dogs and likes cats         <NA>             no        <NA>
## 2182       likes dogs and likes cats         <NA>             no      cancer
## 2183       likes dogs and likes cats         <NA>             no   capricorn
## 2184                            <NA>      atheism             no   capricorn
## 2185                            <NA> christianity             no    aquarius
## 2186                            <NA>      atheism      sometimes        <NA>
## 2187                            <NA>  agnosticism           <NA>        <NA>
## 2188                            <NA>  catholicism             no      cancer
## 2189       likes dogs and likes cats     buddhism             no         leo
## 2190       likes dogs and likes cats        other             no      taurus
## 2191                      likes dogs  catholicism             no        <NA>
## 2192                            <NA>         <NA>           <NA>        <NA>
## 2193                            <NA>         <NA>             no        <NA>
## 2194                        has cats      atheism            yes      pisces
## 2195                            <NA>  agnosticism             no       libra
## 2196       likes dogs and likes cats      atheism             no      pisces
## 2197       likes dogs and likes cats      atheism  when drinking      gemini
## 2198                            <NA>         <NA>             no     scorpio
## 2199                            <NA>  agnosticism             no      taurus
## 2200           has dogs and has cats        other             no sagittarius
## 2201         likes dogs and has cats  agnosticism             no      cancer
## 2202                            <NA>         <NA>             no       virgo
## 2203                            <NA>         <NA>           <NA>     scorpio
## 2204       likes dogs and likes cats      atheism             no      cancer
## 2205                      likes dogs  agnosticism             no        <NA>
## 2206                            <NA>         <NA>             no        <NA>
## 2207                            <NA>      atheism      sometimes      pisces
## 2208    likes dogs and dislikes cats         <NA>             no        <NA>
## 2209                            <NA>         <NA>             no    aquarius
## 2210                            <NA>         <NA>             no      cancer
## 2211                            <NA>         <NA>           <NA>      taurus
## 2212                            <NA>        other           <NA>       virgo
## 2213         has dogs and likes cats         <NA>           <NA>      gemini
## 2214                        has cats  agnosticism      sometimes      cancer
## 2215                        has cats      atheism      sometimes        <NA>
## 2216      has dogs and dislikes cats         <NA>      sometimes    aquarius
## 2217                        has dogs         <NA>             no sagittarius
## 2218                            <NA>        other             no       libra
## 2219         has dogs and likes cats      atheism             no sagittarius
## 2220                        has cats         <NA>           <NA>      cancer
## 2221                            <NA>         <NA>           <NA>      pisces
## 2222                      likes cats        other             no    aquarius
## 2223                      likes dogs        other             no       libra
## 2224                            <NA>         <NA>             no        <NA>
## 2225                      likes dogs         <NA>             no       libra
## 2226                            <NA>  agnosticism             no      pisces
## 2227                            <NA>         <NA>             no      pisces
## 2228                            <NA>         <NA>            yes       aries
## 2229         likes dogs and has cats        other             no      taurus
## 2230                            <NA> christianity            yes      gemini
## 2231       likes dogs and likes cats      judaism             no      cancer
## 2232       likes dogs and likes cats  agnosticism             no        <NA>
## 2233         likes dogs and has cats        other             no       libra
## 2234                      likes dogs     buddhism             no      gemini
## 2235    likes dogs and dislikes cats  agnosticism trying to quit      pisces
## 2236         has dogs and likes cats     buddhism             no      gemini
## 2237                            <NA>         <NA>             no      cancer
## 2238                      likes dogs         <NA>             no       virgo
## 2239                            <NA>         <NA>             no         leo
## 2240                      likes cats  agnosticism             no       aries
## 2241                            <NA>      atheism trying to quit    aquarius
## 2242                            <NA>  agnosticism             no        <NA>
## 2243                            <NA>         <NA>      sometimes    aquarius
## 2244                            <NA> christianity            yes      gemini
## 2245                      likes dogs         <NA>             no     scorpio
## 2246                            <NA>         <NA>  when drinking       libra
## 2247       likes dogs and likes cats         <NA>             no       aries
## 2248                      likes cats  agnosticism             no   capricorn
## 2249       likes dogs and likes cats         <NA>      sometimes     scorpio
## 2250                            <NA>      atheism             no      taurus
## 2251                        has cats     buddhism             no       virgo
## 2252           has dogs and has cats         <NA>  when drinking         leo
## 2253                            <NA>         <NA>             no        <NA>
## 2254       likes dogs and likes cats        other             no       libra
## 2255                            <NA>        islam             no    aquarius
## 2256                        has dogs         <NA>  when drinking      gemini
## 2257                        has cats      judaism             no      gemini
## 2258                            <NA>         <NA>             no       libra
## 2259       likes dogs and likes cats      atheism             no       libra
## 2260    likes dogs and dislikes cats        other      sometimes    aquarius
## 2261                            <NA>      atheism            yes   capricorn
## 2262         likes dogs and has cats        other             no       virgo
## 2263                      likes cats  catholicism             no      gemini
## 2264                            <NA>        other             no       virgo
## 2265       likes dogs and likes cats         <NA>             no       aries
## 2266                            <NA>  agnosticism             no       aries
## 2267       likes dogs and likes cats      atheism             no      pisces
## 2268                            <NA>         <NA>             no       aries
## 2269                            <NA>      atheism      sometimes        <NA>
## 2270                            <NA>         <NA>      sometimes        <NA>
## 2271                            <NA>  catholicism             no       virgo
## 2272    dislikes dogs and likes cats  agnosticism             no sagittarius
## 2273    likes dogs and dislikes cats      judaism             no     scorpio
## 2274                            <NA> christianity             no       aries
## 2275       likes dogs and likes cats         <NA>             no        <NA>
## 2276           has dogs and has cats         <NA>      sometimes       virgo
## 2277                            <NA>         <NA>             no      gemini
## 2278                            <NA>         <NA>  when drinking        <NA>
## 2279           has dogs and has cats  catholicism             no       aries
## 2280                        has dogs christianity             no   capricorn
## 2281       likes dogs and likes cats  catholicism      sometimes sagittarius
## 2282                            <NA> christianity             no       aries
## 2283                            <NA>         <NA>             no    aquarius
## 2284                            <NA>  catholicism  when drinking      pisces
## 2285                            <NA>  agnosticism             no      gemini
## 2286       likes dogs and likes cats  catholicism             no      gemini
## 2287                      likes dogs         <NA>             no       libra
## 2288                            <NA>        other             no       virgo
## 2289       likes dogs and likes cats         <NA>           <NA>         leo
## 2290       likes dogs and likes cats  agnosticism             no       virgo
## 2291         has dogs and likes cats        other             no     scorpio
## 2292                      likes dogs         <NA>             no        <NA>
## 2293                        has dogs         <NA>             no      taurus
## 2294         likes dogs and has cats christianity      sometimes      taurus
## 2295                            <NA>         <NA>           <NA>        <NA>
## 2296                        has dogs christianity             no       aries
## 2297                      likes dogs  agnosticism trying to quit       libra
## 2298                      likes dogs         <NA>      sometimes      cancer
## 2299                            <NA>  catholicism             no      gemini
## 2300       likes dogs and likes cats  agnosticism             no sagittarius
## 2301       likes dogs and likes cats      atheism             no   capricorn
## 2302                   dislikes cats         <NA>             no       aries
## 2303                            <NA>         <NA> trying to quit      gemini
## 2304                            <NA>  catholicism             no    aquarius
## 2305                            <NA>         <NA>             no        <NA>
## 2306                            <NA>  catholicism  when drinking      pisces
## 2307       likes dogs and likes cats  catholicism  when drinking      pisces
## 2308         has dogs and likes cats         <NA>             no      cancer
## 2309                      likes dogs  catholicism             no       libra
## 2310                            <NA>  catholicism             no      taurus
## 2311                            <NA>         <NA>             no       libra
## 2312                            <NA>      atheism      sometimes     scorpio
## 2313                            <NA>         <NA>  when drinking      cancer
## 2314                            <NA>     buddhism      sometimes      cancer
## 2315                            <NA>  catholicism      sometimes       aries
## 2316                            <NA>         <NA>           <NA>       aries
## 2317                            <NA>      judaism             no      cancer
## 2318                            <NA>         <NA>             no      cancer
## 2319         likes dogs and has cats        other             no     scorpio
## 2320                            <NA>         <NA>             no         leo
## 2321       likes dogs and likes cats christianity             no         leo
## 2322         likes dogs and has cats        other           <NA>      cancer
## 2323       likes dogs and likes cats      judaism             no       libra
## 2324       likes dogs and likes cats  agnosticism            yes      cancer
## 2325       likes dogs and likes cats        other             no      gemini
## 2326                            <NA>         <NA>             no       libra
## 2327       likes dogs and likes cats         <NA>             no       aries
## 2328                            <NA>         <NA>           <NA>       aries
## 2329         likes dogs and has cats        other             no       libra
## 2330                            <NA>        other  when drinking       virgo
## 2331                            <NA>  catholicism             no      cancer
## 2332       likes dogs and likes cats      judaism             no      cancer
## 2333         likes dogs and has cats        other             no      taurus
## 2334                        has dogs  catholicism             no         leo
## 2335                            <NA>         <NA>             no       virgo
## 2336                            <NA>         <NA>           <NA>      cancer
## 2337                            <NA>      judaism             no      gemini
## 2338                            <NA>  catholicism             no    aquarius
## 2339       likes dogs and likes cats  catholicism             no      pisces
## 2340                            <NA>      atheism             no    aquarius
## 2341                            <NA>         <NA>             no       aries
## 2342       likes dogs and likes cats      judaism  when drinking      gemini
## 2343         has dogs and likes cats  catholicism             no      gemini
## 2344         likes dogs and has cats        other      sometimes      gemini
## 2345       likes dogs and likes cats  agnosticism             no    aquarius
## 2346       likes dogs and likes cats      judaism             no      gemini
## 2347                      likes dogs         <NA>             no      cancer
## 2348                            <NA>         <NA>             no        <NA>
## 2349                            <NA>      judaism             no       virgo
## 2350       likes dogs and likes cats  agnosticism             no        <NA>
## 2351                            <NA>         <NA>             no        <NA>
## 2352                            <NA>  agnosticism             no       virgo
## 2353                            <NA>  agnosticism             no        <NA>
## 2354                            <NA>  catholicism      sometimes   capricorn
## 2355                            <NA>  agnosticism           <NA>      gemini
## 2356                            <NA>         <NA>           <NA>        <NA>
## 2357       likes dogs and likes cats      atheism             no        <NA>
## 2358                            <NA>        other             no       virgo
## 2359                            <NA>         <NA>             no         leo
## 2360                            <NA>         <NA>      sometimes       virgo
## 2361                            <NA> christianity            yes         leo
## 2362                            <NA>         <NA>           <NA>     scorpio
## 2363                      likes dogs  agnosticism            yes       aries
## 2364                        has dogs  catholicism             no      gemini
## 2365       likes dogs and likes cats        other             no     scorpio
## 2366                        has dogs         <NA>             no      pisces
## 2367         likes dogs and has cats  catholicism             no         leo
## 2368                      likes dogs      atheism             no      pisces
## 2369       likes dogs and likes cats         <NA>             no       virgo
## 2370         likes dogs and has cats      atheism  when drinking       aries
## 2371                            <NA>      judaism             no sagittarius
## 2372                        has dogs christianity             no      gemini
## 2373                            <NA>         <NA>           <NA>        <NA>
## 2374                            <NA>      atheism             no        <NA>
## 2375                      likes dogs         <NA>             no         leo
## 2376       likes dogs and likes cats  agnosticism             no         leo
## 2377                            <NA> christianity             no    aquarius
## 2378                      likes cats  catholicism             no      cancer
## 2379    likes dogs and dislikes cats  catholicism             no   capricorn
## 2380                            <NA>  catholicism             no     scorpio
## 2381       likes dogs and likes cats        other      sometimes   capricorn
## 2382                            <NA>  catholicism             no        <NA>
## 2383                            <NA>         <NA>      sometimes        <NA>
## 2384                            <NA>         <NA>             no        <NA>
## 2385                            <NA>         <NA>      sometimes         leo
## 2386         likes dogs and has cats      atheism             no       libra
## 2387         likes dogs and has cats      atheism             no    aquarius
## 2388                            <NA>  agnosticism             no       virgo
## 2389                            <NA>         <NA>             no      pisces
## 2390                      likes dogs         <NA>             no        <NA>
## 2391                            <NA>         <NA>             no        <NA>
## 2392                            <NA>         <NA>             no        <NA>
## 2393       likes dogs and likes cats        other           <NA>      taurus
## 2394         has dogs and likes cats     buddhism trying to quit      taurus
## 2395       likes dogs and likes cats         <NA>             no       virgo
## 2396                      likes cats      atheism             no         leo
## 2397       likes dogs and likes cats christianity             no       aries
## 2398                      likes dogs      atheism             no sagittarius
## 2399                            <NA>         <NA>             no        <NA>
## 2400                            <NA>         <NA>           <NA>        <NA>
## 2401                            <NA>      atheism             no    aquarius
## 2402       likes dogs and likes cats        other             no      cancer
## 2403                            <NA>      atheism             no         leo
## 2404                            <NA>     buddhism             no        <NA>
## 2405      has dogs and dislikes cats  catholicism             no       aries
## 2406                      likes dogs     buddhism trying to quit       aries
## 2407                            <NA>  agnosticism           <NA>      gemini
## 2408       likes dogs and likes cats  agnosticism             no      gemini
## 2409       likes dogs and likes cats         <NA>             no      cancer
## 2410         likes dogs and has cats        other             no   capricorn
## 2411       likes dogs and likes cats  agnosticism             no sagittarius
## 2412         has dogs and likes cats  catholicism            yes       virgo
## 2413                        has dogs      judaism      sometimes     scorpio
## 2414       likes dogs and likes cats      atheism             no         leo
## 2415       likes dogs and likes cats        other             no       virgo
## 2416       likes dogs and likes cats      atheism             no       virgo
## 2417                            <NA>         <NA>             no       aries
## 2418                            <NA>  agnosticism      sometimes      cancer
## 2419                            <NA>  agnosticism             no      cancer
## 2420                        has dogs         <NA>             no       libra
## 2421                      likes dogs      atheism             no        <NA>
## 2422       likes dogs and likes cats  catholicism             no       virgo
## 2423       likes dogs and likes cats        other             no       aries
## 2424                            <NA>         <NA>           <NA>        <NA>
## 2425                            <NA>         <NA>             no        <NA>
## 2426                            <NA>        other             no sagittarius
## 2427       likes dogs and likes cats  catholicism             no      gemini
## 2428                            <NA>         <NA>           <NA> sagittarius
## 2429                      likes dogs      judaism             no       libra
## 2430       likes dogs and likes cats  catholicism             no      pisces
## 2431       likes dogs and likes cats      judaism             no      cancer
## 2432                            <NA>         <NA>             no         leo
## 2433                            <NA>         <NA>             no         leo
## 2434       likes dogs and likes cats  agnosticism             no        <NA>
## 2435                      likes dogs      judaism      sometimes       aries
## 2436                        has dogs  catholicism             no      cancer
## 2437                      likes cats         <NA>             no       aries
## 2438                            <NA>        other  when drinking     scorpio
## 2439                            <NA> christianity             no sagittarius
## 2440       likes dogs and likes cats      atheism             no      cancer
## 2441                            <NA>         <NA>             no      pisces
## 2442                            <NA>      atheism             no     scorpio
## 2443                      likes dogs         <NA>             no        <NA>
## 2444                            <NA>  agnosticism             no      pisces
## 2445                            <NA>         <NA>           <NA>        <NA>
## 2446       likes dogs and likes cats  catholicism             no      cancer
## 2447                            <NA>  agnosticism             no         leo
## 2448                      likes cats        other             no       virgo
## 2449       likes dogs and likes cats      atheism            yes       aries
## 2450                            <NA>         <NA>             no        <NA>
## 2451                            <NA> christianity             no         leo
## 2452       likes dogs and likes cats christianity             no      gemini
## 2453                            <NA>         <NA>           <NA> sagittarius
## 2454                            <NA>         <NA>      sometimes      taurus
## 2455                        has dogs         <NA>             no       virgo
## 2456                            <NA>      atheism             no      cancer
## 2457                            <NA>         <NA>             no        <NA>
## 2458         likes dogs and has cats      atheism             no       libra
## 2459                            <NA>  catholicism             no   capricorn
## 2460         has dogs and likes cats  agnosticism             no     scorpio
## 2461         likes dogs and has cats         <NA>             no      taurus
## 2462                            <NA>        other  when drinking sagittarius
## 2463       likes dogs and likes cats  agnosticism             no    aquarius
## 2464       likes dogs and likes cats        other             no     scorpio
## 2465                            <NA> christianity             no      gemini
## 2466         has dogs and likes cats  catholicism             no sagittarius
## 2467                            <NA>         <NA>             no sagittarius
## 2468                            <NA>  agnosticism           <NA>       libra
## 2469                            <NA>  agnosticism             no        <NA>
## 2470       likes dogs and likes cats        other            yes       virgo
## 2471       likes dogs and likes cats      judaism             no       aries
## 2472                        has dogs         <NA>             no      gemini
## 2473                            <NA>         <NA>             no sagittarius
## 2474           has dogs and has cats  agnosticism             no   capricorn
## 2475                            <NA>  agnosticism             no        <NA>
## 2476         likes dogs and has cats      atheism             no       virgo
## 2477                            <NA>         <NA>             no         leo
## 2478                        has dogs  agnosticism             no      taurus
## 2479       likes dogs and likes cats        islam             no    aquarius
## 2480         likes dogs and has cats  agnosticism trying to quit   capricorn
## 2481    likes dogs and dislikes cats  agnosticism trying to quit       libra
## 2482                            <NA>  agnosticism             no      taurus
## 2483                            <NA>  agnosticism      sometimes         leo
## 2484         likes dogs and has cats  agnosticism             no         leo
## 2485                      likes cats  agnosticism             no        <NA>
## 2486                      likes dogs        other             no         leo
## 2487                        has dogs        other             no sagittarius
## 2488       likes dogs and likes cats      atheism           <NA>        <NA>
## 2489                            <NA>         <NA>             no        <NA>
## 2490         has dogs and likes cats christianity             no     scorpio
## 2491                            <NA>         <NA>            yes       virgo
## 2492                        has dogs christianity             no      taurus
## 2493       likes dogs and likes cats        other           <NA>      gemini
## 2494                            <NA>         <NA>           <NA>        <NA>
## 2495                            <NA>         <NA>             no         leo
## 2496                      likes dogs      judaism             no       aries
## 2497                      likes dogs         <NA>             no sagittarius
## 2498                            <NA> christianity             no      taurus
## 2499         likes dogs and has cats         <NA>             no       libra
## 2500       likes dogs and likes cats         <NA>             no       libra
## 2501                            <NA>      atheism      sometimes   capricorn
## 2502                            <NA>        other           <NA>       libra
## 2503       likes dogs and likes cats         <NA>           <NA>    aquarius
## 2504         likes dogs and has cats  agnosticism trying to quit      pisces
## 2505       likes dogs and likes cats        other      sometimes      gemini
## 2506                      likes dogs        other      sometimes       virgo
## 2507                            <NA>        other           <NA>     scorpio
## 2508                            <NA>         <NA>             no      gemini
## 2509                            <NA>         <NA>             no      taurus
## 2510                        has dogs         <NA>           <NA>       aries
## 2511    likes dogs and dislikes cats        other             no      taurus
## 2512       likes dogs and likes cats      atheism             no      cancer
## 2513                            <NA>         <NA>           <NA>        <NA>
## 2514         likes dogs and has cats      judaism             no      gemini
## 2515                            <NA>  agnosticism             no       libra
## 2516                      likes dogs         <NA>           <NA>         leo
## 2517           has dogs and has cats     buddhism             no sagittarius
## 2518                            <NA>        other             no        <NA>
## 2519                            <NA>         <NA>            yes         leo
## 2520                        has cats         <NA>             no         leo
## 2521       likes dogs and likes cats  catholicism             no        <NA>
## 2522         likes dogs and has cats        other  when drinking     scorpio
## 2523                            <NA>         <NA>             no        <NA>
## 2524       likes dogs and likes cats         <NA>           <NA>   capricorn
## 2525                            <NA>         <NA>             no       virgo
## 2526                            <NA>        other             no sagittarius
## 2527                      likes cats         <NA>            yes      pisces
## 2528         likes dogs and has cats        other             no      cancer
## 2529                            <NA>         <NA>             no        <NA>
## 2530                            <NA>         <NA>             no       libra
## 2531                            <NA>  agnosticism             no       virgo
## 2532                        has cats      judaism           <NA>      pisces
## 2533                            <NA>         <NA>             no      gemini
## 2534                        has cats         <NA>             no       aries
## 2535       likes dogs and likes cats         <NA>           <NA>       virgo
## 2536    likes dogs and dislikes cats christianity             no   capricorn
## 2537       likes dogs and likes cats         <NA>             no       virgo
## 2538         has dogs and likes cats  agnosticism             no sagittarius
## 2539         likes dogs and has cats      judaism             no       aries
## 2540                            <NA>  agnosticism           <NA>        <NA>
## 2541       likes dogs and likes cats      judaism             no       aries
## 2542                            <NA> christianity      sometimes sagittarius
## 2543                      likes dogs     buddhism             no   capricorn
## 2544           has dogs and has cats  agnosticism             no         leo
## 2545                            <NA>         <NA>            yes       libra
## 2546                            <NA>         <NA>           <NA>      gemini
## 2547                      likes dogs         <NA>  when drinking         leo
## 2548       likes dogs and likes cats        other            yes      pisces
## 2549                            <NA>         <NA>             no       libra
## 2550                            <NA>         <NA>             no sagittarius
## 2551                            <NA>         <NA>             no        <NA>
## 2552         likes dogs and has cats  agnosticism  when drinking      cancer
## 2553                        has dogs        other             no    aquarius
## 2554    likes dogs and dislikes cats  agnosticism      sometimes   capricorn
## 2555                            <NA> christianity             no   capricorn
## 2556                      likes dogs        islam           <NA>         leo
## 2557       likes dogs and likes cats     buddhism             no   capricorn
## 2558       likes dogs and likes cats         <NA>             no       aries
## 2559       likes dogs and likes cats  agnosticism      sometimes      pisces
## 2560       likes dogs and likes cats         <NA>             no        <NA>
## 2561                      likes cats         <NA>             no      pisces
## 2562                      likes dogs         <NA>             no   capricorn
## 2563                      likes dogs  agnosticism             no       virgo
## 2564       likes dogs and likes cats         <NA>             no    aquarius
## 2565                        has cats      atheism             no         leo
## 2566       likes dogs and likes cats      atheism      sometimes    aquarius
## 2567                        has dogs christianity             no   capricorn
## 2568       likes dogs and likes cats  catholicism             no      gemini
## 2569                            <NA>      atheism             no        <NA>
## 2570                            <NA>         <NA>           <NA>      taurus
## 2571                            <NA>      atheism             no      pisces
## 2572       likes dogs and likes cats         <NA>           <NA>    aquarius
## 2573         likes dogs and has cats christianity             no    aquarius
## 2574                            <NA>      judaism           <NA>        <NA>
## 2575                        has dogs  agnosticism             no        <NA>
## 2576       likes dogs and likes cats        other             no        <NA>
## 2577                            <NA>         <NA>             no      taurus
## 2578                            <NA>         <NA>            yes       aries
## 2579       likes dogs and likes cats         <NA>             no        <NA>
## 2580         has dogs and likes cats        other             no       libra
## 2581                            <NA>         <NA>             no      cancer
## 2582       likes dogs and likes cats      atheism             no      taurus
## 2583                            <NA>         <NA>             no     scorpio
## 2584                            <NA>         <NA>  when drinking      gemini
## 2585                            <NA>  catholicism      sometimes   capricorn
## 2586                            <NA>      judaism             no      pisces
## 2587           has dogs and has cats         <NA>             no        <NA>
## 2588       likes dogs and likes cats  agnosticism             no      gemini
## 2589                      likes dogs  catholicism             no         leo
## 2590                        has cats      judaism             no        <NA>
## 2591         likes dogs and has cats      atheism trying to quit   capricorn
## 2592                      likes dogs         <NA>             no        <NA>
## 2593    likes dogs and dislikes cats      judaism             no        <NA>
## 2594                        has dogs         <NA>             no        <NA>
## 2595                        has dogs christianity             no     scorpio
## 2596                        has cats         <NA>           <NA>        <NA>
## 2597                            <NA>  agnosticism             no        <NA>
## 2598                        has dogs         <NA>             no     scorpio
## 2599                            <NA>         <NA>           <NA>        <NA>
## 2600                            <NA>         <NA>             no        <NA>
## 2601         likes dogs and has cats         <NA>             no      cancer
## 2602       likes dogs and likes cats         <NA>             no         leo
## 2603           has dogs and has cats  agnosticism             no     scorpio
## 2604                            <NA>         <NA>             no        <NA>
## 2605                        has dogs  catholicism             no         leo
## 2606         has dogs and likes cats  agnosticism             no       aries
## 2607                            <NA> christianity      sometimes      cancer
## 2608                            <NA>         <NA>             no        <NA>
## 2609       likes dogs and likes cats        other           <NA>      cancer
## 2610                      likes dogs christianity             no sagittarius
## 2611                      likes dogs         <NA>           <NA>      pisces
## 2612                      likes cats      judaism            yes         leo
## 2613       likes dogs and likes cats         <NA>           <NA>       libra
## 2614                        has cats         <NA>            yes      pisces
## 2615                      likes dogs         <NA>      sometimes       aries
## 2616    likes dogs and dislikes cats christianity             no     scorpio
## 2617                            <NA> christianity             no        <NA>
## 2618                            <NA>         <NA>      sometimes      cancer
## 2619       likes dogs and likes cats  agnosticism             no    aquarius
## 2620       likes dogs and likes cats      atheism             no       aries
## 2621                            <NA>         <NA>           <NA>        <NA>
## 2622                            <NA>     hinduism             no    aquarius
## 2623                            <NA>         <NA>             no        <NA>
## 2624                            <NA>         <NA>             no        <NA>
## 2625                            <NA>         <NA>             no        <NA>
## 2626         likes dogs and has cats        other             no      pisces
## 2627       likes dogs and likes cats  catholicism             no      cancer
## 2628         likes dogs and has cats      atheism             no       virgo
## 2629                            <NA>  catholicism             no      cancer
## 2630                      likes dogs  catholicism             no      gemini
## 2631       likes dogs and likes cats  agnosticism           <NA>      pisces
## 2632                            <NA>         <NA>             no      gemini
## 2633                        has cats      judaism             no    aquarius
## 2634           has dogs and has cats christianity             no     scorpio
## 2635                            <NA>      judaism             no       aries
## 2636                      likes dogs      judaism           <NA> sagittarius
## 2637                            <NA>        other             no      pisces
## 2638       likes dogs and likes cats         <NA>           <NA>     scorpio
## 2639                            <NA>        other             no     scorpio
## 2640       likes dogs and likes cats        other             no       virgo
## 2641                      likes dogs         <NA>            yes      taurus
## 2642       likes dogs and likes cats         <NA>             no         leo
## 2643                        has cats christianity      sometimes      gemini
## 2644       likes dogs and likes cats  catholicism             no      gemini
## 2645                        has dogs christianity             no      gemini
## 2646                        has dogs         <NA>             no     scorpio
## 2647                      likes dogs christianity             no sagittarius
## 2648       likes dogs and likes cats      judaism             no    aquarius
## 2649       likes dogs and likes cats        other             no    aquarius
## 2650       likes dogs and likes cats  agnosticism             no       aries
## 2651       likes dogs and likes cats         <NA>             no     scorpio
## 2652                            <NA>  agnosticism  when drinking     scorpio
## 2653       likes dogs and likes cats      atheism             no       virgo
## 2654                            <NA>         <NA>            yes      taurus
## 2655                            <NA>         <NA>           <NA>        <NA>
## 2656                            <NA>         <NA>             no        <NA>
## 2657           has dogs and has cats         <NA>            yes      taurus
## 2658                            <NA>      judaism           <NA>    aquarius
## 2659         likes dogs and has cats christianity             no       virgo
## 2660         likes dogs and has cats      judaism             no      cancer
## 2661       likes dogs and likes cats      atheism             no       libra
## 2662       likes dogs and likes cats        other             no      cancer
## 2663         likes dogs and has cats  agnosticism             no      pisces
## 2664                      likes cats  agnosticism           <NA>      taurus
## 2665                            <NA> christianity           <NA>       virgo
## 2666           has dogs and has cats      atheism  when drinking       libra
## 2667                      likes dogs         <NA>             no       aries
## 2668                      likes cats        other             no      taurus
## 2669                        has dogs      atheism             no       libra
## 2670         has dogs and likes cats christianity             no    aquarius
## 2671         has dogs and likes cats        other             no sagittarius
## 2672                            <NA>  catholicism             no        <NA>
## 2673         likes dogs and has cats      judaism             no      cancer
## 2674       likes dogs and likes cats  agnosticism      sometimes      cancer
## 2675                            <NA>         <NA>             no       aries
## 2676       likes dogs and likes cats      atheism             no sagittarius
## 2677                            <NA> christianity             no      gemini
## 2678       likes dogs and likes cats  catholicism  when drinking      gemini
## 2679         likes dogs and has cats      atheism             no     scorpio
## 2680                            <NA>        other             no      taurus
## 2681       likes dogs and likes cats      atheism  when drinking        <NA>
## 2682       likes dogs and likes cats         <NA>             no      cancer
## 2683       likes dogs and likes cats christianity  when drinking     scorpio
## 2684       likes dogs and likes cats         <NA>      sometimes         leo
## 2685                      likes dogs         <NA>           <NA>         leo
## 2686                            <NA>         <NA>             no       aries
## 2687       likes dogs and likes cats  catholicism             no      cancer
## 2688       likes dogs and likes cats      atheism      sometimes       libra
## 2689                        has dogs christianity             no      taurus
## 2690       likes dogs and likes cats         <NA>             no         leo
## 2691                      likes dogs  agnosticism           <NA>        <NA>
## 2692       likes dogs and likes cats  catholicism             no      taurus
## 2693       likes dogs and likes cats      atheism             no         leo
## 2694       likes dogs and likes cats      judaism             no      pisces
## 2695       likes dogs and likes cats         <NA>           <NA>       virgo
## 2696                            <NA>      atheism      sometimes sagittarius
## 2697                      likes cats  catholicism             no      cancer
## 2698                      likes dogs  catholicism             no       libra
## 2699                            <NA>         <NA>             no    aquarius
## 2700                      likes dogs         <NA>             no       libra
## 2701         has dogs and likes cats        other             no sagittarius
## 2702         likes dogs and has cats        other           <NA>      gemini
## 2703       likes dogs and likes cats christianity             no    aquarius
## 2704       likes dogs and likes cats christianity             no      cancer
## 2705                            <NA>         <NA>           <NA>        <NA>
## 2706         likes dogs and has cats  catholicism             no      cancer
## 2707                            <NA>  agnosticism             no      pisces
## 2708         likes dogs and has cats  agnosticism             no    aquarius
## 2709       likes dogs and likes cats      judaism             no       virgo
## 2710                      likes dogs         <NA>             no      cancer
## 2711                            <NA>      atheism  when drinking   capricorn
## 2712       likes dogs and likes cats      atheism             no sagittarius
## 2713                        has dogs         <NA>            yes     scorpio
## 2714                        has dogs  agnosticism             no     scorpio
## 2715       likes dogs and likes cats christianity             no       libra
## 2716         has dogs and likes cats  catholicism             no sagittarius
## 2717                            <NA>         <NA>             no      cancer
## 2718                            <NA>         <NA>      sometimes      taurus
## 2719                      likes dogs         <NA>             no         leo
## 2720                            <NA>         <NA>           <NA>        <NA>
## 2721         likes dogs and has cats        other             no        <NA>
## 2722                      likes dogs         <NA>             no        <NA>
## 2723       likes dogs and likes cats         <NA>             no       virgo
## 2724       likes dogs and likes cats        other      sometimes      pisces
## 2725       likes dogs and likes cats      atheism             no    aquarius
## 2726                            <NA>         <NA>             no        <NA>
## 2727       likes dogs and likes cats      atheism             no    aquarius
## 2728       likes dogs and likes cats     buddhism      sometimes      pisces
## 2729                            <NA>        other             no sagittarius
## 2730         has dogs and likes cats        other             no   capricorn
## 2731                            <NA>         <NA>           <NA> sagittarius
## 2732       likes dogs and likes cats  agnosticism             no      gemini
## 2733       likes dogs and likes cats        other             no      taurus
## 2734         likes dogs and has cats  agnosticism             no      cancer
## 2735       likes dogs and likes cats         <NA>           <NA>      cancer
## 2736                      likes cats        other             no      gemini
## 2737                            <NA>      atheism             no      gemini
## 2738                            <NA>         <NA>           <NA>      taurus
## 2739                            <NA>     hinduism           <NA>        <NA>
## 2740                            <NA>         <NA>             no       aries
## 2741                      likes dogs christianity  when drinking sagittarius
## 2742                      likes dogs  agnosticism             no        <NA>
## 2743                        has dogs      judaism             no       aries
## 2744       likes dogs and likes cats         <NA>             no    aquarius
## 2745                      likes dogs         <NA>  when drinking      cancer
## 2746       likes dogs and likes cats         <NA>             no      gemini
## 2747                        has dogs        other             no       aries
## 2748                        has dogs      atheism             no      taurus
## 2749       likes dogs and likes cats        other      sometimes      cancer
## 2750                        has dogs  catholicism             no      gemini
## 2751                            <NA>        other             no    aquarius
## 2752       likes dogs and likes cats      judaism             no       aries
## 2753       likes dogs and likes cats  agnosticism             no    aquarius
## 2754                            <NA>         <NA>             no    aquarius
## 2755                            <NA>        other             no sagittarius
## 2756       likes dogs and likes cats  agnosticism             no         leo
## 2757       likes dogs and likes cats      atheism             no     scorpio
## 2758                            <NA>         <NA>           <NA>     scorpio
## 2759                        has dogs         <NA>           <NA>   capricorn
## 2760                            <NA>      judaism             no       libra
## 2761       likes dogs and likes cats         <NA>  when drinking       libra
## 2762                            <NA>     hinduism             no sagittarius
## 2763    likes dogs and dislikes cats         <NA>             no sagittarius
## 2764                            <NA>  agnosticism             no        <NA>
## 2765                      likes dogs christianity trying to quit sagittarius
## 2766                            <NA>      atheism             no        <NA>
## 2767       likes dogs and likes cats         <NA>             no        <NA>
## 2768                            <NA>  agnosticism             no    aquarius
## 2769                            <NA>        other             no    aquarius
## 2770                      likes dogs         <NA>             no       aries
## 2771                      likes cats  agnosticism             no     scorpio
## 2772       likes dogs and likes cats  agnosticism            yes       virgo
## 2773       likes dogs and likes cats        other             no     scorpio
## 2774           has dogs and has cats         <NA>           <NA>      pisces
## 2775                        has dogs christianity             no     scorpio
## 2776       likes dogs and likes cats         <NA>  when drinking      cancer
## 2777       likes dogs and likes cats christianity             no   capricorn
## 2778      has dogs and dislikes cats      atheism             no       libra
## 2779       likes dogs and likes cats         <NA>           <NA>      pisces
## 2780                            <NA> christianity             no        <NA>
## 2781                        has dogs     buddhism           <NA>    aquarius
## 2782                            <NA> christianity             no      pisces
## 2783                            <NA> christianity             no        <NA>
## 2784                            <NA>      atheism             no        <NA>
## 2785       likes dogs and likes cats      judaism  when drinking    aquarius
## 2786         has dogs and likes cats        other             no      cancer
## 2787                        has dogs         <NA>             no        <NA>
## 2788                      likes dogs christianity             no        <NA>
## 2789         likes dogs and has cats  agnosticism             no      taurus
## 2790       likes dogs and likes cats         <NA>             no      pisces
## 2791                            <NA>         <NA>             no      gemini
## 2792    likes dogs and dislikes cats         <NA>            yes      pisces
## 2793       likes dogs and likes cats  agnosticism             no      pisces
## 2794                            <NA>  agnosticism             no      taurus
## 2795       likes dogs and likes cats        other             no       libra
## 2796                            <NA>        other             no         leo
## 2797         likes dogs and has cats  agnosticism           <NA> sagittarius
## 2798         has dogs and likes cats         <NA>             no      gemini
## 2799                        has dogs         <NA>             no sagittarius
## 2800                            <NA>        other             no        <NA>
## 2801                            <NA>        other             no      pisces
## 2802                            <NA>     buddhism            yes       libra
## 2803                            <NA>         <NA>           <NA>    aquarius
## 2804         has dogs and likes cats christianity             no       aries
## 2805                            <NA>         <NA>             no        <NA>
## 2806         likes dogs and has cats         <NA>             no         leo
## 2807       likes dogs and likes cats  agnosticism             no   capricorn
## 2808                            <NA>  agnosticism             no        <NA>
## 2809       likes dogs and likes cats         <NA>             no      taurus
## 2810         likes dogs and has cats         <NA>             no         leo
## 2811                      likes cats  agnosticism             no        <NA>
## 2812                            <NA>  agnosticism           <NA>         leo
## 2813       likes dogs and likes cats      judaism             no   capricorn
## 2814                        has dogs  catholicism      sometimes      taurus
## 2815           has dogs and has cats  catholicism             no    aquarius
## 2816                            <NA>  agnosticism             no       virgo
## 2817                      likes dogs         <NA>             no        <NA>
## 2818                            <NA>         <NA>             no    aquarius
## 2819                            <NA>         <NA>           <NA>        <NA>
## 2820                            <NA>  agnosticism             no      gemini
## 2821                            <NA>         <NA>             no        <NA>
## 2822       likes dogs and likes cats  agnosticism             no    aquarius
## 2823                            <NA>      atheism            yes       virgo
## 2824                      likes dogs         <NA>             no       libra
## 2825         likes dogs and has cats  catholicism             no    aquarius
## 2826                      likes dogs christianity           <NA>        <NA>
## 2827                        has dogs  catholicism           <NA>     scorpio
## 2828                      likes cats     hinduism      sometimes         leo
## 2829         has dogs and likes cats  agnosticism             no      cancer
## 2830         likes dogs and has cats        other             no      taurus
## 2831                      likes dogs      atheism             no        <NA>
## 2832                            <NA>        other             no        <NA>
## 2833                            <NA>         <NA>             no       libra
## 2834                            <NA>         <NA>             no   capricorn
## 2835                        has dogs         <NA>           <NA>      pisces
## 2836                            <NA>     buddhism trying to quit      pisces
## 2837                        has cats         <NA>             no       aries
## 2838                            <NA>         <NA>           <NA>    aquarius
## 2839                            <NA>      atheism             no sagittarius
## 2840           has dogs and has cats        other  when drinking      taurus
## 2841                            <NA> christianity             no      pisces
## 2842       likes dogs and likes cats  agnosticism  when drinking       libra
## 2843                      likes dogs      judaism             no       aries
## 2844         likes dogs and has cats      atheism             no sagittarius
## 2845                            <NA>      judaism             no        <NA>
## 2846       likes dogs and likes cats  agnosticism             no       aries
## 2847         has dogs and likes cats         <NA>             no        <NA>
## 2848                      likes dogs        other             no   capricorn
## 2849           has dogs and has cats      atheism             no      cancer
## 2850                            <NA>  agnosticism             no     scorpio
## 2851      has dogs and dislikes cats christianity             no    aquarius
## 2852       likes dogs and likes cats         <NA>             no     scorpio
## 2853                        has dogs         <NA>             no         leo
## 2854                      likes dogs      atheism             no       libra
## 2855                            <NA>         <NA>             no       virgo
## 2856                            <NA> christianity            yes         leo
## 2857                      likes dogs christianity             no         leo
## 2858                        has dogs         <NA>             no       virgo
## 2859    likes dogs and dislikes cats  catholicism             no       libra
## 2860       likes dogs and likes cats         <NA>             no        <NA>
## 2861           has dogs and has cats  agnosticism             no     scorpio
## 2862 dislikes dogs and dislikes cats  catholicism             no         leo
## 2863       likes dogs and likes cats      judaism             no      taurus
## 2864                      likes dogs         <NA>           <NA>        <NA>
## 2865                      likes dogs  catholicism             no sagittarius
## 2866                            <NA>        other           <NA>       virgo
## 2867                            <NA>  agnosticism           <NA>        <NA>
## 2868                      likes dogs        other             no       virgo
## 2869       likes dogs and likes cats  agnosticism           <NA>      pisces
## 2870                        has dogs christianity             no       libra
## 2871         likes dogs and has cats         <NA>             no   capricorn
## 2872       likes dogs and likes cats  catholicism      sometimes      cancer
## 2873       likes dogs and likes cats         <NA>             no         leo
## 2874       likes dogs and likes cats  agnosticism             no       libra
## 2875                        has dogs      atheism             no       libra
## 2876         likes dogs and has cats         <NA>             no        <NA>
## 2877                      likes dogs  agnosticism             no   capricorn
## 2878       likes dogs and likes cats         <NA>             no        <NA>
## 2879                      likes dogs         <NA>             no       virgo
## 2880                            <NA>         <NA>             no       virgo
## 2881      has dogs and dislikes cats         <NA>             no      gemini
## 2882       likes dogs and likes cats         <NA>             no    aquarius
## 2883    likes dogs and dislikes cats christianity           <NA>      gemini
## 2884    likes dogs and dislikes cats  catholicism             no    aquarius
## 2885       likes dogs and likes cats  agnosticism           <NA>         leo
## 2886                      likes dogs      atheism            yes     scorpio
## 2887       likes dogs and likes cats  agnosticism             no       virgo
## 2888                      likes cats        other             no      taurus
## 2889       likes dogs and likes cats        other             no      gemini
## 2890 dislikes dogs and dislikes cats        islam             no sagittarius
## 2891                      likes dogs  agnosticism             no      pisces
## 2892       likes dogs and likes cats         <NA>             no       aries
## 2893         likes dogs and has cats christianity             no      taurus
## 2894       likes dogs and likes cats  catholicism             no       libra
## 2895         likes dogs and has cats         <NA>           <NA>         leo
## 2896       likes dogs and likes cats      atheism             no      taurus
## 2897                            <NA>     hinduism  when drinking   capricorn
## 2898       likes dogs and likes cats  agnosticism             no     scorpio
## 2899                            <NA>  agnosticism             no        <NA>
## 2900           has dogs and has cats  catholicism             no      taurus
## 2901           has dogs and has cats  agnosticism             no     scorpio
## 2902         likes dogs and has cats christianity      sometimes       libra
## 2903                      likes dogs         <NA>             no        <NA>
## 2904                      likes dogs        other      sometimes       aries
## 2905                        has dogs         <NA>             no      pisces
## 2906         has dogs and likes cats      judaism             no        <NA>
## 2907                            <NA>  catholicism             no sagittarius
## 2908                      likes dogs        other  when drinking      gemini
## 2909                            <NA>  agnosticism             no         leo
## 2910                            <NA>  agnosticism             no       virgo
## 2911                      likes dogs         <NA>             no       aries
## 2912                            <NA>         <NA>             no      taurus
## 2913                            <NA>         <NA>           <NA>       libra
## 2914         likes dogs and has cats         <NA>             no    aquarius
## 2915                      likes dogs  agnosticism             no       libra
## 2916         has dogs and likes cats christianity             no      taurus
## 2917       likes dogs and likes cats christianity            yes   capricorn
## 2918         has dogs and likes cats  agnosticism             no        <NA>
## 2919         likes dogs and has cats      atheism             no      gemini
## 2920                            <NA>         <NA>             no        <NA>
## 2921      has dogs and dislikes cats christianity             no sagittarius
## 2922                        has dogs         <NA>           <NA>   capricorn
## 2923                            <NA>         <NA>             no        <NA>
## 2924         has dogs and likes cats         <NA>             no      pisces
## 2925       likes dogs and likes cats     buddhism           <NA>         leo
## 2926         likes dogs and has cats         <NA>            yes     scorpio
## 2927                      likes dogs         <NA> trying to quit       aries
## 2928                            <NA>      judaism             no      pisces
## 2929    dislikes dogs and likes cats        islam  when drinking       aries
## 2930    likes dogs and dislikes cats         <NA>             no       libra
## 2931                            <NA>         <NA>           <NA>        <NA>
## 2932                            <NA>         <NA>             no      gemini
## 2933                            <NA>         <NA>             no       aries
## 2934       likes dogs and likes cats  agnosticism             no      taurus
## 2935                            <NA>         <NA>             no        <NA>
## 2936       likes dogs and likes cats  agnosticism           <NA>        <NA>
## 2937                      likes dogs         <NA>             no      gemini
## 2938       likes dogs and likes cats     buddhism             no      gemini
## 2939                            <NA>         <NA>             no sagittarius
## 2940                            <NA>         <NA>           <NA>        <NA>
## 2941       likes dogs and likes cats        other      sometimes       aries
## 2942                            <NA> christianity             no        <NA>
## 2943                            <NA>        other      sometimes      pisces
## 2944                            <NA>      atheism             no    aquarius
## 2945                      likes dogs        other             no     scorpio
## 2946         has dogs and likes cats        other             no       virgo
## 2947                            <NA>  agnosticism             no         leo
## 2948                            <NA>         <NA>           <NA>        <NA>
## 2949       likes dogs and likes cats  catholicism             no      taurus
## 2950      has dogs and dislikes cats         <NA>             no     scorpio
## 2951       likes dogs and likes cats        other             no    aquarius
## 2952                        has dogs         <NA>           <NA>        <NA>
## 2953                        has dogs christianity             no sagittarius
## 2954                            <NA>  catholicism             no sagittarius
## 2955         has dogs and likes cats      atheism             no      taurus
## 2956       likes dogs and likes cats         <NA>      sometimes      taurus
## 2957       likes dogs and likes cats  catholicism             no       libra
## 2958                            <NA>         <NA>             no sagittarius
## 2959                            <NA>     hinduism             no      cancer
## 2960                            <NA>         <NA>             no        <NA>
## 2961                        has dogs christianity             no         leo
## 2962           has dogs and has cats        other  when drinking       libra
## 2963    likes dogs and dislikes cats      atheism  when drinking       aries
## 2964                      likes dogs        other             no       virgo
## 2965         has dogs and likes cats        other             no   capricorn
## 2966                        has cats  agnosticism      sometimes       libra
## 2967       likes dogs and likes cats  agnosticism  when drinking       aries
## 2968         likes dogs and has cats     hinduism             no      taurus
## 2969       likes dogs and likes cats         <NA>             no    aquarius
## 2970         likes dogs and has cats christianity             no         leo
## 2971                        has cats        other             no      gemini
## 2972                      likes dogs      atheism             no      pisces
## 2973                            <NA>      atheism             no      gemini
## 2974         likes dogs and has cats     buddhism             no     scorpio
## 2975                            <NA>         <NA>  when drinking        <NA>
## 2976                            <NA>      atheism  when drinking     scorpio
## 2977                            <NA>  agnosticism             no       virgo
## 2978                        has cats  agnosticism             no         leo
## 2979       likes dogs and likes cats christianity             no      cancer
## 2980         has dogs and likes cats      atheism           <NA>      taurus
## 2981                      likes dogs  catholicism             no       aries
## 2982                            <NA>      judaism           <NA>     scorpio
## 2983                            <NA> christianity             no   capricorn
## 2984                        has dogs  agnosticism             no      pisces
## 2985                        has dogs         <NA>             no    aquarius
## 2986    dislikes dogs and likes cats        other            yes    aquarius
## 2987         has dogs and likes cats         <NA> trying to quit       aries
## 2988         has dogs and likes cats         <NA>             no      cancer
## 2989                            <NA>      atheism             no        <NA>
## 2990                            <NA>      atheism             no       aries
## 2991       likes dogs and likes cats         <NA>             no    aquarius
## 2992                            <NA>        other             no   capricorn
## 2993                            <NA>         <NA>             no       virgo
## 2994                            <NA>      judaism             no        <NA>
## 2995       likes dogs and likes cats  agnosticism             no    aquarius
## 2996                        has dogs     buddhism             no       libra
## 2997                        has cats        other           <NA>         leo
## 2998                      likes dogs         <NA>             no      gemini
## 2999                      likes dogs      atheism             no      taurus
## 3000                            <NA>  catholicism             no sagittarius
## 3001                            <NA>         <NA>             no       libra
## 3002       likes dogs and likes cats        other            yes    aquarius
## 3003         likes dogs and has cats        other             no       aries
## 3004       likes dogs and likes cats        other             no         leo
## 3005       likes dogs and likes cats  catholicism  when drinking     scorpio
## 3006                            <NA>         <NA>             no       virgo
## 3007                            <NA>         <NA>             no    aquarius
## 3008       likes dogs and likes cats        other             no     scorpio
## 3009                        has cats      atheism             no      gemini
## 3010       likes dogs and likes cats         <NA>             no       libra
## 3011                            <NA>         <NA>             no      taurus
## 3012                        has dogs christianity trying to quit       virgo
## 3013                      likes dogs      atheism             no   capricorn
## 3014         likes dogs and has cats      judaism             no    aquarius
## 3015                            <NA>        other  when drinking    aquarius
## 3016         has dogs and likes cats        other             no      pisces
## 3017                            <NA>         <NA>             no    aquarius
## 3018                            <NA>  agnosticism             no        <NA>
## 3019                        has dogs     buddhism  when drinking         leo
## 3020    likes dogs and dislikes cats      judaism             no      pisces
## 3021                            <NA>  catholicism      sometimes     scorpio
## 3022                            <NA>         <NA>             no      pisces
## 3023                            <NA>         <NA>           <NA>       libra
## 3024         has dogs and likes cats  catholicism             no     scorpio
## 3025                            <NA>         <NA>             no        <NA>
## 3026                            <NA>     buddhism             no      pisces
## 3027                        has cats        other      sometimes       aries
## 3028                      likes dogs  catholicism             no sagittarius
## 3029                      likes dogs         <NA>           <NA>       libra
## 3030                            <NA>  catholicism           <NA>        <NA>
## 3031                            <NA>  agnosticism             no        <NA>
## 3032                            <NA>         <NA>             no        <NA>
## 3033                            <NA>         <NA>            yes       aries
## 3034                            <NA>        other             no      pisces
## 3035                            <NA>      judaism             no        <NA>
## 3036                        has cats      atheism             no     scorpio
## 3037       likes dogs and likes cats     hinduism             no       aries
## 3038    likes dogs and dislikes cats christianity             no      taurus
## 3039                        has cats         <NA>             no       libra
## 3040                            <NA> christianity             no      gemini
## 3041                            <NA>  agnosticism             no       virgo
## 3042       likes dogs and likes cats  catholicism             no      pisces
## 3043                            <NA>      atheism             no        <NA>
## 3044                            <NA>  agnosticism             no sagittarius
## 3045         has dogs and likes cats         <NA>             no        <NA>
## 3046                            <NA>      judaism           <NA>      pisces
## 3047                            <NA>         <NA>             no        <NA>
## 3048                            <NA>         <NA>             no        <NA>
## 3049       likes dogs and likes cats         <NA>             no      taurus
## 3050                            <NA>     buddhism             no      pisces
## 3051                        has dogs  catholicism             no   capricorn
## 3052                      likes cats  agnosticism             no       libra
## 3053    dislikes dogs and likes cats        islam  when drinking      taurus
## 3054       likes dogs and likes cats         <NA>             no       aries
## 3055                            <NA> christianity             no       aries
## 3056                        has dogs        other             no      taurus
## 3057                            <NA>         <NA>             no        <NA>
## 3058                            <NA>         <NA>             no        <NA>
## 3059                            <NA>      judaism             no        <NA>
## 3060       likes dogs and likes cats         <NA>             no        <NA>
## 3061    likes dogs and dislikes cats christianity            yes   capricorn
## 3062                        has dogs         <NA>             no      taurus
## 3063                      likes dogs  agnosticism             no      gemini
## 3064                      likes dogs        other             no         leo
## 3065                            <NA>         <NA>             no   capricorn
## 3066                            <NA>         <NA>           <NA>     scorpio
## 3067       likes dogs and likes cats  agnosticism             no   capricorn
## 3068    likes dogs and dislikes cats      judaism             no    aquarius
## 3069                      likes dogs        other             no       virgo
## 3070                        has dogs         <NA>             no sagittarius
## 3071                            <NA>  agnosticism             no     scorpio
## 3072         likes dogs and has cats christianity             no sagittarius
## 3073                      likes dogs  agnosticism             no     scorpio
## 3074                            <NA>      atheism             no        <NA>
## 3075       likes dogs and likes cats      judaism             no        <NA>
## 3076       likes dogs and likes cats         <NA>             no        <NA>
## 3077                            <NA>         <NA>             no     scorpio
## 3078       likes dogs and likes cats     buddhism             no sagittarius
## 3079                            <NA>         <NA>             no      pisces
## 3080       likes dogs and likes cats  agnosticism             no       virgo
## 3081                        has dogs         <NA>            yes         leo
## 3082      has dogs and dislikes cats         <NA>             no         leo
## 3083                            <NA>        other             no       libra
## 3084       likes dogs and likes cats         <NA>  when drinking      pisces
## 3085                        has dogs christianity             no     scorpio
## 3086                        has cats         <NA>             no         leo
## 3087                            <NA> christianity           <NA>      pisces
## 3088                      likes dogs      atheism            yes         leo
## 3089       likes dogs and likes cats      judaism           <NA>      taurus
## 3090       likes dogs and likes cats        other      sometimes      pisces
## 3091                            <NA>         <NA>      sometimes sagittarius
## 3092                      likes cats christianity             no   capricorn
## 3093    likes dogs and dislikes cats      judaism             no      pisces
## 3094                            <NA>         <NA>             no      pisces
## 3095                            <NA>  catholicism             no   capricorn
## 3096                            <NA>  agnosticism             no     scorpio
## 3097       likes dogs and likes cats     buddhism             no     scorpio
## 3098                        has dogs        other             no         leo
## 3099                            <NA>     buddhism             no      pisces
## 3100         likes dogs and has cats         <NA>             no        <NA>
## 3101         likes dogs and has cats         <NA>  when drinking        <NA>
## 3102         likes dogs and has cats     buddhism             no     scorpio
## 3103       likes dogs and likes cats     buddhism             no sagittarius
## 3104    likes dogs and dislikes cats         <NA>      sometimes       libra
## 3105       likes dogs and likes cats christianity             no     scorpio
## 3106    dislikes dogs and likes cats        islam             no        <NA>
## 3107                        has dogs      atheism             no       libra
## 3108       likes dogs and likes cats  agnosticism             no sagittarius
## 3109       likes dogs and likes cats        other             no       libra
## 3110                            <NA>         <NA>             no      cancer
## 3111                      likes dogs  agnosticism           <NA>      cancer
## 3112           has dogs and has cats  agnosticism             no    aquarius
## 3113                        has dogs      atheism             no       virgo
## 3114    likes dogs and dislikes cats  agnosticism      sometimes     scorpio
## 3115       likes dogs and likes cats        other trying to quit      gemini
## 3116                      likes dogs         <NA>             no        <NA>
## 3117                            <NA>      atheism             no       aries
## 3118         likes dogs and has cats  agnosticism             no       aries
## 3119                            <NA>         <NA>           <NA>      pisces
## 3120                            <NA>         <NA>             no       virgo
## 3121       likes dogs and likes cats         <NA>           <NA>         leo
## 3122                      likes dogs         <NA>             no    aquarius
## 3123         likes dogs and has cats  catholicism             no       virgo
## 3124                      likes dogs  agnosticism             no      cancer
## 3125       likes dogs and likes cats      atheism             no       virgo
## 3126                      likes dogs  agnosticism             no     scorpio
## 3127                            <NA> christianity           <NA>      gemini
## 3128    dislikes dogs and likes cats        islam             no        <NA>
## 3129       likes dogs and likes cats         <NA>             no       libra
## 3130           has dogs and has cats     buddhism             no      pisces
## 3131                            <NA>         <NA>      sometimes        <NA>
## 3132                        has dogs  agnosticism             no      cancer
## 3133                      likes dogs     buddhism             no         leo
## 3134         likes dogs and has cats  agnosticism             no       libra
## 3135                      likes dogs         <NA>             no      gemini
## 3136                            <NA> christianity             no        <NA>
## 3137 dislikes dogs and dislikes cats  agnosticism trying to quit      pisces
## 3138       likes dogs and likes cats        other             no    aquarius
## 3139           has dogs and has cats        other      sometimes         leo
## 3140                            <NA>         <NA>             no       libra
## 3141       likes dogs and likes cats  agnosticism             no         leo
## 3142                        has dogs christianity             no        <NA>
## 3143       likes dogs and likes cats        other             no         leo
## 3144                            <NA>  agnosticism             no       aries
## 3145                            <NA> christianity             no   capricorn
## 3146                            <NA>         <NA>           <NA>     scorpio
## 3147       likes dogs and likes cats        other             no      cancer
## 3148                      likes dogs christianity      sometimes       aries
## 3149       likes dogs and likes cats      atheism             no      gemini
## 3150         likes dogs and has cats  agnosticism             no     scorpio
## 3151                            <NA> christianity             no       virgo
## 3152                            <NA>         <NA>             no     scorpio
## 3153                            <NA>     buddhism             no     scorpio
## 3154         likes dogs and has cats        other             no         leo
## 3155         likes dogs and has cats      judaism           <NA> sagittarius
## 3156                            <NA>        other             no       libra
## 3157       likes dogs and likes cats      judaism  when drinking    aquarius
## 3158         likes dogs and has cats         <NA>             no       aries
## 3159                            <NA>  catholicism             no      cancer
## 3160    likes dogs and dislikes cats  agnosticism             no       virgo
## 3161                      likes dogs        other             no       libra
## 3162         likes dogs and has cats      atheism             no    aquarius
## 3163                            <NA>         <NA>             no      gemini
## 3164      has dogs and dislikes cats         <NA>             no        <NA>
## 3165       likes dogs and likes cats      atheism             no       virgo
## 3166                        has cats         <NA>             no        <NA>
## 3167       likes dogs and likes cats        other             no       aries
## 3168                            <NA>         <NA>             no        <NA>
## 3169       likes dogs and likes cats  agnosticism             no       libra
## 3170       likes dogs and likes cats  catholicism trying to quit       aries
## 3171                            <NA>         <NA>             no        <NA>
## 3172                            <NA>     hinduism             no        <NA>
## 3173       likes dogs and likes cats      judaism trying to quit      taurus
## 3174                            <NA>         <NA>             no       aries
## 3175       likes dogs and likes cats         <NA>             no       libra
## 3176                        has dogs      judaism             no       virgo
## 3177       likes dogs and likes cats        other      sometimes      gemini
## 3178                            <NA>         <NA>             no      pisces
## 3179         has dogs and likes cats     buddhism             no       libra
## 3180                            <NA>  catholicism      sometimes   capricorn
## 3181                            <NA>  catholicism           <NA>        <NA>
## 3182       likes dogs and likes cats      atheism             no       virgo
## 3183                            <NA>      atheism           <NA>        <NA>
## 3184                            <NA>         <NA>           <NA>        <NA>
## 3185                        has dogs  catholicism             no       libra
## 3186                      likes dogs christianity             no      pisces
## 3187                        has dogs  catholicism             no       aries
## 3188       likes dogs and likes cats      atheism            yes       aries
## 3189       likes dogs and likes cats  agnosticism           <NA>      taurus
## 3190                            <NA>         <NA>             no        <NA>
## 3191       likes dogs and likes cats         <NA>             no      cancer
## 3192                            <NA>      atheism             no        <NA>
## 3193                      likes dogs         <NA>             no         leo
## 3194         likes dogs and has cats     buddhism             no   capricorn
## 3195         has dogs and likes cats  catholicism             no      cancer
## 3196                            <NA>         <NA>             no      taurus
## 3197         has dogs and likes cats         <NA>             no      gemini
## 3198    likes dogs and dislikes cats christianity             no    aquarius
## 3199         likes dogs and has cats      judaism             no      taurus
## 3200                        has cats         <NA>             no     scorpio
## 3201       likes dogs and likes cats      atheism             no       virgo
## 3202         has dogs and likes cats      atheism             no     scorpio
## 3203                      likes dogs        other             no     scorpio
## 3204         likes dogs and has cats  agnosticism             no    aquarius
## 3205         likes dogs and has cats        other             no       virgo
## 3206         has dogs and likes cats        other             no      taurus
## 3207                      likes dogs        other             no   capricorn
## 3208                            <NA>        other           <NA>      taurus
## 3209       likes dogs and likes cats  agnosticism             no         leo
## 3210         likes dogs and has cats      judaism             no     scorpio
## 3211                            <NA>  agnosticism             no    aquarius
## 3212                            <NA>     hinduism             no       virgo
## 3213       likes dogs and likes cats         <NA>             no      pisces
## 3214         likes dogs and has cats  catholicism             no    aquarius
## 3215    dislikes dogs and likes cats  catholicism             no       libra
## 3216                            <NA> christianity             no    aquarius
## 3217                            <NA>        other           <NA>       aries
## 3218                      likes dogs  catholicism             no         leo
## 3219                            <NA>  catholicism             no      pisces
## 3220       likes dogs and likes cats  agnosticism           <NA>      taurus
## 3221       likes dogs and likes cats      atheism             no      pisces
## 3222       likes dogs and likes cats christianity            yes         leo
## 3223       likes dogs and likes cats      atheism trying to quit    aquarius
## 3224       likes dogs and likes cats         <NA>             no      cancer
## 3225                            <NA> christianity             no      taurus
## 3226                            <NA>         <NA>             no     scorpio
## 3227       likes dogs and likes cats  agnosticism             no sagittarius
## 3228                            <NA>         <NA>             no        <NA>
## 3229       likes dogs and likes cats      judaism  when drinking      pisces
## 3230       likes dogs and likes cats christianity             no       virgo
## 3231                            <NA>      atheism             no      gemini
## 3232                        has dogs  agnosticism           <NA>      cancer
## 3233                            <NA>        other             no      pisces
## 3234                            <NA>        other             no      taurus
## 3235                            <NA>         <NA>             no       libra
## 3236                      likes dogs         <NA>             no        <NA>
## 3237       likes dogs and likes cats      atheism             no       libra
## 3238       likes dogs and likes cats  agnosticism             no       aries
## 3239                            <NA>  agnosticism             no        <NA>
## 3240                            <NA>         <NA>             no        <NA>
## 3241                            <NA>      atheism             no        <NA>
## 3242                            <NA>         <NA>      sometimes        <NA>
## 3243                            <NA>     buddhism           <NA>        <NA>
## 3244       likes dogs and likes cats  agnosticism             no        <NA>
## 3245       likes dogs and likes cats      atheism             no        <NA>
## 3246                            <NA>      atheism             no     scorpio
## 3247         likes dogs and has cats  agnosticism             no   capricorn
## 3248       likes dogs and likes cats        other             no       virgo
## 3249                            <NA>      atheism             no   capricorn
## 3250       likes dogs and likes cats  agnosticism             no       libra
## 3251                            <NA>         <NA>             no        <NA>
## 3252         has dogs and likes cats         <NA>             no        <NA>
## 3253       likes dogs and likes cats        other  when drinking      taurus
## 3254       likes dogs and likes cats      atheism             no     scorpio
## 3255                            <NA>         <NA>             no         leo
## 3256       likes dogs and likes cats         <NA>  when drinking   capricorn
## 3257       likes dogs and likes cats         <NA>      sometimes      gemini
## 3258                            <NA>  agnosticism           <NA>      cancer
## 3259                            <NA> christianity             no        <NA>
## 3260                      likes dogs         <NA>             no       virgo
## 3261         has dogs and likes cats christianity  when drinking        <NA>
## 3262                            <NA>  agnosticism             no    aquarius
## 3263       likes dogs and likes cats      atheism             no       virgo
## 3264                      likes dogs         <NA>             no       virgo
## 3265       likes dogs and likes cats         <NA>             no      cancer
## 3266                      likes dogs christianity             no       virgo
## 3267                            <NA>         <NA>             no    aquarius
## 3268                            <NA>  agnosticism             no      pisces
## 3269                            <NA>        other             no       virgo
## 3270       likes dogs and likes cats      judaism             no    aquarius
## 3271                            <NA>  catholicism           <NA>    aquarius
## 3272                      likes dogs         <NA>  when drinking        <NA>
## 3273      has dogs and dislikes cats  catholicism             no      gemini
## 3274       likes dogs and likes cats     buddhism           <NA>       libra
## 3275       likes dogs and likes cats         <NA>             no         leo
## 3276       likes dogs and likes cats      atheism             no sagittarius
## 3277                        has cats  agnosticism             no    aquarius
## 3278                            <NA>         <NA>           <NA>         leo
## 3279       likes dogs and likes cats         <NA>             no    aquarius
## 3280       likes dogs and likes cats         <NA>           <NA>       virgo
## 3281       likes dogs and likes cats         <NA>           <NA>      cancer
## 3282       likes dogs and likes cats         <NA>             no        <NA>
## 3283         likes dogs and has cats         <NA>             no        <NA>
## 3284                            <NA>         <NA>             no        <NA>
## 3285         has dogs and likes cats        other             no      cancer
## 3286                      likes dogs  catholicism             no     scorpio
## 3287                            <NA>        other             no        <NA>
## 3288                      likes dogs         <NA>             no      taurus
## 3289                        has cats        other             no       virgo
## 3290                            <NA>         <NA>             no      gemini
## 3291                      likes dogs christianity             no      taurus
## 3292                            <NA>  catholicism             no      gemini
## 3293         has dogs and likes cats  catholicism             no      pisces
## 3294         likes dogs and has cats christianity             no      taurus
## 3295                      likes dogs         <NA>             no      pisces
## 3296       likes dogs and likes cats        other             no       aries
## 3297                            <NA>         <NA>      sometimes       virgo
## 3298                            <NA> christianity             no       aries
## 3299                   dislikes cats        other             no      gemini
## 3300                            <NA>  catholicism             no         leo
## 3301       likes dogs and likes cats      atheism             no        <NA>
## 3302                            <NA>         <NA>           <NA>        <NA>
## 3303                      likes dogs      judaism             no       virgo
## 3304                      likes dogs        other  when drinking      pisces
## 3305                            <NA>  catholicism             no       virgo
## 3306                            <NA>         <NA>             no        <NA>
## 3307                            <NA>         <NA>             no    aquarius
## 3308                            <NA>        other      sometimes    aquarius
## 3309       likes dogs and likes cats      atheism            yes        <NA>
## 3310       likes dogs and likes cats christianity           <NA>       aries
## 3311                            <NA>  catholicism             no       aries
## 3312                            <NA>      atheism      sometimes         leo
## 3313                            <NA>  agnosticism             no   capricorn
## 3314                      likes dogs      atheism             no        <NA>
## 3315       likes dogs and likes cats         <NA>             no       virgo
## 3316                        has dogs         <NA>             no       virgo
## 3317                            <NA>         <NA>             no        <NA>
## 3318                            <NA>  catholicism             no   capricorn
## 3319       likes dogs and likes cats      atheism             no       aries
## 3320                            <NA>         <NA>      sometimes        <NA>
## 3321       likes dogs and likes cats        other           <NA>         leo
## 3322                        has dogs      atheism trying to quit       aries
## 3323                      likes dogs         <NA>             no        <NA>
## 3324                            <NA>         <NA>           <NA>        <NA>
## 3325                            <NA>         <NA>             no        <NA>
## 3326       likes dogs and likes cats  catholicism  when drinking      pisces
## 3327                            <NA>         <NA>             no       virgo
## 3328                            <NA>         <NA>             no        <NA>
## 3329                            <NA> christianity      sometimes    aquarius
## 3330                            <NA>         <NA>           <NA>        <NA>
## 3331                            <NA>         <NA> trying to quit       aries
## 3332                            <NA>         <NA>            yes       aries
## 3333       likes dogs and likes cats      atheism             no      cancer
## 3334       likes dogs and likes cats  agnosticism             no    aquarius
## 3335         likes dogs and has cats  agnosticism             no sagittarius
## 3336                      likes cats      atheism             no        <NA>
## 3337                      likes dogs        other             no      taurus
## 3338         has dogs and likes cats        other             no      taurus
## 3339       likes dogs and likes cats         <NA>             no       libra
## 3340       likes dogs and likes cats        other             no      taurus
## 3341                      likes dogs      atheism trying to quit    aquarius
## 3342                            <NA>         <NA>           <NA>      pisces
## 3343                        has dogs  catholicism             no      pisces
## 3344       likes dogs and likes cats  catholicism             no      taurus
## 3345      has dogs and dislikes cats  agnosticism            yes       virgo
## 3346                            <NA> christianity             no        <NA>
## 3347         has dogs and likes cats      atheism             no      taurus
## 3348       likes dogs and likes cats         <NA>           <NA>        <NA>
## 3349       likes dogs and likes cats      atheism             no       libra
## 3350                        has cats         <NA>             no        <NA>
## 3351                            <NA>         <NA>             no      taurus
## 3352       likes dogs and likes cats christianity            yes       libra
## 3353                      likes cats      atheism             no sagittarius
## 3354       likes dogs and likes cats         <NA>             no         leo
## 3355                      likes dogs  agnosticism             no      cancer
## 3356                      likes dogs  agnosticism             no       aries
## 3357                            <NA>         <NA>            yes      cancer
## 3358                        has cats  agnosticism             no        <NA>
## 3359         likes dogs and has cats  agnosticism  when drinking      gemini
## 3360                            <NA>  agnosticism            yes    aquarius
## 3361                      likes dogs         <NA>           <NA>      pisces
## 3362    dislikes dogs and likes cats      atheism             no        <NA>
## 3363       likes dogs and likes cats  agnosticism      sometimes      cancer
## 3364       likes dogs and likes cats     buddhism             no    aquarius
## 3365       likes dogs and likes cats      atheism             no sagittarius
## 3366       likes dogs and likes cats      judaism           <NA>   capricorn
## 3367       likes dogs and likes cats         <NA>             no       libra
## 3368                            <NA>         <NA>             no    aquarius
## 3369       likes dogs and likes cats christianity             no        <NA>
## 3370                            <NA>         <NA>           <NA>        <NA>
## 3371       likes dogs and likes cats christianity             no   capricorn
## 3372                            <NA>        other             no      taurus
## 3373                            <NA>      atheism             no    aquarius
## 3374         likes dogs and has cats      atheism           <NA>      gemini
## 3375       likes dogs and likes cats  agnosticism  when drinking    aquarius
## 3376                            <NA>        other             no        <NA>
## 3377                            <NA> christianity      sometimes    aquarius
## 3378       likes dogs and likes cats        other             no        <NA>
## 3379                      likes cats         <NA>             no      cancer
## 3380       likes dogs and likes cats        other           <NA>        <NA>
## 3381       likes dogs and likes cats         <NA>             no      taurus
## 3382       likes dogs and likes cats      atheism trying to quit         leo
## 3383         likes dogs and has cats  agnosticism            yes    aquarius
## 3384                   dislikes cats        other             no      cancer
## 3385         likes dogs and has cats      atheism            yes   capricorn
## 3386                        has dogs         <NA>             no         leo
## 3387                            <NA>         <NA>             no        <NA>
## 3388                        has cats        other             no   capricorn
## 3389       likes dogs and likes cats  agnosticism             no       virgo
## 3390       likes dogs and likes cats         <NA>             no         leo
## 3391         has dogs and likes cats         <NA>             no        <NA>
## 3392                            <NA>         <NA>             no        <NA>
## 3393                            <NA>         <NA>           <NA>       virgo
## 3394                            <NA>      atheism      sometimes       libra
## 3395                            <NA>      atheism             no       aries
## 3396       likes dogs and likes cats      atheism             no        <NA>
## 3397                      likes dogs christianity             no       libra
## 3398                            <NA>      atheism             no        <NA>
## 3399                            <NA> christianity             no        <NA>
## 3400                      likes dogs  agnosticism  when drinking      cancer
## 3401       likes dogs and likes cats  agnosticism             no      taurus
## 3402       likes dogs and likes cats        other             no sagittarius
## 3403         likes dogs and has cats      atheism             no       libra
## 3404                        has cats      judaism trying to quit      pisces
## 3405                            <NA>      atheism             no        <NA>
## 3406                            <NA>         <NA>             no        <NA>
## 3407       likes dogs and likes cats      atheism            yes   capricorn
## 3408         has dogs and likes cats         <NA>             no        <NA>
## 3409                            <NA>         <NA>             no    aquarius
## 3410                            <NA>         <NA>             no         leo
## 3411                        has dogs  agnosticism             no         leo
## 3412       likes dogs and likes cats  agnosticism             no      cancer
## 3413    likes dogs and dislikes cats  agnosticism             no        <NA>
## 3414                      likes dogs christianity trying to quit       virgo
## 3415                        has dogs         <NA>             no        <NA>
## 3416                      likes dogs christianity             no sagittarius
## 3417                            <NA>  agnosticism             no sagittarius
## 3418                            <NA>         <NA>             no      cancer
## 3419                            <NA>        other             no       aries
## 3420       likes dogs and likes cats      atheism trying to quit        <NA>
## 3421                        has dogs      judaism             no       libra
## 3422                        has dogs        other           <NA>        <NA>
## 3423                      likes dogs      judaism             no        <NA>
## 3424 dislikes dogs and dislikes cats     buddhism             no      cancer
## 3425                      likes dogs         <NA>           <NA>     scorpio
## 3426                            <NA>      judaism             no       aries
## 3427                      likes dogs  agnosticism             no        <NA>
## 3428                            <NA>         <NA>             no        <NA>
## 3429       likes dogs and likes cats        other  when drinking        <NA>
## 3430       likes dogs and likes cats         <NA>             no     scorpio
## 3431                            <NA>        other             no sagittarius
## 3432                            <NA>         <NA>             no        <NA>
## 3433                        has dogs      atheism            yes       libra
## 3434                            <NA>         <NA>             no        <NA>
## 3435       likes dogs and likes cats        other             no     scorpio
## 3436                            <NA>         <NA>             no     scorpio
## 3437                            <NA>      atheism             no    aquarius
## 3438         likes dogs and has cats christianity            yes       virgo
## 3439                            <NA>         <NA>             no         leo
## 3440         likes dogs and has cats         <NA>            yes         leo
## 3441                      likes dogs        other             no        <NA>
## 3442                        has dogs        other             no      cancer
## 3443                            <NA>      atheism             no        <NA>
## 3444                        has dogs        other      sometimes       libra
## 3445         likes dogs and has cats         <NA>             no      cancer
## 3446                      likes dogs  agnosticism             no        <NA>
## 3447                        has cats         <NA>             no      taurus
## 3448                      likes dogs  catholicism             no         leo
## 3449                        has dogs      atheism             no     scorpio
## 3450       likes dogs and likes cats      atheism             no     scorpio
## 3451         likes dogs and has cats  catholicism             no      pisces
## 3452                      likes dogs  catholicism             no      gemini
## 3453       likes dogs and likes cats        other             no       libra
## 3454                      likes dogs      judaism             no    aquarius
## 3455       likes dogs and likes cats christianity             no      pisces
## 3456                            <NA> christianity            yes      taurus
## 3457                      likes cats      atheism             no    aquarius
## 3458                            <NA>      judaism             no     scorpio
## 3459         likes dogs and has cats         <NA>            yes      cancer
## 3460                        has dogs  agnosticism             no    aquarius
## 3461                            <NA>         <NA>             no        <NA>
## 3462         has dogs and likes cats         <NA>             no     scorpio
## 3463         likes dogs and has cats         <NA>           <NA>       libra
## 3464       likes dogs and likes cats         <NA>            yes      pisces
## 3465         likes dogs and has cats      judaism             no      gemini
## 3466       likes dogs and likes cats christianity             no       aries
## 3467       likes dogs and likes cats christianity             no     scorpio
## 3468                            <NA> christianity             no         leo
## 3469         has dogs and likes cats  catholicism            yes      taurus
## 3470       likes dogs and likes cats  catholicism             no sagittarius
## 3471                            <NA>  catholicism             no   capricorn
## 3472                            <NA>         <NA>             no      gemini
## 3473    likes dogs and dislikes cats christianity             no      gemini
## 3474       likes dogs and likes cats         <NA>             no         leo
## 3475                            <NA> christianity             no        <NA>
## 3476                      likes dogs        other             no      taurus
## 3477         has dogs and likes cats christianity            yes       libra
## 3478       likes dogs and likes cats  agnosticism             no    aquarius
## 3479    likes dogs and dislikes cats        other             no    aquarius
## 3480         likes dogs and has cats  catholicism      sometimes       virgo
## 3481                            <NA>         <NA>           <NA>         leo
## 3482         has dogs and likes cats  catholicism             no      gemini
## 3483                            <NA>         <NA>      sometimes       libra
## 3484                        has dogs        other             no     scorpio
## 3485                            <NA>         <NA>             no      taurus
## 3486                            <NA>         <NA>             no      pisces
## 3487         likes dogs and has cats  catholicism             no         leo
## 3488                        has cats christianity             no    aquarius
## 3489                            <NA>         <NA>             no        <NA>
## 3490                            <NA>         <NA>           <NA>       aries
## 3491                            <NA>        other             no sagittarius
## 3492                        has cats        other             no      cancer
## 3493         has dogs and likes cats  agnosticism             no      gemini
## 3494       likes dogs and likes cats  agnosticism             no     scorpio
## 3495                        has dogs        other             no     scorpio
## 3496       likes dogs and likes cats  agnosticism           <NA>        <NA>
## 3497       likes dogs and likes cats        other             no      cancer
## 3498       likes dogs and likes cats         <NA>             no      pisces
## 3499       likes dogs and likes cats  catholicism             no      taurus
## 3500       likes dogs and likes cats  agnosticism trying to quit     scorpio
## 3501       likes dogs and likes cats      atheism             no     scorpio
## 3502           has dogs and has cats        other             no    aquarius
## 3503                            <NA>         <NA>             no        <NA>
## 3504                      likes dogs        other             no   capricorn
## 3505         has dogs and likes cats         <NA>             no        <NA>
## 3506                        has dogs         <NA>             no sagittarius
## 3507       likes dogs and likes cats  agnosticism             no       aries
## 3508       likes dogs and likes cats     buddhism             no      cancer
## 3509                      likes dogs christianity             no      pisces
## 3510    likes dogs and dislikes cats  catholicism             no      gemini
## 3511                            <NA>  catholicism             no      cancer
## 3512                            <NA>        other             no         leo
## 3513                            <NA>         <NA>             no      gemini
## 3514                            <NA>         <NA>           <NA>        <NA>
## 3515                      likes dogs        other             no     scorpio
## 3516                      likes dogs         <NA>             no        <NA>
## 3517       likes dogs and likes cats      atheism             no        <NA>
## 3518         has dogs and likes cats         <NA>             no       virgo
## 3519                            <NA>        other            yes       libra
## 3520                        has dogs         <NA>             no    aquarius
## 3521    likes dogs and dislikes cats christianity             no       virgo
## 3522                            <NA>         <NA>             no        <NA>
## 3523                      likes dogs  agnosticism             no      gemini
## 3524       likes dogs and likes cats      atheism             no     scorpio
## 3525                      likes dogs      atheism             no      gemini
## 3526       likes dogs and likes cats      judaism             no         leo
## 3527                      likes dogs         <NA>             no        <NA>
## 3528       likes dogs and likes cats      judaism      sometimes       aries
## 3529       likes dogs and likes cats christianity             no      taurus
## 3530       likes dogs and likes cats christianity             no      taurus
## 3531                      likes dogs        other             no       virgo
## 3532       likes dogs and likes cats  agnosticism      sometimes sagittarius
## 3533                            <NA>  catholicism             no         leo
## 3534                            <NA>  agnosticism             no    aquarius
## 3535                      likes dogs         <NA>             no        <NA>
## 3536                            <NA>  agnosticism             no      cancer
## 3537                            <NA>  agnosticism             no       libra
## 3538       likes dogs and likes cats      atheism             no      taurus
## 3539                            <NA>         <NA>             no    aquarius
## 3540                            <NA>         <NA>             no   capricorn
## 3541                        has cats christianity           <NA>     scorpio
## 3542                      likes cats  agnosticism trying to quit       libra
## 3543         likes dogs and has cats  agnosticism             no       aries
## 3544         has dogs and likes cats      atheism      sometimes       libra
## 3545         has dogs and likes cats  agnosticism             no      pisces
## 3546                            <NA>      atheism      sometimes      gemini
## 3547                            <NA>  agnosticism             no sagittarius
## 3548         has dogs and likes cats        other trying to quit       virgo
## 3549       likes dogs and likes cats christianity             no   capricorn
## 3550       likes dogs and likes cats         <NA>             no         leo
## 3551         likes dogs and has cats      atheism             no     scorpio
## 3552                            <NA>      atheism             no         leo
## 3553       likes dogs and likes cats        other             no     scorpio
## 3554         likes dogs and has cats  agnosticism             no sagittarius
## 3555                            <NA>        other             no        <NA>
## 3556                            <NA> christianity             no     scorpio
## 3557                        has cats      atheism           <NA>      taurus
## 3558                            <NA>         <NA>             no        <NA>
## 3559       likes dogs and likes cats        other             no       libra
## 3560                            <NA>      atheism             no      pisces
## 3561       likes dogs and likes cats christianity             no   capricorn
## 3562                            <NA>  agnosticism             no      pisces
## 3563                            <NA>        islam             no       libra
## 3564                            <NA>        other  when drinking      taurus
## 3565         likes dogs and has cats        other             no        <NA>
## 3566                            <NA> christianity             no    aquarius
## 3567           has dogs and has cats        other             no       aries
## 3568                        has dogs  agnosticism             no      pisces
## 3569                      likes dogs  agnosticism             no     scorpio
## 3570                        has cats christianity             no         leo
## 3571                            <NA>      atheism             no      taurus
## 3572                      likes dogs     hinduism           <NA>       virgo
## 3573         has dogs and likes cats      atheism             no     scorpio
## 3574                      likes dogs christianity             no sagittarius
## 3575                            <NA>        other      sometimes   capricorn
## 3576       likes dogs and likes cats        other             no       libra
## 3577                            <NA>        other           <NA>        <NA>
## 3578         has dogs and likes cats  agnosticism      sometimes        <NA>
## 3579                            <NA>         <NA>             no         leo
## 3580         has dogs and likes cats        other trying to quit   capricorn
## 3581       likes dogs and likes cats      atheism             no         leo
## 3582                      likes dogs         <NA>             no      pisces
## 3583                      likes dogs  catholicism             no      pisces
## 3584       likes dogs and likes cats        other trying to quit         leo
## 3585       likes dogs and likes cats  agnosticism             no      pisces
## 3586         has dogs and likes cats  catholicism             no      taurus
## 3587       likes dogs and likes cats        other             no        <NA>
## 3588                            <NA> christianity             no       virgo
## 3589                            <NA>         <NA>             no      cancer
## 3590                            <NA>         <NA>             no    aquarius
## 3591                            <NA> christianity             no       libra
## 3592                            <NA>         <NA>             no       aries
## 3593                            <NA>  catholicism           <NA>      cancer
## 3594       likes dogs and likes cats         <NA>  when drinking      taurus
## 3595       likes dogs and likes cats         <NA>             no     scorpio
## 3596                        has dogs  agnosticism             no      gemini
## 3597       likes dogs and likes cats        other             no      gemini
## 3598                            <NA> christianity             no      pisces
## 3599                            <NA>      atheism             no        <NA>
## 3600    likes dogs and dislikes cats  agnosticism             no       aries
## 3601      has dogs and dislikes cats         <NA>           <NA>      gemini
## 3602                            <NA> christianity             no        <NA>
## 3603         has dogs and likes cats         <NA>             no      taurus
## 3604                            <NA>  agnosticism             no sagittarius
## 3605         likes dogs and has cats  catholicism             no sagittarius
## 3606                      likes dogs     buddhism             no         leo
## 3607                            <NA>         <NA>           <NA>        <NA>
## 3608                            <NA>     buddhism             no     scorpio
## 3609                      likes dogs         <NA>             no        <NA>
## 3610         likes dogs and has cats  agnosticism           <NA>      cancer
## 3611                        has dogs      judaism  when drinking         leo
## 3612       likes dogs and likes cats  agnosticism             no      gemini
## 3613                        has dogs  catholicism  when drinking      gemini
## 3614    likes dogs and dislikes cats christianity             no        <NA>
## 3615       likes dogs and likes cats      judaism             no       virgo
## 3616                            <NA>         <NA>             no       virgo
## 3617                            <NA>  agnosticism      sometimes      pisces
## 3618       likes dogs and likes cats         <NA>             no      cancer
## 3619                      likes dogs  catholicism             no       libra
## 3620                        has cats         <NA>      sometimes      taurus
## 3621         likes dogs and has cats  catholicism  when drinking       aries
## 3622 dislikes dogs and dislikes cats  catholicism             no      cancer
## 3623         has dogs and likes cats         <NA>           <NA>    aquarius
## 3624       likes dogs and likes cats     buddhism             no      pisces
## 3625                        has cats  catholicism             no       virgo
## 3626         has dogs and likes cats         <NA>             no       virgo
## 3627       likes dogs and likes cats  agnosticism             no       aries
## 3628       likes dogs and likes cats christianity             no         leo
## 3629                      likes dogs        other             no        <NA>
## 3630         likes dogs and has cats  agnosticism             no      gemini
## 3631                            <NA>      judaism             no        <NA>
## 3632                            <NA>         <NA>             no      taurus
## 3633       likes dogs and likes cats  agnosticism      sometimes      cancer
## 3634           has dogs and has cats christianity           <NA>         leo
## 3635                            <NA>         <NA>             no        <NA>
## 3636                      likes dogs         <NA>             no        <NA>
## 3637                            <NA>         <NA>           <NA>        <NA>
## 3638         has dogs and likes cats  agnosticism             no       libra
## 3639                            <NA>         <NA>           <NA>       libra
## 3640                            <NA>         <NA>             no       virgo
## 3641           has dogs and has cats         <NA>             no         leo
## 3642                            <NA>         <NA>           <NA>      pisces
## 3643       likes dogs and likes cats  catholicism             no       virgo
## 3644 dislikes dogs and dislikes cats  catholicism             no      cancer
## 3645                        has dogs      atheism             no       virgo
## 3646                        has dogs         <NA>             no       aries
## 3647         likes dogs and has cats  catholicism             no    aquarius
## 3648                      likes dogs  agnosticism           <NA> sagittarius
## 3649                            <NA>         <NA>           <NA>        <NA>
## 3650       likes dogs and likes cats        other             no sagittarius
## 3651                        has dogs      atheism trying to quit       libra
## 3652         has dogs and likes cats         <NA>             no        <NA>
## 3653       likes dogs and likes cats      judaism             no sagittarius
## 3654                            <NA>         <NA>             no    aquarius
## 3655         has dogs and likes cats  catholicism             no      gemini
## 3656       likes dogs and likes cats      judaism           <NA>    aquarius
## 3657                            <NA> christianity             no      pisces
## 3658                            <NA>         <NA>             no     scorpio
## 3659                            <NA>         <NA>             no       libra
## 3660       likes dogs and likes cats christianity             no    aquarius
## 3661           has dogs and has cats        other             no        <NA>
## 3662       likes dogs and likes cats      atheism  when drinking    aquarius
## 3663                            <NA>         <NA>           <NA>        <NA>
## 3664       likes dogs and likes cats      judaism             no sagittarius
## 3665         likes dogs and has cats         <NA>             no      cancer
## 3666                            <NA>        other             no      taurus
## 3667       likes dogs and likes cats  agnosticism             no      cancer
## 3668                      likes dogs  agnosticism             no    aquarius
## 3669                            <NA> christianity             no      gemini
## 3670         likes dogs and has cats         <NA>      sometimes       libra
## 3671                            <NA>         <NA>             no        <NA>
## 3672         has dogs and likes cats      atheism             no        <NA>
## 3673         likes dogs and has cats        other trying to quit        <NA>
## 3674                        has dogs  agnosticism             no      taurus
## 3675       likes dogs and likes cats        other             no      cancer
## 3676                        has cats      atheism             no     scorpio
## 3677                            <NA>      atheism             no        <NA>
## 3678         has dogs and likes cats         <NA>           <NA>     scorpio
## 3679                      likes dogs         <NA>             no        <NA>
## 3680         has dogs and likes cats      atheism             no      pisces
## 3681                            <NA>         <NA>             no        <NA>
## 3682                        has dogs         <NA>             no       libra
## 3683                            <NA>         <NA>  when drinking        <NA>
## 3684           has dogs and has cats        other             no      gemini
## 3685                      likes dogs      atheism             no        <NA>
## 3686                      likes dogs      atheism             no      gemini
## 3687                            <NA>         <NA>             no        <NA>
## 3688                   dislikes cats         <NA>           <NA>      pisces
## 3689       likes dogs and likes cats      atheism             no        <NA>
## 3690                      likes cats      atheism             no      taurus
## 3691                      likes dogs         <NA>             no        <NA>
## 3692    dislikes dogs and likes cats  agnosticism             no      gemini
## 3693       likes dogs and likes cats         <NA>             no   capricorn
## 3694                            <NA>      judaism             no       libra
## 3695                            <NA> christianity             no         leo
## 3696                            <NA>      atheism      sometimes      pisces
## 3697       likes dogs and likes cats  catholicism             no         leo
## 3698         has dogs and likes cats  catholicism             no     scorpio
## 3699                      likes dogs     buddhism             no     scorpio
## 3700       likes dogs and likes cats      atheism             no      taurus
## 3701       likes dogs and likes cats        other             no       libra
## 3702    likes dogs and dislikes cats     hinduism             no      gemini
## 3703       likes dogs and likes cats         <NA>             no         leo
## 3704           has dogs and has cats         <NA>             no     scorpio
## 3705       likes dogs and likes cats         <NA>             no       virgo
## 3706       likes dogs and likes cats        other            yes sagittarius
## 3707       likes dogs and likes cats  agnosticism             no      taurus
## 3708       likes dogs and likes cats      atheism  when drinking       aries
## 3709                        has dogs  agnosticism             no       virgo
## 3710                      likes dogs  catholicism             no       libra
## 3711                      likes dogs         <NA>             no        <NA>
## 3712       likes dogs and likes cats  agnosticism  when drinking    aquarius
## 3713                            <NA>  agnosticism             no      pisces
## 3714                            <NA>      atheism      sometimes       aries
## 3715                            <NA>        other             no      taurus
## 3716       likes dogs and likes cats      atheism             no   capricorn
## 3717                            <NA>         <NA> trying to quit        <NA>
## 3718         likes dogs and has cats         <NA>      sometimes      gemini
## 3719                            <NA>         <NA>             no     scorpio
## 3720                            <NA>         <NA>           <NA>    aquarius
## 3721                      likes dogs         <NA>             no      taurus
## 3722                            <NA>         <NA>            yes       aries
## 3723                      likes dogs christianity             no sagittarius
## 3724                        has dogs christianity             no sagittarius
## 3725                            <NA>  catholicism             no      cancer
## 3726                        has dogs  catholicism             no      cancer
## 3727                            <NA>         <NA>           <NA>      taurus
## 3728                            <NA>         <NA>           <NA>        <NA>
## 3729       likes dogs and likes cats        other             no      taurus
## 3730       likes dogs and likes cats         <NA>             no       virgo
## 3731                            <NA>        other             no       virgo
## 3732         has dogs and likes cats         <NA>      sometimes      cancer
## 3733                      likes dogs         <NA>           <NA>       libra
## 3734       likes dogs and likes cats        other             no       libra
## 3735       likes dogs and likes cats         <NA>            yes    aquarius
## 3736                            <NA>         <NA>             no     scorpio
## 3737                            <NA>     buddhism             no        <NA>
## 3738                            <NA>         <NA>             no    aquarius
## 3739                        has dogs  agnosticism             no   capricorn
## 3740                            <NA>         <NA>             no      cancer
## 3741           has dogs and has cats  agnosticism             no   capricorn
## 3742       likes dogs and likes cats  agnosticism             no       aries
## 3743                        has dogs  catholicism             no      gemini
## 3744       likes dogs and likes cats      atheism             no         leo
## 3745         likes dogs and has cats      atheism             no     scorpio
## 3746         has dogs and likes cats  agnosticism  when drinking    aquarius
## 3747                            <NA>      judaism             no      taurus
## 3748                            <NA>  agnosticism             no    aquarius
## 3749                            <NA>        other             no         leo
## 3750                      likes dogs         <NA>             no       aries
## 3751                            <NA>  agnosticism           <NA>        <NA>
## 3752                            <NA>         <NA>  when drinking        <NA>
## 3753         has dogs and likes cats  agnosticism      sometimes      taurus
## 3754                            <NA>  agnosticism             no sagittarius
## 3755           has dogs and has cats  agnosticism             no       virgo
## 3756                      likes dogs  agnosticism             no       libra
## 3757                            <NA>  agnosticism             no         leo
## 3758                            <NA>         <NA>             no        <NA>
## 3759                            <NA>        other      sometimes      gemini
## 3760         likes dogs and has cats         <NA>           <NA>         leo
## 3761                            <NA> christianity             no   capricorn
## 3762                            <NA>         <NA>             no        <NA>
## 3763                      likes cats  agnosticism             no      taurus
## 3764       likes dogs and likes cats      judaism             no     scorpio
## 3765       likes dogs and likes cats      atheism             no      pisces
## 3766       likes dogs and likes cats      atheism             no      taurus
## 3767                            <NA>         <NA>  when drinking    aquarius
## 3768       likes dogs and likes cats  agnosticism      sometimes      taurus
## 3769       likes dogs and likes cats      atheism             no        <NA>
## 3770                            <NA>      atheism            yes      cancer
## 3771                            <NA>     buddhism             no sagittarius
## 3772                        has dogs         <NA>             no        <NA>
## 3773       likes dogs and likes cats         <NA>             no   capricorn
## 3774                            <NA>         <NA>             no        <NA>
## 3775                        has dogs        other             no       libra
## 3776                            <NA> christianity            yes       libra
## 3777                            <NA>         <NA>             no         leo
## 3778           has dogs and has cats        other trying to quit sagittarius
## 3779                            <NA>  catholicism             no      taurus
## 3780                      likes dogs christianity             no       virgo
## 3781                            <NA> christianity             no         leo
## 3782                            <NA>      atheism             no        <NA>
## 3783         likes dogs and has cats  catholicism           <NA>      pisces
## 3784                            <NA>  agnosticism  when drinking       libra
## 3785    likes dogs and dislikes cats         <NA>             no      cancer
## 3786                      likes dogs christianity             no      pisces
## 3787       likes dogs and likes cats  agnosticism      sometimes       aries
## 3788         has dogs and likes cats        other             no sagittarius
## 3789                            <NA>  catholicism             no      gemini
## 3790                      likes dogs        other           <NA>      cancer
## 3791                            <NA>     hinduism             no     scorpio
## 3792                        has dogs         <NA>             no        <NA>
## 3793                            <NA>        other             no      cancer
## 3794                            <NA>        other           <NA>       libra
## 3795         likes dogs and has cats      atheism trying to quit       libra
## 3796                      likes cats         <NA>             no         leo
## 3797         has dogs and likes cats  agnosticism  when drinking      gemini
## 3798                            <NA>  catholicism             no     scorpio
## 3799       likes dogs and likes cats      atheism             no      gemini
## 3800    likes dogs and dislikes cats  agnosticism             no       libra
## 3801                            <NA>      atheism             no      gemini
## 3802       likes dogs and likes cats         <NA>  when drinking       libra
## 3803                      likes dogs      atheism             no sagittarius
## 3804       likes dogs and likes cats      judaism             no   capricorn
## 3805                            <NA>      judaism             no        <NA>
## 3806                            <NA>      judaism             no        <NA>
## 3807                            <NA>  agnosticism             no    aquarius
## 3808       likes dogs and likes cats  catholicism             no      pisces
## 3809    likes dogs and dislikes cats      atheism  when drinking        <NA>
## 3810                            <NA>         <NA>             no       aries
## 3811         likes dogs and has cats      judaism             no      taurus
## 3812                      likes dogs  agnosticism             no      gemini
## 3813                            <NA>         <NA>           <NA>     scorpio
## 3814                        has dogs         <NA>             no      gemini
## 3815       likes dogs and likes cats         <NA>             no         leo
## 3816       likes dogs and likes cats  catholicism             no        <NA>
## 3817                        has dogs         <NA>             no     scorpio
## 3818       likes dogs and likes cats        other             no sagittarius
## 3819                            <NA>      atheism             no   capricorn
## 3820                            <NA>  agnosticism             no       libra
## 3821       likes dogs and likes cats      atheism             no   capricorn
## 3822                      likes dogs  catholicism             no      pisces
## 3823                            <NA>  agnosticism             no       virgo
## 3824       likes dogs and likes cats         <NA>           <NA>      taurus
## 3825         likes dogs and has cats  agnosticism      sometimes       virgo
## 3826                      likes dogs         <NA>             no   capricorn
## 3827         likes dogs and has cats      atheism             no        <NA>
## 3828       likes dogs and likes cats christianity             no sagittarius
## 3829                        has dogs        other  when drinking     scorpio
## 3830                            <NA>  agnosticism             no      gemini
## 3831         has dogs and likes cats         <NA>  when drinking      gemini
## 3832                            <NA>      atheism             no        <NA>
## 3833                            <NA>         <NA>             no        <NA>
## 3834                        has cats         <NA>             no       virgo
## 3835         likes dogs and has cats        other             no      taurus
## 3836                        has dogs     buddhism             no sagittarius
## 3837       likes dogs and likes cats         <NA>             no   capricorn
## 3838                      likes dogs      atheism             no      taurus
## 3839                      likes dogs      atheism             no     scorpio
## 3840                            <NA>  agnosticism             no      taurus
## 3841         likes dogs and has cats  agnosticism             no      cancer
## 3842                      likes dogs         <NA>           <NA>      cancer
## 3843                            <NA>         <NA>             no        <NA>
## 3844         has dogs and likes cats         <NA>  when drinking      cancer
## 3845         likes dogs and has cats        other             no        <NA>
## 3846       likes dogs and likes cats     hinduism             no         leo
## 3847       likes dogs and likes cats      judaism             no   capricorn
## 3848                            <NA>     buddhism  when drinking       aries
## 3849                            <NA>         <NA>           <NA>        <NA>
## 3850         has dogs and likes cats      atheism             no        <NA>
## 3851                            <NA>         <NA>           <NA>        <NA>
## 3852         likes dogs and has cats      atheism             no   capricorn
## 3853         likes dogs and has cats  agnosticism             no      cancer
## 3854                      likes dogs  agnosticism  when drinking       libra
## 3855                      likes cats         <NA>             no       libra
## 3856                            <NA>  catholicism             no         leo
## 3857                      likes dogs         <NA>             no        <NA>
## 3858                      likes dogs         <NA>             no         leo
## 3859                            <NA>  agnosticism           <NA>      cancer
## 3860                            <NA>         <NA>             no   capricorn
## 3861                            <NA>  agnosticism           <NA>        <NA>
## 3862                      likes dogs  catholicism             no       aries
## 3863                            <NA>     hinduism             no     scorpio
## 3864       likes dogs and likes cats      atheism             no       libra
## 3865       likes dogs and likes cats  agnosticism             no       aries
## 3866                      likes dogs  catholicism             no      taurus
## 3867                            <NA>         <NA>           <NA>        <NA>
## 3868                            <NA> christianity            yes      gemini
## 3869                            <NA>      atheism             no        <NA>
## 3870                            <NA>         <NA>             no      gemini
## 3871       likes dogs and likes cats  catholicism             no    aquarius
## 3872                        has dogs        other             no     scorpio
## 3873                            <NA>         <NA>             no        <NA>
## 3874           has dogs and has cats  agnosticism             no      pisces
## 3875                      likes cats        other           <NA>       virgo
## 3876         likes dogs and has cats  agnosticism             no      taurus
## 3877                            <NA>         <NA>           <NA>        <NA>
## 3878       likes dogs and likes cats  agnosticism  when drinking    aquarius
## 3879                            <NA>         <NA>  when drinking     scorpio
## 3880                            <NA>  agnosticism             no       libra
## 3881                            <NA>         <NA>             no      cancer
## 3882                            <NA>         <NA>             no        <NA>
## 3883                      likes dogs         <NA>           <NA>   capricorn
## 3884                            <NA>  agnosticism             no        <NA>
## 3885                            <NA>         <NA>           <NA>        <NA>
## 3886                            <NA>     buddhism             no      pisces
## 3887                            <NA>  agnosticism             no       libra
## 3888                            <NA>      atheism             no sagittarius
## 3889                      likes cats      atheism             no         leo
## 3890                            <NA>         <NA>             no      cancer
## 3891       likes dogs and likes cats         <NA>             no        <NA>
## 3892       likes dogs and likes cats         <NA>           <NA>       virgo
## 3893                      likes dogs  agnosticism             no      gemini
## 3894       likes dogs and likes cats  agnosticism             no      taurus
## 3895                      likes dogs  catholicism             no       virgo
## 3896       likes dogs and likes cats        other             no sagittarius
## 3897                      likes dogs christianity             no sagittarius
## 3898       likes dogs and likes cats      judaism             no        <NA>
## 3899       likes dogs and likes cats        other  when drinking       virgo
## 3900                            <NA>  catholicism             no         leo
## 3901                            <NA>         <NA>             no      cancer
## 3902       likes dogs and likes cats  agnosticism             no      pisces
## 3903       likes dogs and likes cats  agnosticism             no       libra
## 3904         likes dogs and has cats      atheism             no      pisces
## 3905                      likes cats  agnosticism             no       libra
## 3906                            <NA>         <NA>             no       aries
## 3907                      likes dogs  catholicism             no       virgo
## 3908                      likes dogs  agnosticism             no        <NA>
## 3909                            <NA>         <NA>           <NA>        <NA>
## 3910       likes dogs and likes cats christianity             no       virgo
## 3911                            <NA>  agnosticism             no      gemini
## 3912                      likes dogs christianity             no       libra
## 3913                            <NA>  agnosticism             no      taurus
## 3914         has dogs and likes cats  catholicism             no    aquarius
## 3915                        has dogs        other             no sagittarius
## 3916                            <NA>      judaism             no       libra
## 3917       likes dogs and likes cats christianity             no       aries
## 3918       likes dogs and likes cats      judaism      sometimes      taurus
## 3919           has dogs and has cats         <NA>             no       aries
## 3920                            <NA>      judaism             no        <NA>
## 3921                            <NA>      judaism             no      pisces
## 3922       likes dogs and likes cats christianity           <NA>        <NA>
## 3923         likes dogs and has cats        other             no    aquarius
## 3924                            <NA>        other             no       libra
## 3925       likes dogs and likes cats         <NA>      sometimes       virgo
## 3926                            <NA>         <NA>             no sagittarius
## 3927                            <NA>      atheism      sometimes      cancer
## 3928       likes dogs and likes cats      atheism trying to quit         leo
## 3929       likes dogs and likes cats      atheism             no        <NA>
## 3930                        has dogs         <NA>             no         leo
## 3931       likes dogs and likes cats      atheism             no       aries
## 3932       likes dogs and likes cats      atheism             no       virgo
## 3933                      likes dogs         <NA>             no       aries
## 3934       likes dogs and likes cats christianity             no    aquarius
## 3935                            <NA>        other             no       libra
## 3936                      likes dogs         <NA>             no   capricorn
## 3937                        has dogs         <NA>      sometimes      cancer
## 3938                            <NA>         <NA>             no        <NA>
## 3939       likes dogs and likes cats         <NA>             no         leo
## 3940                        has cats  agnosticism             no    aquarius
## 3941       likes dogs and likes cats         <NA>             no    aquarius
## 3942                        has dogs         <NA>             no    aquarius
## 3943         likes dogs and has cats         <NA>             no    aquarius
## 3944                            <NA>  agnosticism            yes    aquarius
## 3945                            <NA>         <NA>            yes        <NA>
## 3946       likes dogs and likes cats         <NA>             no       aries
## 3947                      likes dogs      atheism             no      pisces
## 3948                      likes dogs      atheism             no    aquarius
## 3949       likes dogs and likes cats      atheism             no      taurus
## 3950       likes dogs and likes cats  agnosticism             no       aries
## 3951                            <NA>        other             no       libra
## 3952                            <NA> christianity             no       aries
## 3953           has dogs and has cats        other             no      pisces
## 3954                        has dogs         <NA>           <NA>       aries
## 3955                            <NA>         <NA>             no   capricorn
## 3956                      likes dogs  agnosticism             no         leo
## 3957                        has dogs  agnosticism             no      pisces
## 3958                            <NA>         <NA>             no         leo
## 3959                            <NA>        other             no      cancer
## 3960                            <NA>         <NA>             no        <NA>
## 3961                            <NA>         <NA> trying to quit      cancer
## 3962                            <NA>     hinduism             no      cancer
## 3963                      likes dogs christianity             no       aries
## 3964                            <NA>         <NA>           <NA>      cancer
## 3965       likes dogs and likes cats        other             no   capricorn
## 3966                            <NA>  agnosticism             no      taurus
## 3967                            <NA>         <NA>             no        <NA>
## 3968       likes dogs and likes cats      atheism             no      gemini
## 3969                        has dogs  agnosticism           <NA>     scorpio
## 3970         likes dogs and has cats  catholicism             no sagittarius
## 3971       likes dogs and likes cats        other             no         leo
## 3972                      likes cats         <NA>             no       libra
## 3973       likes dogs and likes cats  agnosticism             no      cancer
## 3974 dislikes dogs and dislikes cats  catholicism             no       libra
## 3975           has dogs and has cats  agnosticism             no    aquarius
## 3976       likes dogs and likes cats  agnosticism           <NA>        <NA>
## 3977                      likes dogs  agnosticism           <NA>         leo
## 3978                      likes dogs      atheism           <NA>      pisces
## 3979                        has cats         <NA>             no       aries
## 3980                            <NA> christianity  when drinking         leo
## 3981    likes dogs and dislikes cats  agnosticism             no      taurus
## 3982                      likes dogs  catholicism             no    aquarius
## 3983                            <NA>      atheism             no         leo
## 3984       likes dogs and likes cats  agnosticism             no    aquarius
## 3985                            <NA>         <NA>             no      pisces
## 3986                      likes cats         <NA>             no sagittarius
## 3987                        has dogs        other             no   capricorn
## 3988       likes dogs and likes cats         <NA>             no      gemini
## 3989                            <NA>         <NA>             no      cancer
## 3990                            <NA>  agnosticism             no      gemini
## 3991                            <NA>      judaism             no    aquarius
## 3992                        has cats         <NA>             no sagittarius
## 3993       likes dogs and likes cats christianity             no        <NA>
## 3994       likes dogs and likes cats         <NA>             no      gemini
## 3995         likes dogs and has cats  agnosticism             no       virgo
## 3996                      likes dogs      atheism           <NA>         leo
## 3997       likes dogs and likes cats      atheism      sometimes      pisces
## 3998                      likes dogs  catholicism             no      pisces
## 3999       likes dogs and likes cats        other      sometimes       aries
## 4000         has dogs and likes cats      atheism             no     scorpio
## 4001                      likes dogs      judaism             no        <NA>
## 4002    likes dogs and dislikes cats      atheism             no        <NA>
## 4003                            <NA>         <NA>      sometimes sagittarius
## 4004                            <NA>      atheism             no        <NA>
## 4005                        has dogs         <NA>             no      pisces
## 4006                            <NA>        other             no        <NA>
## 4007    likes dogs and dislikes cats     buddhism             no      cancer
## 4008       likes dogs and likes cats      atheism             no       libra
## 4009                      likes dogs      atheism             no        <NA>
## 4010                            <NA>  catholicism             no       libra
## 4011       likes dogs and likes cats        other             no        <NA>
## 4012                            <NA> christianity             no      taurus
## 4013                            <NA>  agnosticism             no      pisces
## 4014       likes dogs and likes cats         <NA>             no        <NA>
## 4015                            <NA>     hinduism             no       aries
## 4016       likes dogs and likes cats  agnosticism             no   capricorn
## 4017                      likes dogs  catholicism             no     scorpio
## 4018       likes dogs and likes cats  agnosticism             no       aries
## 4019         likes dogs and has cats  agnosticism           <NA>        <NA>
## 4020       likes dogs and likes cats        other             no sagittarius
## 4021                            <NA>         <NA>             no sagittarius
## 4022                      likes dogs  agnosticism             no sagittarius
## 4023                            <NA>         <NA>             no      taurus
## 4024                        has dogs         <NA> trying to quit    aquarius
## 4025                            <NA>         <NA>             no     scorpio
## 4026       likes dogs and likes cats      atheism             no sagittarius
## 4027                            <NA>      atheism             no      gemini
## 4028         likes dogs and has cats christianity             no    aquarius
## 4029                      likes cats  agnosticism             no         leo
## 4030       likes dogs and likes cats        other             no      cancer
## 4031                            <NA>         <NA>           <NA>       libra
## 4032    likes dogs and dislikes cats      atheism             no         leo
## 4033                        has dogs  catholicism      sometimes      cancer
## 4034                        has dogs  catholicism             no         leo
## 4035         likes dogs and has cats  agnosticism             no       aries
## 4036       likes dogs and likes cats        other             no         leo
## 4037                      likes dogs  agnosticism             no       virgo
## 4038       likes dogs and likes cats      atheism             no      taurus
## 4039                            <NA>         <NA>           <NA>        <NA>
## 4040       likes dogs and likes cats  agnosticism      sometimes       libra
## 4041                        has dogs  agnosticism      sometimes         leo
## 4042 dislikes dogs and dislikes cats      judaism             no        <NA>
## 4043                            <NA>        other             no sagittarius
## 4044         has dogs and likes cats  agnosticism             no       virgo
## 4045       likes dogs and likes cats         <NA>             no      pisces
## 4046                      likes dogs         <NA>             no        <NA>
## 4047                      likes dogs  agnosticism             no       virgo
## 4048                            <NA>        other             no     scorpio
## 4049       likes dogs and likes cats        other             no         leo
## 4050       likes dogs and likes cats  agnosticism             no      pisces
## 4051       likes dogs and likes cats      atheism             no         leo
## 4052                            <NA>  catholicism             no       libra
## 4053                            <NA>         <NA>      sometimes      gemini
## 4054                      likes cats  catholicism             no sagittarius
## 4055                            <NA>         <NA>             no    aquarius
## 4056       likes dogs and likes cats  agnosticism             no      taurus
## 4057                      likes dogs         <NA>             no     scorpio
## 4058           has dogs and has cats        other             no sagittarius
## 4059       likes dogs and likes cats christianity             no       virgo
## 4060                            <NA>         <NA>           <NA>        <NA>
## 4061                            <NA>         <NA>  when drinking        <NA>
## 4062         has dogs and likes cats         <NA>            yes       libra
## 4063                      likes cats      atheism             no         leo
## 4064                      likes dogs         <NA>           <NA>       libra
## 4065                      likes dogs      judaism             no      gemini
## 4066         likes dogs and has cats      atheism           <NA>   capricorn
## 4067                      likes dogs  catholicism      sometimes       aries
## 4068                      likes dogs  agnosticism            yes        <NA>
## 4069       likes dogs and likes cats      atheism  when drinking     scorpio
## 4070       likes dogs and likes cats        other             no       aries
## 4071                            <NA>  agnosticism             no       aries
## 4072                      likes dogs         <NA>             no sagittarius
## 4073                            <NA>  agnosticism             no       libra
## 4074                      likes dogs  catholicism trying to quit   capricorn
## 4075       likes dogs and likes cats         <NA>             no        <NA>
## 4076                   dislikes cats christianity             no       virgo
## 4077       likes dogs and likes cats      judaism             no    aquarius
## 4078           has dogs and has cats      judaism             no         leo
## 4079       likes dogs and likes cats         <NA>             no        <NA>
## 4080         likes dogs and has cats         <NA>           <NA>       aries
## 4081    likes dogs and dislikes cats  catholicism             no       aries
## 4082                            <NA>      judaism             no       aries
## 4083                      likes dogs         <NA>             no       aries
## 4084         has dogs and likes cats        other  when drinking       aries
## 4085       likes dogs and likes cats         <NA>             no       aries
## 4086       likes dogs and likes cats        other             no       aries
## 4087                            <NA>         <NA>             no       aries
## 4088       likes dogs and likes cats         <NA>  when drinking       aries
## 4089                            <NA>         <NA>             no       libra
## 4090                      likes dogs     hinduism             no    aquarius
## 4091                            <NA>         <NA>           <NA>        <NA>
## 4092                            <NA>         <NA>           <NA>      pisces
## 4093                            <NA>      judaism             no        <NA>
## 4094       likes dogs and likes cats      judaism             no     scorpio
## 4095    likes dogs and dislikes cats     hinduism             no         leo
## 4096                            <NA>  agnosticism             no       libra
## 4097           has dogs and has cats        other             no        <NA>
## 4098                            <NA>        other           <NA>   capricorn
## 4099         likes dogs and has cats         <NA>             no        <NA>
## 4100                            <NA>         <NA>           <NA>        <NA>
## 4101         likes dogs and has cats        other             no       libra
## 4102                      likes dogs  agnosticism             no      cancer
## 4103                            <NA>        other  when drinking      cancer
## 4104                            <NA>  catholicism             no sagittarius
## 4105                            <NA>         <NA> trying to quit      taurus
## 4106                            <NA>         <NA>           <NA>       aries
## 4107                            <NA>     hinduism             no      gemini
## 4108                      likes dogs  catholicism      sometimes       virgo
## 4109                        has cats        other             no         leo
## 4110       likes dogs and likes cats      judaism             no         leo
## 4111       likes dogs and likes cats      judaism             no       aries
## 4112                            <NA>  agnosticism             no      taurus
## 4113                            <NA>  agnosticism             no        <NA>
## 4114                            <NA>      atheism             no       aries
## 4115                        has cats         <NA>             no       libra
## 4116       likes dogs and likes cats      atheism trying to quit   capricorn
## 4117      has dogs and dislikes cats     buddhism             no      pisces
## 4118       likes dogs and likes cats      atheism      sometimes sagittarius
## 4119                            <NA>         <NA>             no        <NA>
## 4120       likes dogs and likes cats      atheism             no sagittarius
## 4121       likes dogs and likes cats  catholicism             no       virgo
## 4122                            <NA>      atheism             no        <NA>
## 4123                        has cats         <NA>             no     scorpio
## 4124                            <NA> christianity             no        <NA>
## 4125                            <NA>         <NA>             no         leo
## 4126                        has dogs         <NA>             no      gemini
## 4127                      likes dogs         <NA>             no        <NA>
## 4128                        has dogs  agnosticism             no      cancer
## 4129         has dogs and likes cats  catholicism             no       aries
## 4130                            <NA>         <NA>      sometimes       virgo
## 4131 dislikes dogs and dislikes cats        other             no       libra
## 4132         has dogs and likes cats christianity  when drinking         leo
## 4133                            <NA>      atheism             no        <NA>
## 4134                        has dogs christianity trying to quit      gemini
## 4135    dislikes dogs and likes cats  agnosticism  when drinking       aries
## 4136                            <NA>      judaism             no    aquarius
## 4137       likes dogs and likes cats  catholicism             no   capricorn
## 4138       likes dogs and likes cats     buddhism             no       virgo
## 4139       likes dogs and likes cats         <NA>             no       virgo
## 4140                        has dogs  catholicism             no       libra
## 4141                      likes dogs         <NA>             no        <NA>
## 4142       likes dogs and likes cats  agnosticism             no         leo
## 4143                      likes dogs      judaism             no    aquarius
## 4144      has dogs and dislikes cats christianity      sometimes       libra
## 4145                            <NA> christianity  when drinking        <NA>
## 4146                      likes dogs  catholicism  when drinking       aries
## 4147           has dogs and has cats  catholicism             no       libra
## 4148                        has dogs  catholicism             no         leo
## 4149           has dogs and has cats  agnosticism trying to quit   capricorn
## 4150                      likes dogs         <NA>             no sagittarius
## 4151       likes dogs and likes cats      judaism             no       libra
## 4152                      likes dogs      judaism             no       libra
## 4153                        has cats  catholicism             no    aquarius
## 4154                            <NA>         <NA>            yes      taurus
## 4155    likes dogs and dislikes cats         <NA>             no        <NA>
## 4156                            <NA>     hinduism      sometimes      taurus
## 4157                      likes dogs  catholicism             no       virgo
## 4158                            <NA>         <NA>             no    aquarius
## 4159       likes dogs and likes cats  agnosticism             no   capricorn
## 4160         likes dogs and has cats        other             no    aquarius
## 4161         likes dogs and has cats      atheism             no    aquarius
## 4162       likes dogs and likes cats     hinduism  when drinking       aries
## 4163         has dogs and likes cats christianity             no       aries
## 4164         likes dogs and has cats  agnosticism             no       aries
## 4165       likes dogs and likes cats         <NA>             no        <NA>
## 4166                            <NA>     buddhism             no      cancer
##                                                        speaks
## 1                                                     english
## 2                                 english , spanish , french 
## 3                                        english, french, c++
## 4                                            english, german 
## 5                                                     english
## 6                                          english , chinese 
## 7                                                     english
## 8                                           english, spanish 
## 9                                                     english
## 10                                                   english 
## 11                                                    english
## 12                                   english , sign language 
## 13                                                    english
## 14                                                    english
## 15                                                    english
## 16                                         english , spanish 
## 17                           english , c++ , german , french 
## 18                                                    english
## 19                                                   english 
## 20                                                   english 
## 21                                                   english 
## 22                               english , spanish , italian 
## 23                                          english, spanish 
## 24                                                    english
## 25                                                    english
## 26                                                    english
## 27                              english , tagalog , japanese 
## 28                                    english , other , thai 
## 29                                          english, spanish 
## 30                                                    english
## 31                                          english, spanish 
## 32                                                    english
## 33                                                    english
## 34                                         english , spanish 
## 35                                                    english
## 36                                           english, russian
## 37                                         english , spanish 
## 38                                         english , spanish 
## 39                                                    english
## 40                                                    english
## 41                 english , dutch , lisp , spanish , german 
## 42                                                    english
## 43                                       english, indonesian 
## 44                          english , french , spanish , c++ 
## 45                             english, spanish , portuguese 
## 46                                         english , tagalog 
## 47                                english , swedish , french 
## 48                                                   english 
## 49              english , belarusan, gujarati, lisp, russian 
## 50                                         english , spanish 
## 51                                         english , spanish 
## 52                                                    english
## 53                                         english, japanese 
## 54                                                    english
## 55                                                    english
## 56                                            english, farsi 
## 57                                english , french , spanish 
## 58                                                    english
## 59                                                    english
## 60                                         english , spanish 
## 61                                    english, tagalog , c++ 
## 62                                          english, spanish 
## 63                                                    english
## 64                                          english, spanish 
## 65                                         english , spanish 
## 66                                          english, spanish 
## 67                                                   english 
## 68                                                   english 
## 69                                                   english 
## 70                                         english , italian 
## 71                                                    english
## 72                           english, spanish , italian , c++
## 73                                         english , spanish 
## 74             english , hindi , spanish , french , sanskrit 
## 75                                 english , french , german 
## 76                                         english , spanish 
## 77                                                    english
## 78                                                   english 
## 79                                  english, spanish, italian
## 80                                                    english
## 81                                          english , french 
## 82                                 english, german , spanish 
## 83                                            english, other 
## 84                              english , japanese , spanish 
## 85                                                    english
## 86                            english , spanish , portuguese 
## 87                                         english , spanish 
## 88                                          english, spanish 
## 89                                english, chinese , spanish 
## 90                                                    english
## 91                                                    english
## 92                                                    english
## 93                                                    english
## 94                                         english , spanish 
## 95                                                   english 
## 96                                          english , french 
## 97                        english , german , spanish , other 
## 98                                           english, chinese
## 99                                                   english 
## 100                                                   english
## 101                                                   english
## 102                 english , afrikaans , c++ , khmer , lisp 
## 103                               english , spanish , french 
## 104                                                  english 
## 105                                                   english
## 106                      english , french , hebrew , yiddish 
## 107                                                  english 
## 108                                                   english
## 109                              english , spanish , tagalog 
## 110                                                   english
## 111                                          english, spanish
## 112                                        english , spanish 
## 113                                                   english
## 114                                                  english 
## 115                                   english , c++ , french 
## 116                                                   english
## 117                          english , sign language , hindi 
## 118                             english , spanish , japanese 
## 119                               english , russian , french 
## 120                               english , polish , spanish 
## 121                                         english, russian 
## 122                                        english , tagalog 
## 123                                        english , russian 
## 124                                                   english
## 125                                        english , spanish 
## 126                                                   english
## 127                             english, german , lisp , c++ 
## 128                                                   english
## 129                                                   english
## 130                                            english , c++ 
## 131                                                   english
## 132                     english , german , spanish , serbian 
## 133                                english, spanish , french 
## 134                                                   english
## 135                           english , c++ , spanish , lisp 
## 136                                          english , dutch 
## 137                                                   english
## 138                                                   english
## 139                                                   english
## 140                                                   english
## 141                                                   english
## 142                                         english , english
## 143                                         english, english 
## 144                                                   english
## 145                                                   english
## 146                                                  english 
## 147                                                   english
## 148                                                   english
## 149                                         english , french 
## 150                                                   english
## 151                                english, spanish , german 
## 152                                                   english
## 153                                          english , other 
## 154                                                   english
## 155                                         english , french 
## 156                                                   english
## 157                                                   english
## 158                                         english, spanish 
## 159                                        english , spanish 
## 160                                                   english
## 161                                                   english
## 162                                         english, spanish 
## 163                                          english, korean 
## 164                                 english, spanish, persian
## 165                                                  english 
## 166                         english, czech, italian , french 
## 167                                        english , spanish 
## 168                                                   english
## 169                                                   english
## 170                                 english, spanish , other 
## 171                                        english , spanish 
## 172                                                  english 
## 173                                                   english
## 174                                                   english
## 175                                        english , spanish 
## 176                                                   english
## 177                                          english, russian
## 178                             english , croatian , bengali 
## 179                                                   english
## 180                        english , spanish , russian , c++ 
## 181                                                  english 
## 182                  english , spanish , french , portuguese 
## 183                                        english , spanish 
## 184                                                   english
## 185                                                   english
## 186                               english , spanish , french 
## 187                     english , italian , spanish , french 
## 188                                                   english
## 189                                                   english
## 190                                                  english 
## 191                                 english, hindi , spanish 
## 192                                         english, spanish 
## 193                                                  english 
## 194                             english , spanish , japanese 
## 195                                                   english
## 196                                                  english 
## 197                english, italian, french, spanish, russian
## 198                                                   english
## 199                                                   english
## 200                                                   english
## 201                                                   english
## 202                               english , vietnamese , c++ 
## 203                                        english , spanish 
## 204                                         english , french 
## 205                                         english , spanish
## 206                               english , french , spanish 
## 207                                        english , swedish 
## 208                           english , spanish , portuguese 
## 209                                        english , spanish 
## 210                                                  english 
## 211                                        english , spanish 
## 212                                  english , c++ , russian 
## 213                                       english, vietnamese
## 214                                                   english
## 215                                                  english 
## 216                                                  english 
## 217                                                   english
## 218                                                  english 
## 219                       english , spanish , french , czech 
## 220                                                  english 
## 221                                                  english 
## 222                                                   english
## 223                              english , italian , spanish 
## 224                                                  english 
## 225                                                   english
## 226                                                   english
## 227                              english, spanish, portuguese
## 228                                        english , spanish 
## 229                                         english , french 
## 230                                 english, spanish, french 
## 231                      english , chinese , spanish , other 
## 232                                        english , spanish 
## 233                                                   english
## 234                                 english, french, spanish 
## 235                                                   english
## 236                                                  english 
## 237                                                   english
## 238                                                   english
## 239                                                   english
## 240                               english , spanish , hebrew 
## 241                                                   english
## 242                                          english, italian
## 243                                                   english
## 244                                                  english 
## 245                                                   english
## 246                                                   english
## 247                                         english , german 
## 248                                                   english
## 249                                         english , spanish
## 250                                                  english 
## 251                                                   english
## 252                                        english , spanish 
## 253                                          english , hindi 
## 254                               english, japanese , french 
## 255                                                   english
## 256                                                   english
## 257                                                   english
## 258                                                   english
## 259                                                   english
## 260                                                   english
## 261                                         english , french 
## 262                                                   english
## 263                                          english, spanish
## 264                                                   english
## 265                                                  english 
## 266                                                   english
## 267                                                   english
## 268                                            english , c++ 
## 269                                                   english
## 270                                          english, french 
## 271                                        english , chinese 
## 272                                        english , spanish 
## 273                                                   english
## 274                                                   english
## 275                                                   english
## 276                                                  english 
## 277                                                   english
## 278                                         english , french 
## 279                                          english, english
## 280                                                   english
## 281                                                  english 
## 282                                                  english 
## 283                                      english , esperanto 
## 284                                        english , spanish 
## 285                                                   english
## 286                                         english, spanish 
## 287                                          english, spanish
## 288                      english , french , german , russian 
## 289                                                   english
## 290                                                   english
## 291                                                  english 
## 292                                                   english
## 293                                          english, french 
## 294                                          english, chinese
## 295                                                   english
## 296                                                   english
## 297                                                   english
## 298                                          english, spanish
## 299                  english , portuguese , spanish , french 
## 300                                          english, spanish
## 301                                                  english 
## 302                                        english , spanish 
## 303                  english , portuguese , spanish , french 
## 304                               english , spanish , french 
## 305                              english , spanish , italian 
## 306                               english , french , swahili 
## 307                                         english , english
## 308                                                   english
## 309                                                  english 
## 310                                          english, german 
## 311                                                   english
## 312                                                  english 
## 313                                          english, chinese
## 314                                                  english 
## 315                                                   english
## 316                                        english , spanish 
## 317                                          english , latin 
## 318                                                   english
## 319                                                   english
## 320                                                   english
## 321                                                   english
## 322                              english , chinese , spanish 
## 323                                        english , spanish 
## 324                                                   english
## 325                                                   english
## 326                                english, french , spanish 
## 327                          english, french , other , other 
## 328                           english , spanish , indonesian 
## 329                                english , german , french 
## 330                                                  english 
## 331                                                   english
## 332                               english , french , spanish 
## 333                                                   english
## 334             english , german , swedish , c++ , norwegian 
## 335                    english , japanese , french , chinese 
## 336                                          english, english
## 337                                         english , spanish
## 338                                        english , spanish 
## 339                                        english , spanish 
## 340                                           english, german
## 341                                                   english
## 342                       english , czech , german , spanish 
## 343                                         english , french 
## 344                                        english , spanish 
## 345                                                  english 
## 346         english , greek , ancient greek , swahili , lisp 
## 347                                                   english
## 348                                                   english
## 349                                                   english
## 350               english , sign language , french , spanish 
## 351                                english , spanish , other 
## 352                                         english , german 
## 353                                         english , french 
## 354                                                  english 
## 355                               english , spanish , french 
## 356                                                   english
## 357                             english , spanish , japanese 
## 358                                                   english
## 359                                          english, french 
## 360                                                   english
## 361                                                   english
## 362                                                  english 
## 363                   english , norwegian , swedish , french 
## 364                                                   english
## 365                                           english, hebrew
## 366                                  english , russian , c++ 
## 367                                                  english 
## 368                        english , sign language , spanish 
## 369                               english, spanish , italian 
## 370                                                   english
## 371                                                   english
## 372                                                   english
## 373                          english , latin , chinese , c++ 
## 374                                                   english
## 375                                   english , german , c++ 
## 376                                                   english
## 377                                        english , spanish 
## 378                                                  english 
## 379                                                   english
## 380                                        english , spanish 
## 381                                                   english
## 382                                          english, spanish
## 383                                         english, chinese 
## 384                                                  english 
## 385                                                   english
## 386                                                   english
## 387                                                  english 
## 388                                          english, french 
## 389                                                   english
## 390                                           english, hebrew
## 391                                         english, english 
## 392                                         english , german 
## 393                                                   english
## 394                                                   english
## 395                            english, spanish , portuguese 
## 396                                                   english
## 397                                                   english
## 398                                                   english
## 399                               english , french , spanish 
## 400                                                   english
## 401                                                   english
## 402                                                   english
## 403                    english, afrikaans , french , spanish 
## 404                                        english , spanish 
## 405                                                   english
## 406                                                   english
## 407                                                  english 
## 408                                                   english
## 409                                 english , hebrew, spanish
## 410                          english, c++, spanish , italian 
## 411                                                   english
## 412                                                  english 
## 413                                  english, greek, albanian
## 414                                                   english
## 415                                                   english
## 416                                                   english
## 417                                                   english
## 418                                                  english 
## 419                                                   english
## 420                      english , hebrew , french , spanish 
## 421                              english , spanish , italian 
## 422                   english , spanish , german , esperanto 
## 423                      english , french , german , spanish 
## 424                                                   english
## 425                                                   english
## 426                                                   english
## 427                                      english , portuguese
## 428                                                   english
## 429                                                   english
## 430                                         english , spanish
## 431                                                  english 
## 432                                        english , spanish 
## 433                                             english, c++ 
## 434          english , french , spanish , german , icelandic 
## 435                                                   english
## 436                                                   english
## 437                                                   english
## 438                                        english , chinese 
## 439                                                   english
## 440                               english , french , spanish 
## 441                                                   english
## 442                                                   english
## 443                                                   english
## 444                                  english, english, french
## 445                                                   english
## 446                                                   english
## 447                           english , spanish , portuguese 
## 448                                        english , spanish 
## 449                                           english, arabic
## 450                                            english , c++ 
## 451                                                   english
## 452                                                   english
## 453                                          english, german 
## 454                                                   english
## 455                                                  english 
## 456                                                   english
## 457                                                   english
## 458                                english , hindi , spanish 
## 459               english , spanish , arabic , french , thai 
## 460                                         english, spanish 
## 461                              english , tagalog , spanish 
## 462                                        english , spanish 
## 463                                                   english
## 464                                         english , german 
## 465                                                   english
## 466                                          english, spanish
## 467                                                  english 
## 468                                                  english 
## 469                                                   english
## 470                                                   english
## 471                                                   english
## 472                               english , japanese , other 
## 473                              english , french , japanese 
## 474                               english , korean , spanish 
## 475                                                  english 
## 476                                                   english
## 477                               english , french , spanish 
## 478                                                   english
## 479                                                  english 
## 480                       english , french , spanish , other 
## 481                             english , italian , japanese 
## 482                                         english, spanish 
## 483                                                  english 
## 484                                        english , spanish 
## 485                                          english , latin 
## 486                                                  english 
## 487                                english, chinese, japanese
## 488                                                  english 
## 489                                        english , spanish 
## 490                                                   english
## 491                                                   english
## 492                                        english , spanish 
## 493                                          english , latin 
## 494                                                   english
## 495                                         english , french 
## 496                               english , spanish , french 
## 497                                 english, chinese, tagalog
## 498                                                   english
## 499                   english , japanese , spanish , italian 
## 500                                                   english
## 501                                                   english
## 502               english , c++ , chinese , french , yiddish 
## 503                                     english , portuguese 
## 504                                                   english
## 505                                                  english 
## 506                                                   english
## 507                                                   english
## 508                       english, german , spanish , french 
## 509                                                   english
## 510                                          english, spanish
## 511                                                  english 
## 512                                                   english
## 513               english , english , english , english, c++ 
## 514                             english , chinese , japanese 
## 515                              english , spanish , chinese 
## 516                                                  english 
## 517                                                   english
## 518                              english , chinese , spanish 
## 519                              english , chinese , tagalog 
## 520                              english , russian , spanish 
## 521                                                  english 
## 522                                         english, spanish 
## 523                                                   english
## 524                                        english , spanish 
## 525                                         english, spanish 
## 526                                        english , spanish 
## 527                                                   english
## 528                                        english , spanish 
## 529                                                  english 
## 530                                                   english
## 531                               english , french , spanish 
## 532                                        english , spanish 
## 533          english , italian , german , japanese , russian 
## 534                                                   english
## 535       english , spanish , french , portuguese , japanese 
## 536                                                   english
## 537                                                   english
## 538                                  english , spanish , c++ 
## 539                                                   english
## 540                                                  english 
## 541                                                   english
## 542                                                   english
## 543                                       english, esperanto 
## 544                                                   english
## 545                               english , spanish , french 
## 546                                         english , french 
## 547                                        english , spanish 
## 548                                                   english
## 549                                                   english
## 550                                english , korean , french 
## 551                                                   english
## 552                                     english , portuguese 
## 553                                                  english 
## 554                                         english , french 
## 555                                                   english
## 556                                         english , french 
## 557                                                   english
## 558                                                   english
## 559                              english , italian , chinese 
## 560                                                   english
## 561                                                   english
## 562                english , spanish , hindi , other , other 
## 563                                                  english 
## 564                                        english , spanish 
## 565                               english , italian , french 
## 566                                                   english
## 567                                                   english
## 568                                          english, french 
## 569                                        english , chinese 
## 570                                                   english
## 571                                                   english
## 572                                                   english
## 573                                                  english 
## 574                                                   english
## 575                                                   english
## 576                                                  english 
## 577                                                   english
## 578                                                   english
## 579                                english , farsi , spanish 
## 580                                                   english
## 581                                                  english 
## 582                                                   english
## 583                                                   english
## 584                                                   english
## 585                                        english , tagalog 
## 586                                                   english
## 587                            english , french , c++ , lisp 
## 588                                                  english 
## 589                                                  english 
## 590                                          english , hindi 
## 591                                                  english 
## 592                               english , spanish , french 
## 593                                        english , spanish 
## 594             english, english , hebrew , spanish , french 
## 595                                        english , spanish 
## 596                                                  english 
## 597                                                   english
## 598                                english, spanish , french 
## 599                                        english , spanish 
## 600                           english , french , other , c++ 
## 601                                        english , spanish 
## 602                                                   english
## 603                                                   english
## 604                                                   english
## 605                                                  english 
## 606                                                   english
## 607                                                   english
## 608                               english, spanish , yiddish 
## 609                                                   english
## 610                                         english , french 
## 611                                         english, spanish 
## 612                                                  english 
## 613                                                   english
## 614                              english , russian , spanish 
## 615                  english , portuguese , french , spanish 
## 616                                        english , spanish 
## 617                                                   english
## 618                                                   english
## 619                                                   english
## 620                                                   english
## 621                                     english, chinese, c++
## 622                                        english , spanish 
## 623                                         english , french 
## 624                                                  english 
## 625                                        english , spanish 
## 626                                                   english
## 627                                                   english
## 628                                                   english
## 629                                           english, french
## 630                                                   english
## 631                               english , french , spanish 
## 632                                  english , sign language 
## 633                                                   english
## 634                                                   english
## 635                                        english , spanish 
## 636                                                  english 
## 637                                                   english
## 638                                                  english 
## 639                               english , polish , spanish 
## 640                                                   english
## 641                                                   english
## 642                               english , spanish , hebrew 
## 643                                                  english 
## 644            english, tibetan, japanese, afrikaans, cebuano
## 645                                         english , french 
## 646                                        english , spanish 
## 647                                                   english
## 648                                english , german , korean 
## 649                                          english, spanish
## 650                                        english , spanish 
## 651                                                   english
## 652                                                   english
## 653                                          english, chinese
## 654                               english , french , spanish 
## 655                                                   english
## 656                                                   english
## 657                                                   english
## 658                                        english , spanish 
## 659                                        english, japanese 
## 660                                english, georgian, russian
## 661                                                  english 
## 662                                                   english
## 663                                english, french , spanish 
## 664                                         english , german 
## 665                                                   english
## 666                                        english , spanish 
## 667                    english , french , japanese , russian 
## 668                                                  english 
## 669                                         english , french 
## 670                                english, spanish , french 
## 671                                            english , c++ 
## 672                                                   english
## 673                                                   english
## 674                     english , italian , spanish , german 
## 675                                                   english
## 676                                                   english
## 677                                        english , swedish 
## 678                                                   english
## 679                             english , chinese , japanese 
## 680                                          english, french 
## 681                                                   english
## 682                                  english , spanish , c++ 
## 683                                                   english
## 684                                        english , tagalog 
## 685                                                   english
## 686                                                   english
## 687                                                   english
## 688                                         english , german 
## 689                                        english , chinese 
## 690                                                  english 
## 691                                                   english
## 692                               english, spanish , russian 
## 693                                         english, spanish 
## 694                                                  english 
## 695                                                   english
## 696                                                   english
## 697                                                   english
## 698                     english, chinese, c++ , latin , lisp 
## 699                                                   english
## 700                                                  english 
## 701                                                   english
## 702              english , chinese , thai , japanese , other 
## 703                  english, french, polish, spanish, german
## 704                                                   english
## 705                                   english, sign language 
## 706                              english , chinese , spanish 
## 707                                        english , tagalog 
## 708            english , spanish , french , hebrew , chinese 
## 709                               english , spanish , french 
## 710                                        english , spanish 
## 711                                                   english
## 712                                        english , tagalog 
## 713                                                   english
## 714                                         english , french 
## 715                                                   english
## 716                                       english , japanese 
## 717                                                  english 
## 718                                                   english
## 719                                          english, spanish
## 720                        english , spanish , sign language 
## 721                                                   english
## 722                                                   english
## 723  english , spanish , french , portuguese , sign language 
## 724                                            english , thai
## 725                                        english , spanish 
## 726                                        english , spanish 
## 727                                          english, spanish
## 728                                                   english
## 729                                                   english
## 730                                                   english
## 731                                                   english
## 732                                         english, english 
## 733                                                   english
## 734                                                  english 
## 735                                         english, chinese 
## 736                                        english , spanish 
## 737                                                  english 
## 738                                        english , italian 
## 739                                         english, japanese
## 740                                                   english
## 741                                        english , spanish 
## 742                                                   english
## 743                                                   english
## 744                                         english , french 
## 745                                                  english 
## 746                                                   english
## 747                                          english , farsi 
## 748                                                   english
## 749                                  english , chinese , c++ 
## 750                english , sign language , spanish , greek 
## 751                                        english , spanish 
## 752                                                   english
## 753                                                   english
## 754                             english , spanish , hawaiian 
## 755                                        english , swahili 
## 756                                                   english
## 757                        english , spanish , sign language 
## 758                                                  english 
## 759                                                   english
## 760                                        english , spanish 
## 761                                                  english 
## 762                                                   english
## 763                                                   english
## 764                                                   english
## 765                                        english , spanish 
## 766                                                  english 
## 767                               english , spanish , french 
## 768                                                   english
## 769                                          english , dutch 
## 770                              english , tagalog , spanish 
## 771                                                   english
## 772                                                   english
## 773                                                   english
## 774                                                   english
## 775                                                  english 
## 776                                                  english 
## 777                     english , french , hebrew , japanese 
## 778                                                   english
## 779                              english , spanish , tagalog 
## 780                             english , japanese , chinese 
## 781                                        english , spanish 
## 782                              english , swedish , spanish 
## 783                                        english , spanish 
## 784                                       english , croatian 
## 785                                        english , italian 
## 786                                         english , german 
## 787                               english , spanish , french 
## 788                                         english , french 
## 789                                          english, spanish
## 790                              english , spanish , tagalog 
## 791                                                   english
## 792                                                  english 
## 793                                        english , spanish 
## 794                                           english, french
## 795                                                  english 
## 796                                english, spanish , french 
## 797                           english , spanish , portuguese 
## 798                                                   english
## 799                           english , spanish , portuguese 
## 800                                                  english 
## 801                                         english, spanish 
## 802             english , french , spanish , greek , italian 
## 803                                                   english
## 804                                                   english
## 805                               english , arabic , chinese 
## 806                              english , spanish , chinese 
## 807                                                   english
## 808                                                   english
## 809                                       english , japanese 
## 810                                                   english
## 811                                                   english
## 812                                       english , japanese 
## 813                                         english , korean 
## 814                                        english , spanish 
## 815                                                   english
## 816                                                  english 
## 817                                                   english
## 818                                                   english
## 819                                                   english
## 820                                                  english 
## 821                        english, thai , korean , japanese 
## 822                                          english, french 
## 823                                                   english
## 824                                                  english 
## 825                                                  english 
## 826                                                   english
## 827                             english , chinese , japanese 
## 828                                        english , spanish 
## 829                                        english , spanish 
## 830                       english , hindi , spanish , french 
## 831                                  english, japanese , c++ 
## 832                               english , french , spanish 
## 833                english, spanish , norwegian , portuguese 
## 834                                  english , chinese , c++ 
## 835                                                  english 
## 836                                                   english
## 837                                          english , hindi 
## 838                                                   english
## 839                                        english , spanish 
## 840                                                   english
## 841                                                   english
## 842                                        english , spanish 
## 843                                                   english
## 844                                            english, khmer
## 845                                             english, c++ 
## 846                                                   english
## 847                                english , spanish , other 
## 848                                          english, french 
## 849                                                   english
## 850                                 english , french , dutch 
## 851                                                  english 
## 852                               english, spanish , italian 
## 853                                          english, french 
## 854                                                   english
## 855                                         english, spanish 
## 856                               english , russian , french 
## 857                                          english, chinese
## 858                                                  english 
## 859                                        english , spanish 
## 860                                                  english 
## 861             english , spanish , arabic , italian , dutch 
## 862                                                   english
## 863                        english, swedish, spanish, russian
## 864                                            english , c++ 
## 865                                                   english
## 866                                                   english
## 867                            english , c++ , french , lisp 
## 868                                        english , spanish 
## 869                                                  english 
## 870                               english , french , spanish 
## 871                               english, turkish , italian 
## 872                      english , spanish , french , korean 
## 873                                                   english
## 874                                english, polish , spanish 
## 875                                english , french , german 
## 876                                                   english
## 877                                                  english 
## 878                                        english , spanish 
## 879                                                   english
## 880                                                   english
## 881                    english , italian , latvian , spanish 
## 882                                     english , vietnamese 
## 883              english , french , arabic , spanish , latin 
## 884                                                  english 
## 885                                                  english 
## 886                                        english , spanish 
## 887                              english, spanish , japanese 
## 888                                                   english
## 889                                                  english 
## 890                                        english , spanish 
## 891                                   english, sign language 
## 892      english, portuguese , french , chinese , indonesian 
## 893                                                  english 
## 894                                        english , spanish 
## 895                                        english , spanish 
## 896                                                   english
## 897                                                   english
## 898                                                   english
## 899                                                   english
## 900                                                   english
## 901                                                   english
## 902                  english , spanish , german , portuguese 
## 903                                                  english 
## 904                                        english , spanish 
## 905                 english, spanish, german, french, serbian
## 906                                         english , french 
## 907                                                   english
## 908                                        english , spanish 
## 909                                                   english
## 910                               english , spanish , french 
## 911                                                   english
## 912                                                   english
## 913                                         english, spanish 
## 914                                                   english
## 915                                                  english 
## 916                                                  english 
## 917                                         english , french 
## 918                                             english, thai
## 919                                                   english
## 920                                        english , spanish 
## 921                                         english , french 
## 922                                                   english
## 923                               english , spanish , french 
## 924                                         english , french 
## 925                                        english , italian 
## 926                                                   english
## 927                                  english , other , other 
## 928                                                   english
## 929                                                   english
## 930                                  english , tamil , hindi 
## 931                                                   english
## 932                                        english , spanish 
## 933                                                   english
## 934                                                   english
## 935                english , c++ , lisp , spanish , japanese 
## 936                                            english , c++ 
## 937                              english , chinese , spanish 
## 938                                                   english
## 939                                                   english
## 940                                                   english
## 941                                          english, chinese
## 942                                         english , french 
## 943                                   english , german , c++ 
## 944                               english , german , spanish 
## 945                  english , hindi , other , other , other 
## 946                                                   english
## 947                             english, hindi, japanese, c++
## 948                                                   english
## 949                               english , korean , spanish 
## 950                                                   english
## 951                                                  english 
## 952                                                   english
## 953                                         english , korean 
## 954                                                   english
## 955                                                   english
## 956                                        english , spanish 
## 957                                                  english 
## 958                                                   english
## 959                         english , latin , lisp , spanish 
## 960                      english, spanish , french , persian 
## 961                                  english, chinese, german
## 962                                         english, spanish 
## 963                                                   english
## 964                                                   english
## 965                                         english, spanish 
## 966                                                   english
## 967                                        english , spanish 
## 968                                                  english 
## 969                                                   english
## 970                         english , german , sign language 
## 971                                                  english 
## 972                                                  english 
## 973                                                   english
## 974    english , indonesian , vietnamese , tagalog , spanish 
## 975                                   english , c++ , french 
## 976                                        english , spanish 
## 977                                                   english
## 978                    english , french , croatian , serbian 
## 979                                                   english
## 980                                                   english
## 981                                                   english
## 982                                                  english 
## 983                                                   english
## 984                                                   english
## 985                                         english, spanish 
## 986                                        english , spanish 
## 987                           english , portuguese , spanish 
## 988                                english, spanish , french 
## 989                                        english , spanish 
## 990                     english , spanish , italian , german 
## 991                                        english , spanish 
## 992                                         english, spanish 
## 993                                                  english 
## 994                                                   english
## 995                               english , spanish , german 
## 996                                                   english
## 997                                            english , c++ 
## 998                                          english, hebrew 
## 999                                                   english
## 1000                                       english , spanish 
## 1001                                                 english 
## 1002                                                 english 
## 1003                                                  english
## 1004                                                 english 
## 1005                               english , spanish , khmer 
## 1006                                                 english 
## 1007                                                 english 
## 1008                                        english, spanish 
## 1009                                       english , spanish 
## 1010                                       english , spanish 
## 1011                                                  english
## 1012                                                 english 
## 1013                                       english , tagalog 
## 1014                              english , spanish , french 
## 1015                                  english, lisp, chinese 
## 1016                                       english , spanish 
## 1017                                                 english 
## 1018                                                 english 
## 1019                                                  english
## 1020                                                 english 
## 1021                                       english , spanish 
## 1022                                                  english
## 1023         english , russian , german , bulgarian , french 
## 1024                                                  english
## 1025                                                  english
## 1026                                  english , c++ , french 
## 1027                                                 english 
## 1028                                                 english 
## 1029                           english , russian , ukrainian 
## 1030                              english , russian , french 
## 1031                                                  english
## 1032                               english , spanish , tamil 
## 1033                          english, spanish, thai, chinese
## 1034                                                  english
## 1035                            english, german, spanish, c++
## 1036                                english , farsi , french 
## 1037                              english , polish , spanish 
## 1038                                                 english 
## 1039                                         english, french 
## 1040                                                  english
## 1041                                                  english
## 1042                                        english, japanese
## 1043                                        english, italian 
## 1044                                       english , spanish 
## 1045                                        english, spanish 
## 1046                                       english , swedish 
## 1047                                                  english
## 1048                                       english , chinese 
## 1049        english , german , japanese , hawaiian , russian 
## 1050                                                  english
## 1051                                                 english 
## 1052                              english , korean , spanish 
## 1053                                                  english
## 1054                               english, italian , german 
## 1055                                                  english
## 1056                                         english, french 
## 1057                                        english, spanish 
## 1058                                       english , spanish 
## 1059                                        english , french 
## 1060                                                  english
## 1061                                         english, italian
## 1062                                                 english 
## 1063          english , c++ , lisp , occitan , ancient greek 
## 1064                                       english , spanish 
## 1065                                           english , c++ 
## 1066                                 english, french, spanish
## 1067                                       english , chinese 
## 1068                    english , french , italian , spanish 
## 1069                                        english, spanish 
## 1070                                                 english 
## 1071                                       english , spanish 
## 1072                                         english, chinese
## 1073                                                  english
## 1074                                       english , spanish 
## 1075                                        english , german 
## 1076                                  english, sign language 
## 1077                                                  english
## 1078                                        english, spanish 
## 1079                                                  english
## 1080                                      english , japanese 
## 1081                                       english , chinese 
## 1082                                       english , spanish 
## 1083                                                  english
## 1084                                  english, arabic, french
## 1085                               english , french , arabic 
## 1086                    english , spanish , italian , french 
## 1087                                                 english 
## 1088                                       english , spanish 
## 1089                                        english , french 
## 1090                                                  english
## 1091                                                  english
## 1092                                                  english
## 1093                                                  english
## 1094                                         english, chinese
## 1095                                                  english
## 1096                                  english , german , c++ 
## 1097                        english , spanish , german , c++ 
## 1098                                                  english
## 1099                                                  english
## 1100                                                  english
## 1101            english, french , italian , spanish , hebrew 
## 1102                                                  english
## 1103                                                  english
## 1104                                                  english
## 1105                                       english , spanish 
## 1106                                                  english
## 1107                          english , french , c++ , other 
## 1108                                       english , chinese 
## 1109                                                  english
## 1110                                                 english 
## 1111                              english , spanish , german 
## 1112                                                 english 
## 1113                                         english, spanish
## 1114                                        english , french 
## 1115                                                  english
## 1116                                         english , hindi 
## 1117                             english , spanish , chinese 
## 1118                                        english, spanish 
## 1119                                                 english 
## 1120                                                  english
## 1121         english , french , spanish , khmer , vietnamese 
## 1122                                        english , french 
## 1123                                                  english
## 1124                                        english, serbian 
## 1125                                         english, french 
## 1126                                           english , c++ 
## 1127                                                  english
## 1128                                         english, italian
## 1129                                       english , spanish 
## 1130                                                  english
## 1131                                                  english
## 1132                                                 english 
## 1133                                                 english 
## 1134                                        english , german 
## 1135                                                 english 
## 1136                                                  english
## 1137                            english , french , icelandic 
## 1138                                        english, spanish 
## 1139                                       english , spanish 
## 1140                                        english, english 
## 1141                               english, tagalog , french 
## 1142                                                  english
## 1143                                       english , chinese 
## 1144                                                  english
## 1145                                                  english
## 1146                                                  english
## 1147                    english , vietnamese , c++ , spanish 
## 1148                                                  english
## 1149                       english , spanish , sign language 
## 1150                                           english, other
## 1151                                                  english
## 1152                                         english, spanish
## 1153                              english , spanish , french 
## 1154                                english , sanskrit , c++ 
## 1155                                       english, japanese 
## 1156                                         english, italian
## 1157                              english , arabic , spanish 
## 1158                                                  english
## 1159                                       english, japanese 
## 1160                                                  english
## 1161                                                  english
## 1162                                                  english
## 1163                                                 english 
## 1164                                       english , chinese 
## 1165                                                  english
## 1166                                                 english 
## 1167                                  english , thai , hindi 
## 1168                                       english , spanish 
## 1169                                                  english
## 1170                                       english , spanish 
## 1171                                         english , hindi 
## 1172                          english , portuguese , spanish 
## 1173                             english , chinese , spanish 
## 1174                                                  english
## 1175          english , spanish , japanese , german , french 
## 1176                                    english , indonesian 
## 1177                                       english , russian 
## 1178                                 english , spanish , c++ 
## 1179                                         english, french 
## 1180                   english , japanese , french , spanish 
## 1181                               english , other , russian 
## 1182                               english , polish , german 
## 1183                                                  english
## 1184                                       english , spanish 
## 1185                                                  english
## 1186                                                  english
## 1187                                        english , french 
## 1188                                                  english
## 1189                                                  english
## 1190                                                  english
## 1191                                                 english 
## 1192                                                 english 
## 1193                                      english , japanese 
## 1194                                                  english
## 1195                                        english, spanish 
## 1196            english , spanish , french , chinese , latin 
## 1197                              english , spanish , french 
## 1198                                        english , french 
## 1199                                         english, spanish
## 1200                                                  english
## 1201                                                  english
## 1202                                        english, spanish 
## 1203                                                  english
## 1204                               english, german , italian 
## 1205                                                  english
## 1206                             english, japanese , spanish 
## 1207                                        english , french 
## 1208                                                 english 
## 1209                                                 english 
## 1210               english , sign language , spanish , other 
## 1211                                                 english 
## 1212                                                 english 
## 1213                                       english , spanish 
## 1214                                                  english
## 1215                            english , japanese , spanish 
## 1216                                        english, spanish 
## 1217                                       english , spanish 
## 1218                                       english , spanish 
## 1219                              english , hebrew , spanish 
## 1220                      english , french , latin , spanish 
## 1221                                                  english
## 1222                                         english, spanish
## 1223                                                 english 
## 1224                                                  english
## 1225                                english, spanish, italian
## 1226                                       english , chinese 
## 1227                                                  english
## 1228                                                  english
## 1229                                                  english
## 1230                                        english , french 
## 1231                                       english , spanish 
## 1232                                                  english
## 1233                               english, french , spanish 
## 1234                                                  english
## 1235                                                  english
## 1236                                                 english 
## 1237                                                  english
## 1238                                                  english
## 1239                                                  english
## 1240                                       english , spanish 
## 1241                                                 english 
## 1242                                           english , c++ 
## 1243                                                  english
## 1244                                       english , spanish 
## 1245                             english , spanish , yiddish 
## 1246                              english, japanese , german 
## 1247                                                  english
## 1248                                       english , chinese 
## 1249                                                  english
## 1250                                       english , chinese 
## 1251         english , english , english , english , english 
## 1252                                                  english
## 1253                                                  english
## 1254                                       english , spanish 
## 1255                                       english , spanish 
## 1256                                         english, french 
## 1257                              english, bengali , spanish 
## 1258                                                  english
## 1259                                                  english
## 1260                                       english , swedish 
## 1261                                                  english
## 1262                  english, french , portuguese , spanish 
## 1263                                                 english 
## 1264                   english , french , spanish , japanese 
## 1265                                        english , hebrew 
## 1266                                       english , chinese 
## 1267                                        english , french 
## 1268                                                  english
## 1269                               english , spanish , farsi 
## 1270                               english, chinese, japanese
## 1271                                                  english
## 1272                                       english , spanish 
## 1273                                                  english
## 1274                                                  english
## 1275                               english , latin , spanish 
## 1276                                                  english
## 1277                                                  english
## 1278                                         english, chinese
## 1279                                                  english
## 1280                                                  english
## 1281                                       english , spanish 
## 1282                                         english , hindi 
## 1283                                                 english 
## 1284                                                  english
## 1285                                                 english 
## 1286                                                  english
## 1287                                         english, french 
## 1288                                                  english
## 1289                                                  english
## 1290                              english , spanish , german 
## 1291                                                  english
## 1292                                       english , chinese 
## 1293                                     english , vietnamese
## 1294                                                  english
## 1295                    english , french , italian , spanish 
## 1296                               english , french , arabic 
## 1297                                       english , spanish 
## 1298                             english , german , japanese 
## 1299           english , french , spanish , italian , breton 
## 1300                                        english , arabic 
## 1301                                                  english
## 1302                                       english , spanish 
## 1303          english , chinese , c++ , thai , ancient greek 
## 1304                                                 english 
## 1305                          english , spanish , portuguese 
## 1306                                       english , tagalog 
## 1307                                                 english 
## 1308                                                 english 
## 1309                                        english, spanish 
## 1310                                 english , farsi , other 
## 1311                                                  english
## 1312                        english , french , lisp , german 
## 1313                                                  english
## 1314                                                 english 
## 1315                                  english, french, arabic
## 1316                     english , german , italian , french 
## 1317                                         english, spanish
## 1318                 english , latin , c++ , arabic , french 
## 1319                                       english , spanish 
## 1320                                       english , spanish 
## 1321                                                  english
## 1322                 english, english , spanish , portuguese 
## 1323                                        english, spanish 
## 1324                                       english , spanish 
## 1325                               english, french , spanish 
## 1326                                                  english
## 1327                                                  english
## 1328                                                  english
## 1329                                                 english 
## 1330                                 english , hindi , other 
## 1331                                                 english 
## 1332                                         english , hindi 
## 1333                                                  english
## 1334                                                 english 
## 1335                                                  english
## 1336                                                 english 
## 1337                             english , spanish , italian 
## 1338                                                  english
## 1339                                                  english
## 1340                                 english , sign language 
## 1341                                                  english
## 1342                                                 english 
## 1343                                                 english 
## 1344                                                  english
## 1345       english , spanish , italian , portuguese , french 
## 1346                                                  english
## 1347                                                  english
## 1348                                                  english
## 1349                                                 english 
## 1350                    english, portuguese, spanish, french 
## 1351                                       english , swahili 
## 1352                                                 english 
## 1353                                                  english
## 1354                                                 english 
## 1355                                       english , spanish 
## 1356                                                 english 
## 1357                                                 english 
## 1358                                                 english 
## 1359                                                  english
## 1360                                                  english
## 1361                                         english, french 
## 1362                                                  english
## 1363                                                  english
## 1364                       english , other , spanish , latin 
## 1365                                  english , c++ , french 
## 1366                                                 english 
## 1367                                         english, spanish
## 1368                  english, french , portuguese , spanish 
## 1369                                        english, spanish 
## 1370                                         english , czech 
## 1371                                        english , french 
## 1372                                                 english 
## 1373                                                  english
## 1374                                       english , chinese 
## 1375                                       english , spanish 
## 1376                                                  english
## 1377                                                  english
## 1378                                          english , lisp 
## 1379                             english , catalan , spanish 
## 1380                                       english , spanish 
## 1381                                         english , french
## 1382                                          english, french
## 1383                                  english, hindi, arabic 
## 1384                                                 english 
## 1385                                       english , spanish 
## 1386                                                  english
## 1387                                  english , c++ , french 
## 1388                               english , greek , spanish 
## 1389                       english , french , spanish , thai 
## 1390                                                  english
## 1391                                         english , hindi 
## 1392                                                  english
## 1393                                       english , spanish 
## 1394                                         english , other 
## 1395                                        english, spanish 
## 1396                                                  english
## 1397                                       english , chinese 
## 1398                                                  english
## 1399                                           english , c++ 
## 1400                                        english , korean 
## 1401                                       english , russian 
## 1402                                        english , hebrew 
## 1403                                                  english
## 1404                                                 english 
## 1405                                       english , spanish 
## 1406           english , swedish , spanish , french , german 
## 1407                                                  english
## 1408                                                  english
## 1409                                                  english
## 1410                                                 english 
## 1411                                       english , spanish 
## 1412                                         english, spanish
## 1413                                          english, french
## 1414                                                  english
## 1415                                                  english
## 1416                                                  english
## 1417                                                  english
## 1418                             english , chinese , spanish 
## 1419                                      english , japanese 
## 1420                                       english , chinese 
## 1421                                         english, korean 
## 1422                                                 english 
## 1423                                                  english
## 1424                                                  english
## 1425                                                  english
## 1426                                   english, sign language
## 1427                                  english, sign language 
## 1428                                                  english
## 1429                                                  english
## 1430                                                 english 
## 1431                                                  english
## 1432                                                  english
## 1433                       english , sign language , spanish 
## 1434                                                  english
## 1435                                       english , spanish 
## 1436                                        english, chinese 
## 1437                                                 english 
## 1438                                                  english
## 1439                                                  english
## 1440                                                  english
## 1441                                                  english
## 1442                                         english, french 
## 1443                                                  english
## 1444                                       english , spanish 
## 1445                                                  english
## 1446                                                 english 
## 1447                                                 english 
## 1448                                                  english
## 1449                            english , tagalog , japanese 
## 1450                                       english , spanish 
## 1451                                        english, spanish 
## 1452                                                 english 
## 1453                                        english , french 
## 1454                                                  english
## 1455                                        english , spanish
## 1456                                        english , hebrew 
## 1457                              english , spanish , french 
## 1458                                                  english
## 1459                                      english , japanese 
## 1460                                                  english
## 1461                                                 english 
## 1462                                                  english
## 1463                                                  english
## 1464                                         english, spanish
## 1465                                       english , spanish 
## 1466                                        english , german 
## 1467                                                 english 
## 1468                             english , japanese , german 
## 1469                                       english , spanish 
## 1470                                         english, english
## 1471                                                  english
## 1472                                                 english 
## 1473                                                  english
## 1474                                       english , spanish 
## 1475                                                  english
## 1476                    english , spanish , dutch , japanese 
## 1477                                                  english
## 1478                      english, bengali , hindi , spanish 
## 1479                                                  english
## 1480                                        english , german 
## 1481                                        english, spanish 
## 1482                                                  english
## 1483                                        english, tagalog 
## 1484                          english , portuguese , spanish 
## 1485                                    english , vietnamese 
## 1486                                         english, spanish
## 1487                                       english , chinese 
## 1488                                                  english
## 1489                                                  english
## 1490                                       english , chinese 
## 1491                                                  english
## 1492                                                 english 
## 1493                                                  english
## 1494                                                  english
## 1495                                        english, spanish 
## 1496                              english , spanish , french 
## 1497                                 english , italian , c++ 
## 1498                                        english , french 
## 1499                                                 english 
## 1500                                                 english 
## 1501                                                  english
## 1502                                       english , spanish 
## 1503                                                  english
## 1504                                                  english
## 1505                                                  english
## 1506                     english , thai , spanish , japanese 
## 1507                                                  english
## 1508                                                 english 
## 1509                                                 english 
## 1510                                       english , chinese 
## 1511                                                  english
## 1512                                       english , spanish 
## 1513                                                 english 
## 1514                                  english , arabic , c++ 
## 1515                                                  english
## 1516                                english , french , latin 
## 1517                                                  english
## 1518                                                 english 
## 1519                                                  english
## 1520                                      english , sanskrit 
## 1521                                       english , chinese 
## 1522                     english, spanish , chinese , arabic 
## 1523                                                  english
## 1524                              english , hebrew , chinese 
## 1525                     english , spanish , french , german 
## 1526                english , farsi , bengali , hindi , urdu 
## 1527                                             english, c++
## 1528                              english , swedish , french 
## 1529                                                  english
## 1530                                        english , french 
## 1531                      english , spanish , dutch , german 
## 1532                                 english, japanese , c++ 
## 1533                                                  english
## 1534                                       english , spanish 
## 1535                                                 english 
## 1536                                                 english 
## 1537                                       english , italian 
## 1538                                                 english 
## 1539                                                  english
## 1540                                                  english
## 1541                                                  english
## 1542                       english , chinese , spanish , c++ 
## 1543                                                 english 
## 1544                                                  english
## 1545                                       english , spanish 
## 1546                        english , hebrew , sign language 
## 1547                                                  english
## 1548                               english , spanish , hindi 
## 1549                                                 english 
## 1550                                                  english
## 1551                                                  english
## 1552                                                  english
## 1553                     english , spanish , danish , hebrew 
## 1554                                        english , french 
## 1555                                                  english
## 1556             english , hebrew , spanish , french, italian
## 1557                                                 english 
## 1558                                                  english
## 1559                                                  english
## 1560                                                  english
## 1561                                english , spanish , lisp 
## 1562                                                  english
## 1563                                       english , spanish 
## 1564                                        english , german 
## 1565                                        english, spanish 
## 1566                                                  english
## 1567                             english, spanish , japanese 
## 1568                              english , spanish , french 
## 1569                                       english , spanish 
## 1570                                        english , hebrew 
## 1571                                                  english
## 1572            english , hungarian , spanish , french , c++ 
## 1573                                       english , english 
## 1574                                        english, spanish 
## 1575                     english , spanish , turkish , other 
## 1576                                                  english
## 1577                                       english , spanish 
## 1578                                         english, spanish
## 1579                                         english, french 
## 1580                                                  english
## 1581                       english , sign language , spanish 
## 1582                                                  english
## 1583                                                  english
## 1584                                                 english 
## 1585                                                  english
## 1586                                                  english
## 1587                                                  english
## 1588                                                  english
## 1589                                                  english
## 1590         english, portuguese , french , german , spanish 
## 1591                                                  english
## 1592                                                 english 
## 1593                                                 english 
## 1594                                                  english
## 1595                                           english , c++ 
## 1596                                english , thai , spanish 
## 1597                                                  english
## 1598                                                  english
## 1599                 english , french , hebrew , latin , c++ 
## 1600                                                  english
## 1601                             english , french , japanese 
## 1602                                                  english
## 1603                                                  english
## 1604                                english, czech , spanish 
## 1605                              english , french , spanish 
## 1606                                           english, other
## 1607                              english , spanish , french 
## 1608                                                  english
## 1609                                                 english 
## 1610                                                  english
## 1611                                                  english
## 1612                                        english , german 
## 1613                             english , spanish , russian 
## 1614                                        english , german 
## 1615                                       english , spanish 
## 1616                                       english , spanish 
## 1617                                          english , lisp 
## 1618                                           english , c++ 
## 1619                                       english , tagalog 
## 1620                                                  english
## 1621                                       english , spanish 
## 1622                                                  english
## 1623                                                 english 
## 1624                 english , hindi , tamil , other , other 
## 1625                                                  english
## 1626                              english , french , persian 
## 1627                                     english , afrikaans 
## 1628                                       english , tagalog 
## 1629                              english , french , chinese 
## 1630                              english, spanish , italian 
## 1631                                    english , indonesian 
## 1632                              english , turkish , arabic 
## 1633                                                 english 
## 1634                                       english , spanish 
## 1635                                                  english
## 1636                                       english , spanish 
## 1637                                                 english 
## 1638                                                  english
## 1639                                                  english
## 1640                                                  english
## 1641                                 english , spanish , c++ 
## 1642                                       english , spanish 
## 1643                                                  english
## 1644                                                 english 
## 1645                                                  english
## 1646                                  english, italian , c++ 
## 1647                                                  english
## 1648                              english , french , spanish 
## 1649                                                  english
## 1650           english , hindi , bengali , french , japanese 
## 1651                english , spanish , indonesian , chinese 
## 1652            english, irish, portuguese, spanish , french 
## 1653                                 english , sign language 
## 1654                               english , hebrew , french 
## 1655                                                  english
## 1656                    english , spanish , italian , german 
## 1657                                                  english
## 1658                                                  english
## 1659                                        english , french 
## 1660                               english , hindi , spanish 
## 1661                                                  english
## 1662                                         english , hindi 
## 1663                                                  english
## 1664                                        english , french 
## 1665                                                     <NA>
## 1666                                       english , tagalog 
## 1667                                english , urdu , spanish 
## 1668                                        english, chinese 
## 1669                                                 english 
## 1670                english, german, spanish, french, russian
## 1671                                                 english 
## 1672                                                 english 
## 1673                                       english , chinese 
## 1674                                                  english
## 1675                                                  english
## 1676                                 english , hindi , tamil 
## 1677                                english, spanish , hindi 
## 1678                                         english , other 
## 1679                                                  english
## 1680                                         english , greek 
## 1681                                                 english 
## 1682                    english , romanian , french , german 
## 1683                                                 english 
## 1684                    english , chinese , german , spanish 
## 1685                                                  english
## 1686                                                  english
## 1687                                 english , sign language 
## 1688              english , spanish , sign language , polish 
## 1689                                                  english
## 1690                          english , vietnamese , swahili 
## 1691                                                  english
## 1692                                                  english
## 1693                                                  english
## 1694                                                  english
## 1695                                                  english
## 1696                                                  english
## 1697                                                 english 
## 1698                                       english , spanish 
## 1699                                                  english
## 1700                                                  english
## 1701                                       english , spanish 
## 1702                                        english , french 
## 1703                                                  english
## 1704                               english, french , italian 
## 1705                                                  english
## 1706                                                 english 
## 1707                                                  english
## 1708                                                  english
## 1709                                                  english
## 1710                       english , tagalog , sign language 
## 1711                                         english, spanish
## 1712                                       english , spanish 
## 1713                              english , italian , french 
## 1714                              english , french , spanish 
## 1715                                       english , spanish 
## 1716                              english , finnish , french 
## 1717                                       english , spanish 
## 1718                                                  english
## 1719                      english , japanese , spanish , c++ 
## 1720                                                  english
## 1721                 english , hebrew , spanish , portuguese 
## 1722                                                  english
## 1723                                       english , chinese 
## 1724                               english, french , spanish 
## 1725                                                  english
## 1726                                                  english
## 1727                                         english, italian
## 1728                                                  english
## 1729                                         english , hindi 
## 1730                                  english, german, french
## 1731                                                  english
## 1732                                                  english
## 1733                                                 english 
## 1734                                        english , french 
## 1735                            english, spanish, portuguese 
## 1736                                        english , french 
## 1737                                                  english
## 1738                                english, english, spanish
## 1739                                        english, spanish 
## 1740                                                  english
## 1741                                                  english
## 1742                                                 english 
## 1743                                                  english
## 1744                              english , french , italian 
## 1745                      english , spanish , greek , french 
## 1746                                        english, italian 
## 1747                                                 english 
## 1748                               english, english , french 
## 1749                              english , spanish , german 
## 1750                              english , hebrew , spanish 
## 1751                               english , spanish , latin 
## 1752                                       english , spanish 
## 1753                              english , german , spanish 
## 1754                             english , chinese , spanish 
## 1755                                        english, spanish 
## 1756                                                     <NA>
## 1757                                                  english
## 1758                        english , spanish , german , c++ 
## 1759                                                 english 
## 1760                                                  english
## 1761             english , spanish , german , french , other 
## 1762                              english , chinese , french 
## 1763                                    english , c++ , lisp 
## 1764                                                 english 
## 1765                                                  english
## 1766                                                 english 
## 1767                        english, bulgarian, german, greek
## 1768                                        english , korean 
## 1769                                                  english
## 1770                     english, hindi, urdu, french, hebrew
## 1771                                                  english
## 1772                                                  english
## 1773                                       english , chinese 
## 1774                                                 english 
## 1775                                                  english
## 1776                                                  english
## 1777                                      english , japanese 
## 1778                                 english, lisp , spanish 
## 1779                                                 english 
## 1780                                                  english
## 1781                                       english , spanish 
## 1782                                         english, chinese
## 1783                                        english , german 
## 1784                             english , german , japanese 
## 1785                                        english, english 
## 1786                                                 english 
## 1787                                  english, french, arabic
## 1788                                      english , japanese 
## 1789                                                 english 
## 1790              english , french , sign language , spanish 
## 1791                                                  english
## 1792                                        english , german 
## 1793                            english , japanese , spanish 
## 1794                                                  english
## 1795                                english, spanish , other 
## 1796                                                  english
## 1797                              english , spanish , french 
## 1798                      english , chinese , japanese , c++ 
## 1799                               english , chinese , latin 
## 1800                           english , french , c++ , lisp 
## 1801                                                  english
## 1802                                        english , french 
## 1803                                                  english
## 1804                                english, spanish, french 
## 1805                                                  english
## 1806                                       english , spanish 
## 1807                                       english , swedish 
## 1808                                                 english 
## 1809                                                  english
## 1810                                                  english
## 1811                                                 english 
## 1812                                                  english
## 1813                                                  english
## 1814                                        english , french 
## 1815                                                 english 
## 1816                                       english , spanish 
## 1817                                                 english 
## 1818                                                  english
## 1819                                       english , italian 
## 1820                              english , french , italian 
## 1821                                                  english
## 1822                                                 english 
## 1823                                       english , chinese 
## 1824                                                  english
## 1825                                          english, french
## 1826                                        english , french 
## 1827                                        english, spanish 
## 1828                                        english, spanish 
## 1829                                                  english
## 1830                                                  english
## 1831                                         english, spanish
## 1832                                       english , spanish 
## 1833                                       english , chinese 
## 1834                                                  english
## 1835                                                 english 
## 1836          english , spanish , french , german , japanese 
## 1837                                       english , spanish 
## 1838                                                  english
## 1839                                       english , spanish 
## 1840                                                  english
## 1841                                        english, russian 
## 1842                              english, italian , spanish 
## 1843                                                  english
## 1844                                         english, french 
## 1845                                                  english
## 1846                                                  english
## 1847                                       english , spanish 
## 1848                           english , french , portuguese 
## 1849                                         english, french 
## 1850                               english , hindi , spanish 
## 1851                                         english , hindi 
## 1852                            english, spanish , icelandic 
## 1853                                       english , spanish 
## 1854                                       english , spanish 
## 1855                                       english , italian 
## 1856                                       english , spanish 
## 1857                                                 english 
## 1858                                                  english
## 1859                             english , italian , persian 
## 1860                                                  english
## 1861                                    english , vietnamese 
## 1862                                                 english 
## 1863                                       english , chinese 
## 1864                                                  english
## 1865                                                 english 
## 1866                                english , greek , german 
## 1867                                        english , french 
## 1868                                         english, tagalog
## 1869                      english, korean , hawaiian , other 
## 1870                                                  english
## 1871                                        english , french 
## 1872                                                  english
## 1873                                                  english
## 1874                                                  english
## 1875                                                  english
## 1876                                        english , german 
## 1877                                                  english
## 1878                                                 english 
## 1879                 english , tamil , spanish , c++ , hindi 
## 1880                                                  english
## 1881                                                  english
## 1882                                                  english
## 1883                                 english , ancient greek 
## 1884                                        english , german 
## 1885                                                  english
## 1886                                                  english
## 1887                                                  english
## 1888                                                  english
## 1889                        english , sign language , french 
## 1890                                                  english
## 1891                                                  english
## 1892                                                  english
## 1893                              english , arabic , spanish 
## 1894                                        english , french 
## 1895                                        english, chinese 
## 1896                                       english , spanish 
## 1897                                                  english
## 1898                                        english, spanish 
## 1899                                       english , spanish 
## 1900                                                  english
## 1901                                                  english
## 1902                                english , hindi , french 
## 1903   english , spanish , romanian , german , sign language 
## 1904                                                 english 
## 1905                                       english , spanish 
## 1906                                                 english 
## 1907                                                  english
## 1908                                         english, french 
## 1909                             english , french , japanese 
## 1910                                       english , spanish 
## 1911                                        english, italian 
## 1912                                                  english
## 1913                                                  english
## 1914                                                  english
## 1915                                                  english
## 1916                    english , hebrew , yiddish , spanish 
## 1917                                                 english 
## 1918                               english , spanish , hindi 
## 1919                                                  english
## 1920                          english , portuguese , spanish 
## 1921                                       english , spanish 
## 1922                                         english, spanish
## 1923                                                  english
## 1924                     english , spanish , german , french 
## 1925                                                  english
## 1926                                                  english
## 1927                                        english , french 
## 1928                               english, chinese , french 
## 1929                                    english , c++ , lisp 
## 1930                                       english , chinese 
## 1931                                           english , c++ 
## 1932                                       english , spanish 
## 1933                                       english , chinese 
## 1934                             english , spanish , chinese 
## 1935                                       english , spanish 
## 1936                              english , chinese , hebrew 
## 1937                                       english , chinese 
## 1938                      english , french , greek , serbian 
## 1939                                       english , chinese 
## 1940                                                  english
## 1941                                                  english
## 1942                                                  english
## 1943           english , spanish , hebrew , german , yiddish 
## 1944                                                 english 
## 1945                                                 english 
## 1946                                                  english
## 1947                    english , german , italian , spanish 
## 1948                              english , spanish , hebrew 
## 1949                                                  english
## 1950                                                 english 
## 1951                                                 english 
## 1952                          english , chinese , vietnamese 
## 1953                                 english, spanish, french
## 1954                                                 english 
## 1955                                                  english
## 1956                                        english , korean 
## 1957                                       english , spanish 
## 1958                       english , german , khmer , korean 
## 1959                                       english , chinese 
## 1960                                                  english
## 1961                                                  english
## 1962                                                  english
## 1963                                       english , chinese 
## 1964                                                 english 
## 1965                              english , french , spanish 
## 1966                                                  english
## 1967                                                  english
## 1968                                       english , spanish 
## 1969                                                  english
## 1970                                                  english
## 1971                                                  english
## 1972                                        english, spanish 
## 1973                                        english , arabic 
## 1974                                                  english
## 1975            english, french , spanish , german , swedish 
## 1976                                                  english
## 1977                                         english, chinese
## 1978                                                  english
## 1979                                                  english
## 1980                                                  english
## 1981                                                  english
## 1982                                english, spanish , other 
## 1983                                                  english
## 1984                                                  english
## 1985                                                 english 
## 1986                                                  english
## 1987                                                  english
## 1988                                         english, spanish
## 1989                            english , chinese , japanese 
## 1990                                                 english 
## 1991                            english , romanian , spanish 
## 1992                                         english, turkish
## 1993                                       english , chinese 
## 1994                                                  english
## 1995                                                 english 
## 1996                                                  english
## 1997                                         english, spanish
## 1998                                        english , french 
## 1999                                                  english
## 2000                                                  english
## 2001                  english , japanese , spanish , turkish 
## 2002         english, french , ancient greek , greek , latin 
## 2003                            english , japanese , spanish 
## 2004                                       english , italian 
## 2005                        english , french , sign language 
## 2006                                       english , tagalog 
## 2007                                       english, bulgarian
## 2008                                       english , chinese 
## 2009                                                  english
## 2010                                                 english 
## 2011                                                 english 
## 2012                                        english , french 
## 2013                                                  english
## 2014                                        english , german 
## 2015                                                  english
## 2016                                                  english
## 2017                                       english , chinese 
## 2018                                                  english
## 2019                                                 english 
## 2020                                                  english
## 2021                                                  english
## 2022                                                  english
## 2023                                        english, spanish 
## 2024                                       english , spanish 
## 2025                         english , german , thai , other 
## 2026                                                  english
## 2027                                                  english
## 2028                                                  english
## 2029                                                  english
## 2030                                                  english
## 2031                                                  english
## 2032                                                  english
## 2033                                        english, chinese 
## 2034                                                 english 
## 2035                                                 english 
## 2036                                       english , spanish 
## 2037                                       english , tagalog 
## 2038                                       english , chinese 
## 2039                                                  english
## 2040                                       english , spanish 
## 2041                                        english , hebrew 
## 2042                              english , spanish , french 
## 2043            english , turkish , german , spanish , hindi 
## 2044                                                 english 
## 2045                      english , french , other , spanish 
## 2046                              english , arabic , spanish 
## 2047                          english , portuguese , spanish 
## 2048                                                 english 
## 2049                          english , sign language , lisp 
## 2050                                                  english
## 2051                                                  english
## 2052                                                 english 
## 2053                                                 english 
## 2054                                       english , spanish 
## 2055                                                  english
## 2056                                         english, spanish
## 2057                                           english, hindi
## 2058                     english , italian , spanish , other 
## 2059                                                  english
## 2060                              english , french , spanish 
## 2061                                                  english
## 2062                                         english, spanish
## 2063                     english, arabic , swahili , spanish 
## 2064                                                  english
## 2065                                                  english
## 2066                                                 english 
## 2067                                       english , spanish 
## 2068                                                  english
## 2069                                         english , hindi 
## 2070                                       english , italian 
## 2071                                                 english 
## 2072                                                  english
## 2073                                                  english
## 2074                                                  english
## 2075                                                 english 
## 2076                                           english , c++ 
## 2077                                                  english
## 2078                                                  english
## 2079                                       english , spanish 
## 2080                                       english , spanish 
## 2081                                                  english
## 2082                                                  english
## 2083                                                  english
## 2084                                                 english 
## 2085                                       english , spanish 
## 2086                                        english , french 
## 2087                               english , spanish , farsi 
## 2088                                                  english
## 2089                                       english , yiddish 
## 2090                                                  english
## 2091                                        english , french 
## 2092                             english , spanish , italian 
## 2093                                                  english
## 2094                                                  english
## 2095                                       english , spanish 
## 2096                                       english , spanish 
## 2097                              english , german , italian 
## 2098                                                  english
## 2099                                       english , chinese 
## 2100                                english, french , arabic 
## 2101                                       english , chinese 
## 2102                                        english, chinese 
## 2103                                                  english
## 2104                                       english , spanish 
## 2105                                                  english
## 2106                                       english , spanish 
## 2107                                                  english
## 2108                                       english , spanish 
## 2109                             english , spanish , italian 
## 2110                                                 english 
## 2111                                       english , english 
## 2112                                       english , swedish 
## 2113                                                  english
## 2114                                                  english
## 2115                                                  english
## 2116                      english , hindi , french , spanish 
## 2117                                       english , spanish 
## 2118                                         english , hindi 
## 2119                                        english, spanish 
## 2120                                         english, german 
## 2121                                       english , spanish 
## 2122                                                  english
## 2123                               english , german , french 
## 2124                                                 english 
## 2125                             english , japanese , arabic 
## 2126                                                  english
## 2127                                       english , spanish 
## 2128                                                  english
## 2129                                                  english
## 2130                              english, french , japanese 
## 2131                                                 english 
## 2132                                                 english 
## 2133                                                 english 
## 2134         english , spanish , japanese , hawaiian , other 
## 2135                                                  english
## 2136                           english , french , indonesian 
## 2137                                                  english
## 2138                                                  english
## 2139                                      english , japanese 
## 2140                                                 english 
## 2141                                        english, spanish 
## 2142                                                  english
## 2143                                                  english
## 2144                                                  english
## 2145                                           english, hindi
## 2146                                         english , hindi 
## 2147                       english, french , hindi , spanish 
## 2148                                       english , chinese 
## 2149                                                  english
## 2150                                       english , spanish 
## 2151                  english , japanese , spanish , chinese 
## 2152                                                  english
## 2153                                                  english
## 2154                                                  english
## 2155                                                  english
## 2156                                english , hindi , french 
## 2157                                                 english 
## 2158                                                 english 
## 2159                                       english , spanish 
## 2160                          english , spanish , portuguese 
## 2161                                        english, spanish 
## 2162                                       english , chinese 
## 2163                                 english, thai , spanish 
## 2164                                                  english
## 2165                                                  english
## 2166                                                  english
## 2167                     english, french, spanish, portuguese
## 2168                                                 english 
## 2169                                        english, russian 
## 2170                                        english , french 
## 2171                                                  english
## 2172                                         english , greek 
## 2173                                           english, czech
## 2174                                                  english
## 2175                                   english , c++ , hindi 
## 2176                     english , german , swedish , french 
## 2177                                        english , german 
## 2178                                                  english
## 2179                                                  english
## 2180                                 english , sign language 
## 2181                                       english , chinese 
## 2182                                        english, japanese
## 2183                                            english, c++ 
## 2184                                        english , chinese
## 2185                                          english, french
## 2186                             english , italian , spanish 
## 2187                                                  english
## 2188                                       english , spanish 
## 2189                             english, other, other, other
## 2190                                                 english 
## 2191                              english , spanish , french 
## 2192                                                  english
## 2193                                         english, spanish
## 2194                            english , japanese , chinese 
## 2195                                                  english
## 2196                                        english , german 
## 2197                                       english , spanish 
## 2198                                                  english
## 2199                               english , french , arabic 
## 2200                                        english , french 
## 2201                                                  english
## 2202                                          english, french
## 2203                         english, french, spanish, german
## 2204                                                 english 
## 2205                                                  english
## 2206                                                  english
## 2207                                                  english
## 2208                             english , chinese , spanish 
## 2209                                       english , chinese 
## 2210                      english , chinese , japanese , c++ 
## 2211                                                  english
## 2212                                       english , spanish 
## 2213                                                  english
## 2214                                                  english
## 2215                                        english , arabic 
## 2216                                       english , spanish 
## 2217                                                  english
## 2218                                                     <NA>
## 2219                                       english , spanish 
## 2220                                                  english
## 2221                                        english , french 
## 2222                                       english , spanish 
## 2223                                       english , spanish 
## 2224                                english, spanish, french 
## 2225                                                  english
## 2226                                       english , spanish 
## 2227                                                  english
## 2228                                                  english
## 2229          english , japanese , french , german , chinese 
## 2230                                           english, latin
## 2231                                         english, spanish
## 2232                                       english , swedish 
## 2233                               english , dutch , spanish 
## 2234                                       english , chinese 
## 2235                                       english , spanish 
## 2236                                                  english
## 2237                                       english , spanish 
## 2238                                       english , chinese 
## 2239                            english , spanish , japanese 
## 2240                           english , indonesian , french 
## 2241                                         english, russian
## 2242                                 english , spanish , c++ 
## 2243                                                  english
## 2244                                       english , spanish 
## 2245                              english , spanish , french 
## 2246                                       english , spanish 
## 2247                 english , vietnamese , spanish , korean 
## 2248                                       english , chinese 
## 2249                             english, spanish, portuguese
## 2250                                            english , c++
## 2251                                        english , german 
## 2252            english , french , romanian , hebrew , welsh 
## 2253                                                  english
## 2254                                                 english 
## 2255                                                  english
## 2256                                                  english
## 2257                                  english, arabic, hebrew
## 2258                                                 english 
## 2259                 english , french , bulgarian , japanese 
## 2260                              english, chinese , tagalog 
## 2261                                                 english 
## 2262                             english , japanese , french 
## 2263                                                 english 
## 2264                                                 english 
## 2265                                                 english 
## 2266                                       english , spanish 
## 2267                     english , french , german , spanish 
## 2268                    english , tagalog , french , spanish 
## 2269                                                  english
## 2270                                         english , french
## 2271                                                  english
## 2272                               english , french , danish 
## 2273                                                 english 
## 2274                                         english, spanish
## 2275                                          english, french
## 2276               english, german , french , lisp , yiddish 
## 2277                                                  english
## 2278                               english , french , polish 
## 2279                             english , spanish , chinese 
## 2280                                                  english
## 2281                                       english , spanish 
## 2282                                                  english
## 2283                   english , spanish , chinese , russian 
## 2284                                       english , spanish 
## 2285             english , french , italian , other , german 
## 2286                       english, irish , french , spanish 
## 2287                                                  english
## 2288                                                  english
## 2289                                         english, spanish
## 2290                                                 english 
## 2291                                                  english
## 2292                                          english, french
## 2293                             english, japanese , italian 
## 2294                         english , portuguese , japanese 
## 2295                                                  english
## 2296                                                  english
## 2297                                        english, hawaiian
## 2298                                                  english
## 2299                                       english , spanish 
## 2300                                                 english 
## 2301                        english, french , italian , thai 
## 2302                    english , spanish , french , italian 
## 2303                                         english, spanish
## 2304                    english , croatian , italian , czech 
## 2305                                                  english
## 2306                english , italian , portuguese , spanish 
## 2307                               english, spanish, italian 
## 2308                                       english , spanish 
## 2309                                       english , spanish 
## 2310                    english, spanish, portuguese, french 
## 2311                                       english , spanish 
## 2312                          english , russian , lithuanian 
## 2313                              english , spanish , french 
## 2314                                                  english
## 2315                                       english , spanish 
## 2316                                                  english
## 2317                    english, japanese , chinese , french 
## 2318                              english , spanish , hebrew 
## 2319                              english , french , italian 
## 2320                                         english, russian
## 2321                             english , chinese , spanish 
## 2322                                        english, spanish 
## 2323                                                 english 
## 2324       english , russian , estonian , ukrainian , polish 
## 2325                                                 english 
## 2326                                                  english
## 2327                                                  english
## 2328                                        english, spanish 
## 2329                     english, spanish , french , italian 
## 2330                                        english , french 
## 2331                                       english , spanish 
## 2332                                       english , spanish 
## 2333                                       english , spanish 
## 2334                                       english , spanish 
## 2335                                                  english
## 2336                                                  english
## 2337                                       english , russian 
## 2338                                       english , spanish 
## 2339                                       english , spanish 
## 2340                                       english , chinese 
## 2341                                         english, russian
## 2342                                                  english
## 2343                                       english , spanish 
## 2344                                                  english
## 2345                                english, spanish , latin 
## 2346                                                  english
## 2347                            english , spanish , japanese 
## 2348                                                  english
## 2349                                                  english
## 2350                                                  english
## 2351                    english , spanish , italian , french 
## 2352           english, spanish , swedish , chinese , french 
## 2353                                                  english
## 2354                                        english , german 
## 2355          english , german , spanish , russian , italian 
## 2356                                                 english 
## 2357                             english , russian , italian 
## 2358                                                  english
## 2359                                        english , french 
## 2360                              english , hebrew , spanish 
## 2361                                         english, russian
## 2362                                       english , spanish 
## 2363                                                  english
## 2364                                                  english
## 2365                                       english , spanish 
## 2366                                    english , indonesian 
## 2367                                        english, spanish 
## 2368                                        english , french 
## 2369      english, spanish , japanese , russian , vietnamese 
## 2370                               english , french , german 
## 2371                                       english , english 
## 2372                                                  english
## 2373                                                  english
## 2374                  english, spanish , portuguese , french 
## 2375                              english , german , spanish 
## 2376                                                  english
## 2377                                                  english
## 2378                                       english , italian 
## 2379                      english, italian , spanish , greek 
## 2380                                                  english
## 2381                               english, spanish , french 
## 2382                      english , french , spanish , other 
## 2383                                                  english
## 2384                                                  english
## 2385                                                  english
## 2386                              english , russian , french 
## 2387                                       english , spanish 
## 2388                              english , french , spanish 
## 2389                                                  english
## 2390                                                  english
## 2391                                       english , spanish 
## 2392                                         english, spanish
## 2393                                                  english
## 2394                                                  english
## 2395                                        english, spanish 
## 2396                   english , spanish , korean , japanese 
## 2397                              english , russian , french 
## 2398                                       english , russian 
## 2399                                       english , russian 
## 2400                                                  english
## 2401                                                 english 
## 2402       english , russian , ukrainian , spanish , italian 
## 2403                                 english , spanish , c++ 
## 2404                              english , spanish , french 
## 2405                                                  english
## 2406                                      english , japanese 
## 2407                              english , spanish , french 
## 2408                                 english, greek , german 
## 2409                          english , spanish , portuguese 
## 2410                       english , spanish , sign language 
## 2411                                       english , spanish 
## 2412                                                  english
## 2413                                                  english
## 2414                                  english , french , c++ 
## 2415                                                 english 
## 2416                                      english , japanese 
## 2417                                       english , spanish 
## 2418                          english , portuguese , spanish 
## 2419                     english , german , french , spanish 
## 2420                                                  english
## 2421                                                  english
## 2422                                       english , spanish 
## 2423                                         english, spanish
## 2424                                  english, german, french
## 2425                                                  english
## 2426                                      english , japanese 
## 2427                 english , spanish , portuguese , french 
## 2428                                         english, spanish
## 2429                                english, spanish, hebrew 
## 2430                                                 english 
## 2431                                       english , russian 
## 2432                                                  english
## 2433                                                  english
## 2434                                        english , german 
## 2435                              english , russian , french 
## 2436                           english , spanish, portuguese 
## 2437                                        english, spanish 
## 2438                                                  english
## 2439                                       english , russian 
## 2440                                       english , italian 
## 2441                                       english , spanish 
## 2442                                                  english
## 2443                                english, hindi , spanish 
## 2444                                                  english
## 2445                                                  english
## 2446                                     english , lithuanian
## 2447                                        english , french 
## 2448                                 english , ancient greek 
## 2449                                                  english
## 2450                                        english , french 
## 2451                                                  english
## 2452                             english , russian , spanish 
## 2453                                                  english
## 2454                                                  english
## 2455                                       english , chinese 
## 2456                                                  english
## 2457                                                  english
## 2458           english , french , german , spanish , swedish 
## 2459                                                  english
## 2460                                        english , german 
## 2461                                       english , spanish 
## 2462                                        english , arabic 
## 2463                                         english, french 
## 2464                                                  english
## 2465                                                  english
## 2466                                      english , japanese 
## 2467                               english , chinese , malay 
## 2468                              english , spanish , french 
## 2469                                                  english
## 2470                                       english , spanish 
## 2471                                        english , french 
## 2472                                                  english
## 2473                                       english , spanish 
## 2474                                                 english 
## 2475                         english , spanish , french , c++
## 2476                                       english , spanish 
## 2477                                                  english
## 2478                                         english, spanish
## 2479                                                  english
## 2480                                                  english
## 2481                             english , spanish , italian 
## 2482                                        english , french 
## 2483                                        english , french 
## 2484                    english , spanish , italian , french 
## 2485                              english , farsi , japanese 
## 2486                               english , farsi , spanish 
## 2487                                                  english
## 2488                                                  english
## 2489                                                  english
## 2490        english , vietnamese , german , hebrew , spanish 
## 2491                                                  english
## 2492                                        english , french 
## 2493                              english , arabic , spanish 
## 2494                                                  english
## 2495                                                 english 
## 2496                                        english, spanish 
## 2497                                        english, chinese 
## 2498                              english , french , russian 
## 2499                                        english , french 
## 2500                                                 english 
## 2501                                                  english
## 2502                                                  english
## 2503                                                  english
## 2504                                                 english 
## 2505                                        english , german 
## 2506                       english, hindi , french , spanish 
## 2507                                         english, serbian
## 2508                                        english, chinese 
## 2509                                         english, chinese
## 2510                                                  english
## 2511                                                  english
## 2512                                                  english
## 2513                                                  english
## 2514                               english , french , hebrew 
## 2515                                                  english
## 2516                                       english , spanish 
## 2517                                                  english
## 2518                                        english , french 
## 2519                                       english , spanish 
## 2520                                                 english 
## 2521                                                  english
## 2522                                         english , other 
## 2523                                                  english
## 2524                                        english, spanish 
## 2525                                                  english
## 2526                                                  english
## 2527                                                  english
## 2528                         english , farsi , spanish , c++ 
## 2529                                                  english
## 2530                                                  english
## 2531               english , farsi , chinese , arabic , thai 
## 2532                                        english , hebrew 
## 2533                                                  english
## 2534                                                  english
## 2535                                        english, spanish 
## 2536                                                 english 
## 2537                                                  english
## 2538                                                  english
## 2539                                        english, russian 
## 2540                                   english, sign language
## 2541                                       english , english 
## 2542                                       english , spanish 
## 2543                                        english, spanish 
## 2544                                        english, spanish 
## 2545                                                  english
## 2546                               english, spanish , french 
## 2547                                                 english 
## 2548                                        english , french 
## 2549                              english , spanish , french 
## 2550                                                  english
## 2551               english, german, russian, greek, bulgarian
## 2552                                                  english
## 2553                                                  english
## 2554                                                 english 
## 2555                               english, chinese , korean 
## 2556                                       english , spanish 
## 2557                                                  english
## 2558                                       english , spanish 
## 2559                                          english, french
## 2560                                                  english
## 2561                                                  english
## 2562                                                 english 
## 2563                              english , french , italian 
## 2564                              english , french , spanish 
## 2565                                        english , french 
## 2566                                         english, french 
## 2567                     english , russian , french , german 
## 2568                                      english , japanese 
## 2569                                                  english
## 2570                                                  english
## 2571                                       english , spanish 
## 2572                                                  english
## 2573                                                 english 
## 2574                               english, spanish , hebrew 
## 2575                                       english , chinese 
## 2576                                                 english 
## 2577                                                  english
## 2578                                                  english
## 2579                                          english, arabic
## 2580                                                  english
## 2581                                                  english
## 2582                                       english , spanish 
## 2583                                       english , chinese 
## 2584                               english , french , arabic 
## 2585                                       english , tagalog 
## 2586                                                  english
## 2587                                                  english
## 2588                                        english, spanish 
## 2589                             english , cebuano , spanish 
## 2590                                       english , russian 
## 2591                                                 english 
## 2592                                       english , spanish 
## 2593                                          english, french
## 2594                                                  english
## 2595                                                 english 
## 2596                                                  english
## 2597                                         english, chinese
## 2598                                                  english
## 2599                                                  english
## 2600                                                  english
## 2601                              english , french , spanish 
## 2602                                                 english 
## 2603   english , french , yiddish , hawaiian , ancient greek 
## 2604                              english , french , spanish 
## 2605                                                  english
## 2606                                       english , chinese 
## 2607                                                  english
## 2608                                                  english
## 2609                                                 english 
## 2610                                                  english
## 2611                                                  english
## 2612                                       english , italian 
## 2613                               english, spanish , french 
## 2614                                                  english
## 2615                               english , spanish , other 
## 2616                                       english , chinese 
## 2617                                                 english 
## 2618                                                  english
## 2619                                        english , german 
## 2620                                                 english 
## 2621                                                  english
## 2622                         english , tamil , hindi , malay 
## 2623                                                  english
## 2624                                       english , chinese 
## 2625                                         english, chinese
## 2626                                                 english 
## 2627                                 english, spanish , other
## 2628               english , german , latin , japanese , c++ 
## 2629                                       english , chinese 
## 2630                                        english , french 
## 2631                                       english , spanish 
## 2632                                                  english
## 2633                                                 english 
## 2634                                                  english
## 2635                                                  english
## 2636                                         english, russian
## 2637                                       english , spanish 
## 2638                                        english , french 
## 2639                                                  english
## 2640                                       english , spanish 
## 2641                                                  english
## 2642                                                 english 
## 2643                                                 english 
## 2644                                                  english
## 2645                                                  english
## 2646                                                 english 
## 2647                              english , spanish , french 
## 2648                                       english , spanish 
## 2649                                                  english
## 2650                                                  english
## 2651                                                  english
## 2652                                                  english
## 2653                            english , japanese , spanish 
## 2654                                       english , spanish 
## 2655                                                  english
## 2656                                                  english
## 2657                                                  english
## 2658                                                  english
## 2659                                                 english 
## 2660                                         english, french 
## 2661                                                 english 
## 2662                                       english , spanish 
## 2663          english , french , spanish , italian , russian 
## 2664                                                 english 
## 2665                                                  english
## 2666                                        english, spanish 
## 2667                                         english, french 
## 2668                              english , spanish , french 
## 2669                                       english , spanish 
## 2670                              english , spanish , french 
## 2671                                       english , spanish 
## 2672                                                  english
## 2673                              english , french , spanish 
## 2674                              english , korean , spanish 
## 2675                                       english , italian 
## 2676        english , italian , russian , hungarian , french 
## 2677                                                  english
## 2678                                       english , hawaiian
## 2679                                                  english
## 2680                                         english, french 
## 2681                                                  english
## 2682                                                  english
## 2683                                                  english
## 2684                    english , spanish , french , catalan 
## 2685                              english , spanish , french 
## 2686                                                  english
## 2687                          english , portuguese , spanish 
## 2688                                                  english
## 2689                                       english , chinese 
## 2690                                                  english
## 2691                                                  english
## 2692                              english , spanish , french 
## 2693                                                 english 
## 2694                    english , russian , spanish , french 
## 2695                                       english , spanish 
## 2696                                                  english
## 2697                                                 english 
## 2698                                                  english
## 2699                                       english , spanish 
## 2700                             english , spanish , italian 
## 2701                                         english, spanish
## 2702                                                 english 
## 2703                                                 english 
## 2704         english , romanian , russian , spanish , german 
## 2705                                                  english
## 2706                              english, italian , spanish 
## 2707                                                 english 
## 2708                                                 english 
## 2709                                                  english
## 2710                                                  english
## 2711                                                  english
## 2712                              english , spanish , french 
## 2713                                                  english
## 2714                                                 english 
## 2715                                       english , spanish 
## 2716                             english , chinese , spanish 
## 2717                                                  english
## 2718                                                  english
## 2719                                                  english
## 2720                                                  english
## 2721                                                  english
## 2722                                                 english 
## 2723            english, portuguese, spanish, french, swedish
## 2724                                                 english 
## 2725                 english , chinese , hawaiian , japanese 
## 2726                                                  english
## 2727                                                  english
## 2728                                   english, french, greek
## 2729                                                 english 
## 2730                                                  english
## 2731                                                 english 
## 2732                                 english , chinese , c++ 
## 2733                                       english , spanish 
## 2734                          english, german , c++, swedish 
## 2735                                                  english
## 2736                                       english, japanese 
## 2737                                                 english 
## 2738                                       english , chinese 
## 2739                                                  english
## 2740                                                  english
## 2741                                       english , italian 
## 2742                                 english, japanese, other
## 2743                                        english, spanish 
## 2744                                                 english 
## 2745                                                  english
## 2746                                                 english 
## 2747                                                  english
## 2748                                       english , chinese 
## 2749          english , english , catalan , french , spanish 
## 2750                                                  english
## 2751                                                  english
## 2752                                                 english 
## 2753           english, chinese , spanish , japanese , other 
## 2754                                                  english
## 2755                       english , hindi , korean , german 
## 2756                               english , hebrew , french 
## 2757                                       english , swedish 
## 2758                                                  english
## 2759                    english, spanish, japanese , italian 
## 2760                              english , hebrew , spanish 
## 2761                             english , spanish , italian 
## 2762                                                  english
## 2763                              english , spanish , french 
## 2764                                                 english 
## 2765                                      english , japanese 
## 2766                                                     <NA>
## 2767                                                  english
## 2768                                                  english
## 2769                                        english , french 
## 2770                          english, french, chinese, latin
## 2771                                           english , c++ 
## 2772                                           english , c++ 
## 2773                              english , spanish , ilongo 
## 2774                                                  english
## 2775                                                  english
## 2776                                       english , spanish 
## 2777                                       english , spanish 
## 2778                       english , italian , german , thai 
## 2779                                english, chinese, spanish
## 2780                                                  english
## 2781                                      english , japanese 
## 2782                                                  english
## 2783                                                  english
## 2784                                                  english
## 2785        english , french , spanish , bulgarian , swahili 
## 2786                                       english , spanish 
## 2787                                       english , spanish 
## 2788                                       english , chinese 
## 2789                                         english, german 
## 2790                                        english , french 
## 2791                                        english , french 
## 2792                                       english , spanish 
## 2793                                       english , spanish 
## 2794                                                  english
## 2795                                                  english
## 2796                                                  english
## 2797                                       english , spanish 
## 2798                               english, german , finnish 
## 2799                                                  english
## 2800                                       english , spanish 
## 2801                                                 english 
## 2802                                    english , vietnamese 
## 2803                                                  english
## 2804                    english , russian , french , spanish 
## 2805                          english , spanish , portuguese 
## 2806                        english , farsi , french , other 
## 2807                english , other , tamil , hindi , arabic 
## 2808                                                  english
## 2809                                       english , spanish 
## 2810                                                 english 
## 2811                                      english, portuguese
## 2812                                        english, chinese 
## 2813                                       english , russian 
## 2814                                                 english 
## 2815                                                  english
## 2816                     english , french , arabic , spanish 
## 2817                           english, indonesian , spanish 
## 2818                                        english, spanish 
## 2819                                                  english
## 2820                                  english , c++ , french 
## 2821                                                  english
## 2822                                          english, french
## 2823                                         english , hindi 
## 2824                                                  english
## 2825                          english , spanish , portuguese 
## 2826                                                  english
## 2827                                                  english
## 2828       english , italian , spanish , portuguese , french 
## 2829                                                  english
## 2830                                                  english
## 2831                                        english, spanish 
## 2832                                                  english
## 2833                   english , swedish , turkish , italian 
## 2834                              english , russian , french 
## 2835                          english , spanish , portuguese 
## 2836                                                  english
## 2837                                                  english
## 2838                                                 english 
## 2839                                       english , spanish 
## 2840                                                  english
## 2841                                                  english
## 2842                                                 english 
## 2843                                         english, spanish
## 2844                              english , spanish , french 
## 2845                               english, hebrew , russian 
## 2846                                                 english 
## 2847                                english, farsi , spanish 
## 2848                                                  english
## 2849                              english , spanish , french 
## 2850                                                  english
## 2851                                                  english
## 2852                      english, other , swedish , spanish 
## 2853                               english , german , french 
## 2854                                                  english
## 2855                                                  english
## 2856                                                  english
## 2857                                                  english
## 2858                                                  english
## 2859                                                  english
## 2860                                       english , russian 
## 2861                              english , arabic , spanish 
## 2862                                english, italian, spanish
## 2863                                        english, spanish 
## 2864                                                  english
## 2865                                                  english
## 2866                                                  english
## 2867                                 english, french, russian
## 2868                                                 english 
## 2869                                english, spanish, french 
## 2870                                                  english
## 2871                                       english , spanish 
## 2872                                       english , spanish 
## 2873                                                 english 
## 2874                              english , chinese , french 
## 2875                          english , spanish , portuguese 
## 2876                                                  english
## 2877                              english , chinese , french 
## 2878                                                  english
## 2879                                                 english 
## 2880                                                 english 
## 2881                                       english , chinese 
## 2882                                                  english
## 2883                                       english , spanish 
## 2884                                       english , spanish 
## 2885                                                  english
## 2886                                                 english 
## 2887                                        english , french 
## 2888                              english , french , italian 
## 2889                                        english, spanish 
## 2890                              english , french , spanish 
## 2891                                                 english 
## 2892                                        english, spanish 
## 2893                                                  english
## 2894                                                  english
## 2895                                        english , german 
## 2896                                       english , spanish 
## 2897                                                  english
## 2898                                 english , hindi , other 
## 2899                     english , french , spanish , german 
## 2900                                       english , spanish 
## 2901                                       english , spanish 
## 2902                                                  english
## 2903                                                  english
## 2904                                                  english
## 2905                                                  english
## 2906                                                 english 
## 2907                                                  english
## 2908                                                  english
## 2909                                                  english
## 2910                              english , chinese , german 
## 2911                                                  english
## 2912                                                  english
## 2913                                                  english
## 2914                                                  english
## 2915                                                 english 
## 2916                                                 english 
## 2917                                                 english 
## 2918                                                  english
## 2919                                        english , french 
## 2920                                                  english
## 2921                                                  english
## 2922                                                  english
## 2923                                                  english
## 2924                       english , italian , sign language 
## 2925                                       english , chinese 
## 2926                                                 english 
## 2927                                                 english 
## 2928     english, swahili , hebrew , sign language , spanish 
## 2929                               english , arabic , french 
## 2930                                                  english
## 2931                                                  english
## 2932                              english , vietnamese , c++ 
## 2933                                                  english
## 2934                                 english , french, german
## 2935                                                  english
## 2936                              english, french , japanese 
## 2937                               english, croatian, serbian
## 2938                               english, russian , french 
## 2939                                                  english
## 2940                                         english, german 
## 2941                                                 english 
## 2942                                                  english
## 2943                                                  english
## 2944                                                  english
## 2945                               english, spanish , french 
## 2946                                       english , spanish 
## 2947                          english , chinese , lisp , c++ 
## 2948                                        english, spanish 
## 2949                                       english , spanish 
## 2950                                    english , vietnamese 
## 2951                                       english , chinese 
## 2952                                                  english
## 2953                                                  english
## 2954                                                  english
## 2955                                                 english 
## 2956                                        english, english 
## 2957                                                  english
## 2958                             english, spanish, portuguese
## 2959                                          english , thai 
## 2960                                       english , spanish 
## 2961                                       english , yiddish 
## 2962                       english , spanish , sign language 
## 2963                                        english , german 
## 2964                                                  english
## 2965                                                 english 
## 2966                                                  english
## 2967                                        english, spanish 
## 2968                                                  english
## 2969                                         english, spanish
## 2970                                                 english 
## 2971                                        english, spanish 
## 2972                                        english , polish 
## 2973                                                  english
## 2974                               english , french , hebrew 
## 2975                                                  english
## 2976                                       english , spanish 
## 2977                                 english , chinese , c++ 
## 2978                                                  english
## 2979                                       english , spanish 
## 2980                              english , spanish , french 
## 2981                        english, italian , sign language 
## 2982                              english, japanese , french 
## 2983                                       english , chinese 
## 2984                                       english , spanish 
## 2985                                                  english
## 2986                                                 english 
## 2987                                        english, chinese 
## 2988                                       english , spanish 
## 2989                                                  english
## 2990                              english , french , spanish 
## 2991                                                  english
## 2992                                          english, other 
## 2993                                                 english 
## 2994                                                  english
## 2995                                       english , spanish 
## 2996                              english , french , spanish 
## 2997                                        english , french 
## 2998                             english , german , japanese 
## 2999                                                  english
## 3000                                       english , spanish 
## 3001                                         english, spanish
## 3002                                       english , spanish 
## 3003                                        english , french 
## 3004                                                 english 
## 3005                    english , italian , french , spanish 
## 3006                             english, spanish , japanese 
## 3007                                                  english
## 3008                                                  english
## 3009                                        english , french 
## 3010                                         english, spanish
## 3011                                       english , chinese 
## 3012                                                  english
## 3013                                 english , sign language 
## 3014                              english , spanish , french 
## 3015                                                 english 
## 3016                                       english , spanish 
## 3017                                                 english 
## 3018                                                  english
## 3019                                          english , thai 
## 3020                              english , french , spanish 
## 3021                                                  english
## 3022                                english, chinese, spanish
## 3023                                                  english
## 3024                                       english , spanish 
## 3025                                                  english
## 3026                                                  english
## 3027                                                 english 
## 3028               english , japanese , spanish , portuguese 
## 3029                          english , french , c++ , hindi 
## 3030                                       english , spanish 
## 3031                                                  english
## 3032                                                  english
## 3033                                                  english
## 3034                                                 english 
## 3035                                        english , hebrew 
## 3036                                                  english
## 3037           english , portuguese , hindi , urdu , spanish 
## 3038                                         english, spanish
## 3039                                                 english 
## 3040                                                  english
## 3041                                                  english
## 3042                             english , italian , spanish 
## 3043                                                 english 
## 3044                                         english, spanish
## 3045                                                  english
## 3046                                        english, japanese
## 3047                                                 english 
## 3048                              english , spanish , french 
## 3049                              english, tagalog , spanish 
## 3050                                         english , farsi 
## 3051                                                  english
## 3052                         english , persian , c++ , malay 
## 3053                               english , arabic , french 
## 3054                         english , portuguese , japanese 
## 3055                                                  english
## 3056                                                  english
## 3057                               english , farsi , spanish 
## 3058                                                 english 
## 3059                                                 english 
## 3060                                         english , farsi 
## 3061                                                  english
## 3062                                                  english
## 3063                                                  english
## 3064                                                  english
## 3065                              english , chinese , korean 
## 3066                                                  english
## 3067              english , french , spanish , sign language 
## 3068                              english , hebrew , spanish 
## 3069                                                 english 
## 3070                                                  english
## 3071                                                  english
## 3072                                                  english
## 3073                               english , other , spanish 
## 3074                                                  english
## 3075                                                 english 
## 3076                                                  english
## 3077                                                  english
## 3078                                                  english
## 3079                               english , other , spanish 
## 3080                                       english , spanish 
## 3081                                                  english
## 3082                     english , spanish , french , german 
## 3083                                                  english
## 3084                                         english, german 
## 3085            english , other , spanish , arabic , tagalog 
## 3086                                        english , spanish
## 3087                                                  english
## 3088                                        english , french 
## 3089                                                  english
## 3090                                         english , greek 
## 3091                        english, sign language , spanish 
## 3092                                 english , sign language 
## 3093                                                 english 
## 3094                                        english , arabic 
## 3095                                       english , spanish 
## 3096                                                  english
## 3097                                                  english
## 3098                                english , spanish , thai 
## 3099                                       english , chinese 
## 3100                                                  english
## 3101                             english , russian , spanish 
## 3102                                                  english
## 3103             english , hindi , french , german , spanish 
## 3104                                                  english
## 3105                                        english , german 
## 3106                                        english , arabic 
## 3107                                       english , spanish 
## 3108                                         english, spanish
## 3109                                        english , french 
## 3110                                                  english
## 3111                                       english , spanish 
## 3112                                        english, spanish 
## 3113                                        english, spanish 
## 3114                                                 english 
## 3115                                                 english 
## 3116                                                 english 
## 3117                               english , french , german 
## 3118                                         english , other 
## 3119                                         english, french 
## 3120                                                  english
## 3121                                       english , italian 
## 3122                                           english, other
## 3123                                                  english
## 3124                          english , c++ , lisp , spanish 
## 3125                                                 english 
## 3126                                       english , spanish 
## 3127                                        english, spanish 
## 3128                       english , dutch , french , german 
## 3129                                        english , french 
## 3130                                       english , spanish 
## 3131                                        english , french 
## 3132                           english , russian , belarusan 
## 3133                                 english , chinese , thai
## 3134                                       english , spanish 
## 3135                                                  english
## 3136                                        english, spanish 
## 3137                                                  english
## 3138              english, spanish, french , dutch , catalan 
## 3139                        english , arabic , latin , other 
## 3140                                        english , chinese
## 3141                                                 english 
## 3142                                                  english
## 3143                                        english , french 
## 3144                                                  english
## 3145                                                  english
## 3146                                       english , spanish 
## 3147                               english, italian, spanish 
## 3148                                                  english
## 3149                                        english , french 
## 3150                              english, chinese , spanish 
## 3151                                                  english
## 3152                                       english , chinese 
## 3153                                        english, spanish 
## 3154                                                  english
## 3155                                                  english
## 3156                                        english , german 
## 3157                                                  english
## 3158                                                  english
## 3159                                                  english
## 3160                                                  english
## 3161                                                  english
## 3162                                                  english
## 3163                                                  english
## 3164                                       english, japanese 
## 3165                                        english , french 
## 3166                                                 english 
## 3167                                       english , spanish 
## 3168                                                  english
## 3169                     english , french , arabic , spanish 
## 3170                                                 english 
## 3171                                                  english
## 3172                                                  english
## 3173                                                 english 
## 3174                                                  english
## 3175                                 english, french , other 
## 3176                                       english , spanish 
## 3177                                       english , spanish 
## 3178                              english , spanish , french 
## 3179                                       english , spanish 
## 3180                    english , cebuano , arabic , turkish 
## 3181                              english , spanish , french 
## 3182                                       english , russian 
## 3183                                                  english
## 3184                                                  english
## 3185                                         english, spanish
## 3186                                                  english
## 3187                 english , portuguese , spanish , french 
## 3188                              english , german , spanish 
## 3189                                                  english
## 3190                                                  english
## 3191                                                  english
## 3192                                   english, c++ , german 
## 3193                                       english , spanish 
## 3194                              english , french , spanish 
## 3195                                       english , spanish 
## 3196                                       english , spanish 
## 3197                     english , russian , turkish , other 
## 3198                               english, french , spanish 
## 3199                              english , chinese , hebrew 
## 3200                                        english , french 
## 3201                                                  english
## 3202                                        english , french 
## 3203                 english , spanish , esperanto , yiddish 
## 3204                                                 english 
## 3205                                                  english
## 3206                                                 english 
## 3207                   english , spanish , sanskrit , french 
## 3208                                                  english
## 3209                                                 english 
## 3210                                       english , spanish 
## 3211                   english , german , other , c++ , lisp 
## 3212                                english , hindi , french 
## 3213                                       english , spanish 
## 3214                     english , german , spanish , french 
## 3215                                                  english
## 3216                                                 english 
## 3217                                                  english
## 3218                                         english, spanish
## 3219                                       english , spanish 
## 3220                                                  english
## 3221                                        english , french 
## 3222                                         english , other 
## 3223                                                  english
## 3224                                                  english
## 3225                              english , russian , french 
## 3226                                                  english
## 3227                               english , french , hebrew 
## 3228                                                  english
## 3229                                       english , russian 
## 3230                                                  english
## 3231                                                  english
## 3232             english , chinese , latin , spanish , hindi 
## 3233                                 english, spanish, french
## 3234                    english , french , spanish , italian 
## 3235                                                  english
## 3236                                                  english
## 3237                                                  english
## 3238                                          english, german
## 3239                 english , sign language , c++ , spanish 
## 3240                                       english , chinese 
## 3241                     english , hebrew , spanish , german 
## 3242                                         english, spanish
## 3243                                                  english
## 3244                              english , german , swedish 
## 3245                              english , italian , french 
## 3246                                                 english 
## 3247                                                  english
## 3248                                                  english
## 3249        english , persian , spanish , romanian , italian 
## 3250                              english , spanish , french 
## 3251                                                  english
## 3252                                                  english
## 3253                                                  english
## 3254        english , spanish , french , german , portuguese 
## 3255                                                  english
## 3256                                         english, chinese
## 3257                                                  english
## 3258                                                  english
## 3259                                                  english
## 3260                                                  english
## 3261                                                  english
## 3262                                 english , thai , french 
## 3263                         english , c++ , french , german 
## 3264                                                  english
## 3265                                                  english
## 3266                                       english , italian 
## 3267                            english , japanese , spanish 
## 3268                                 english, korean, spanish
## 3269                                                 english 
## 3270                               english, french , italian 
## 3271                                       english , spanish 
## 3272           english , chinese , latin , sanskrit , french 
## 3273                                                  english
## 3274                              english , german , spanish 
## 3275                       english, spanish, japanese, german
## 3276                              english , french , spanish 
## 3277                                                 english 
## 3278                                 english, german, russian
## 3279                                        english, japanese
## 3280                   english , japanese , chinese , korean 
## 3281                                                  english
## 3282                                                 english 
## 3283                                 english, french, korean 
## 3284                          english , portuguese , spanish 
## 3285                                                 english 
## 3286                     english , spanish , german , french 
## 3287                                                  english
## 3288                              english , french , spanish 
## 3289                                        english , hebrew 
## 3290        english , hungarian , spanish , french , russian 
## 3291                                                  english
## 3292                                 english, french, italian
## 3293                                       english , spanish 
## 3294                                                 english 
## 3295                             english , italian , spanish 
## 3296                                         english, german 
## 3297                                english, italian, spanish
## 3298                                       english , spanish 
## 3299                                                 english 
## 3300                                                  english
## 3301                                       english , spanish 
## 3302                                                  english
## 3303                                         english, french 
## 3304                              english , spanish , german 
## 3305                                       english , russian 
## 3306                                                  english
## 3307                     english , german , french , spanish 
## 3308                      english, norwegian , german , thai 
## 3309                              english , spanish , korean 
## 3310                                       english , spanish 
## 3311                    english , chinese , spanish , french 
## 3312                                       english , spanish 
## 3313                                       english , spanish 
## 3314                                                 english 
## 3315                                                  english
## 3316                                                  english
## 3317                                        english, chinese 
## 3318                                                  english
## 3319                                                  english
## 3320                                                  english
## 3321                          english, maori, bengali, danish
## 3322                                                  english
## 3323                                                  english
## 3324                                                  english
## 3325                                                  english
## 3326                                                 english 
## 3327                                                  english
## 3328                                                  english
## 3329                                                  english
## 3330                                                  english
## 3331                                                  english
## 3332                                                  english
## 3333                                       english, japanese 
## 3334                                       english , spanish 
## 3335                                 english , spanish , c++ 
## 3336                                       english, japanese 
## 3337                                       english , spanish 
## 3338                                                  english
## 3339            english , italian , japanese , c++ , russian 
## 3340                                                 english 
## 3341                                                  english
## 3342                                                  english
## 3343                                                  english
## 3344                                         english , other 
## 3345                 english , french , spanish , portuguese 
## 3346                                       english , chinese 
## 3347                                                 english 
## 3348                                                  english
## 3349                                                  english
## 3350                              english , spanish , french 
## 3351                            english , japanese , spanish 
## 3352                                                  english
## 3353                              english , spanish , german 
## 3354                                         english, spanish
## 3355                                                  english
## 3356                                                  english
## 3357                                                  english
## 3358                    english , chinese , french , spanish 
## 3359                                        english, spanish 
## 3360                                                  english
## 3361                                                 english 
## 3362         english, tagalog , spanish , japanese , chinese 
## 3363                                       english , spanish 
## 3364                            english , spanish , japanese 
## 3365                                                  english
## 3366                                       english , spanish 
## 3367                             english , japanese , german 
## 3368                                                 english 
## 3369                                       english , russian 
## 3370                                                  english
## 3371                            english , romanian , russian 
## 3372                                                  english
## 3373                                         english , hindi 
## 3374   english , spanish , sign language , danish , japanese 
## 3375                                                 english 
## 3376                                                  english
## 3377                             english , german , romanian 
## 3378                                                 english 
## 3379                                                 english 
## 3380            english, japanese , german , persian , latin 
## 3381                                    english , indonesian 
## 3382                                                  english
## 3383                                       english , english 
## 3384                  english , french , spanish , esperanto 
## 3385             english , german , latin , french , spanish 
## 3386                                                  english
## 3387                                                  english
## 3388                      english , arabic , spanish , other 
## 3389                                      english , japanese 
## 3390                               english , french , german 
## 3391                                         english, french 
## 3392                                       english , spanish 
## 3393                                                  english
## 3394                                                  english
## 3395                                                 english 
## 3396                                 english , russian , c++ 
## 3397                                           english , c++ 
## 3398                                        english, swedish 
## 3399                                            english, c++ 
## 3400                                                  english
## 3401                                       english , spanish 
## 3402                                                  english
## 3403                                                 english 
## 3404                                                  english
## 3405                                        english , french 
## 3406                                                  english
## 3407                                                  english
## 3408                                                  english
## 3409                                                  english
## 3410                                       english , spanish 
## 3411                                                 english 
## 3412                                                  english
## 3413                                                 english 
## 3414                                         english, french 
## 3415                                                 english 
## 3416                                       english , chinese 
## 3417                                                  english
## 3418                                                  english
## 3419                                                 english 
## 3420                                 english , sign language 
## 3421                     english , spanish , french , hebrew 
## 3422                                                  english
## 3423                                english , spanish , urdu 
## 3424                                       english , chinese 
## 3425                                         english, spanish
## 3426                                        english, spanish 
## 3427                               english, french , italian 
## 3428                                                  english
## 3429                                       english , chinese 
## 3430                                                 english 
## 3431                                                  english
## 3432                                                  english
## 3433                                                  english
## 3434                                  english , urdu , hindi 
## 3435                               english , arabic , french 
## 3436                                      english , japanese 
## 3437                                             english, c++
## 3438                                       english , spanish 
## 3439                                                  english
## 3440                                                  english
## 3441                                                  english
## 3442                                                  english
## 3443                                      english , japanese 
## 3444                                                  english
## 3445                                                  english
## 3446                                       english , chinese 
## 3447                                                  english
## 3448                                       english , spanish 
## 3449                                         english, french 
## 3450                             english, spanish , japanese 
## 3451                                                 english 
## 3452                              english , spanish , french 
## 3453                                       english , chinese 
## 3454                                        english , french 
## 3455                                                  english
## 3456                                       english , spanish 
## 3457                                                  english
## 3458                                                  english
## 3459                                                  english
## 3460                                         english, spanish
## 3461                                       english , tagalog 
## 3462                                                  english
## 3463                                                  english
## 3464                                     english, portuguese 
## 3465                                        english, spanish 
## 3466                                                  english
## 3467                                                 english 
## 3468                                         english, tagalog
## 3469       english , chinese , french , spanish , portuguese 
## 3470                                                  english
## 3471                              english , spanish , korean 
## 3472                                                  english
## 3473                    english , portuguese , sign language 
## 3474                                                 english 
## 3475                                                  english
## 3476                              english , spanish , french 
## 3477                                                  english
## 3478                                                  english
## 3479                                                  english
## 3480                                                 english 
## 3481                                                  english
## 3482                                       english , tagalog 
## 3483                                                  english
## 3484                                                  english
## 3485                                       english , spanish 
## 3486                       english, chinese, french, japanese
## 3487                             english , tagalog , spanish 
## 3488                                                 english 
## 3489                                                  english
## 3490                                                  english
## 3491                                                  english
## 3492                                                  english
## 3493                     english , french , german , italian 
## 3494                              english , chinese , french 
## 3495                                                 english 
## 3496                                                 english 
## 3497       english , swedish , spanish , portuguese , german 
## 3498                                                  english
## 3499                             english , tagalog , spanish 
## 3500                                                  english
## 3501                                                 english 
## 3502                                                  english
## 3503                                                  english
## 3504               english , japanese , portuguese , spanish 
## 3505                            english , croatian , spanish 
## 3506              english , german , sign language , spanish 
## 3507                              english , chinese , french 
## 3508         english , french , russian , japanese , spanish 
## 3509                                       english , chinese 
## 3510                                         english, spanish
## 3511                                                  english
## 3512                                         english, spanish
## 3513                                    english , portuguese 
## 3514                                                  english
## 3515                                                  english
## 3516                                                  english
## 3517                                         english , other 
## 3518                                       english , spanish 
## 3519                             english , chinese , spanish 
## 3520                                        english, chinese 
## 3521                              english , spanish , french 
## 3522                                          english, german
## 3523                                                  english
## 3524                  english , chinese , spanish , japanese 
## 3525                                                 english 
## 3526                                        english , hebrew 
## 3527                                         english, chinese
## 3528                                                  english
## 3529                                       english , chinese 
## 3530                                         english, spanish
## 3531                          english , spanish , portuguese 
## 3532                                                 english 
## 3533                               english , polish , french 
## 3534                                                  english
## 3535                                                  english
## 3536                                                  english
## 3537                                       english , spanish 
## 3538                                                  english
## 3539                                                  english
## 3540                                                  english
## 3541                             english , german , japanese 
## 3542                                                 english 
## 3543                                                 english 
## 3544                                         english, french 
## 3545                                                  english
## 3546                                                  english
## 3547                                english , hindi , german 
## 3548                                         english , greek 
## 3549                                                  english
## 3550                                                  english
## 3551                                                 english 
## 3552                                       english , spanish 
## 3553                                                 english 
## 3554                            english , chinese , japanese 
## 3555                                                 english 
## 3556                                                  english
## 3557                                                 english 
## 3558                                         english, italian
## 3559                                                 english 
## 3560                                                  english
## 3561                               english , spanish , other 
## 3562                             english , chinese , spanish 
## 3563            english , arabic , spanish , urdu , gujarati 
## 3564                           english , spanish , portuguese
## 3565                                       english , spanish 
## 3566                     english , danish , spanish , german 
## 3567                               english , spanish , hindi 
## 3568                                                  english
## 3569                                                 english 
## 3570                                                  english
## 3571                                                 english 
## 3572                               english , hindi , spanish 
## 3573                 english, chinese, french , japanese, c++
## 3574                                                 english 
## 3575                                       english , spanish 
## 3576                                                  english
## 3577                                         english , latin 
## 3578                                       english , spanish 
## 3579                                                  english
## 3580                                                  english
## 3581                                        english, spanish 
## 3582                                                 english 
## 3583                                         english, spanish
## 3584                             english , russian , spanish 
## 3585            english, italian , spanish , danish , french 
## 3586                                       english , spanish 
## 3587                                        english , german 
## 3588                                       english , spanish 
## 3589                                       english , chinese 
## 3590                              english, russian, ukrainian
## 3591                                       english , chinese 
## 3592                               english, spanish , french 
## 3593                               english , polish , german 
## 3594                                        english , french 
## 3595                 english , spanish , german , portuguese 
## 3596                              english , spanish , german 
## 3597                                        english , french 
## 3598                                       english , chinese 
## 3599                                         english, spanish
## 3600                                   english, french, other
## 3601                                                  english
## 3602                                                  english
## 3603                                        english , french 
## 3604                                                  english
## 3605                                       english , spanish 
## 3606                                  english, german, polish
## 3607                                                  english
## 3608                                                  english
## 3609                                                  english
## 3610                               english, spanish , french 
## 3611                             english , russian , spanish 
## 3612                                                  english
## 3613                                       english , tagalog 
## 3614                                                  english
## 3615                              english , french , spanish 
## 3616                                                  english
## 3617                                          english, farsi 
## 3618                                        english, spanish 
## 3619                                                  english
## 3620                              english, russian, ukrainian
## 3621                                                 english 
## 3622                                        english , french 
## 3623                                       english , spanish 
## 3624                              english , french , spanish 
## 3625                                                 english 
## 3626                    english , spanish , french , swahili 
## 3627                                        english , french 
## 3628                     english , spanish , korean , french 
## 3629                                                  english
## 3630                           english , french , portuguese 
## 3631                                                  english
## 3632                                     english, portuguese 
## 3633       english , spanish , portuguese , italian , french 
## 3634                                                  english
## 3635                                                 english 
## 3636                                                  english
## 3637                                                  english
## 3638                                                 english 
## 3639                                                  english
## 3640                                         english, chinese
## 3641                                                  english
## 3642                                         english, french 
## 3643                                                  english
## 3644                            english , chinese , japanese 
## 3645                                       english , spanish 
## 3646                                        english , french 
## 3647                                        english , french 
## 3648                                       english , chinese 
## 3649                                                  english
## 3650                                                  english
## 3651                      english, german , french , spanish 
## 3652                                                  english
## 3653                              english , hebrew , russian 
## 3654                           english , norwegian , spanish 
## 3655                              english , german , italian 
## 3656                            english , hebrew , icelandic 
## 3657                                       english , spanish 
## 3658                                                  english
## 3659                                       english , chinese 
## 3660                              english , korean , spanish 
## 3661                                                  english
## 3662                                       english , spanish 
## 3663                                                  english
## 3664                      english , russian , french , dutch 
## 3665                                 english , sign language 
## 3666                                                  english
## 3667                                         english, italian
## 3668                                 english , sign language 
## 3669                                      english, vietnamese
## 3670                       english , sign language , spanish 
## 3671                                                  english
## 3672                                                 english 
## 3673                              english , yiddish , hebrew 
## 3674                                                  english
## 3675                                                 english 
## 3676                                                  english
## 3677                                         english, french 
## 3678                              english , korean , spanish 
## 3679                                                  english
## 3680                     english , german , french , spanish 
## 3681                                                 english 
## 3682                                                  english
## 3683                               english , spanish , latin 
## 3684                                                  english
## 3685                                                 english 
## 3686                                        english , german 
## 3687                                         english, spanish
## 3688                                                 english 
## 3689                              english, french , japanese 
## 3690                          english , italian , lisp , c++ 
## 3691                                        english , french 
## 3692                              english , spanish , french 
## 3693                                                 english 
## 3694                                english, arabic , french 
## 3695                                         english, english
## 3696                                           english , c++ 
## 3697                                                 english 
## 3698                                                  english
## 3699                                    english , vietnamese 
## 3700                                        english, spanish 
## 3701                                        english , french 
## 3702                                                 english 
## 3703                                       english , chinese 
## 3704                                                  english
## 3705                                                  english
## 3706                                                 english 
## 3707                                                 english 
## 3708                                                 english 
## 3709                                                  english
## 3710                                                  english
## 3711         english, portuguese , spanish , arabic , hebrew 
## 3712                                                 english 
## 3713                                        english , french 
## 3714                                       english , spanish 
## 3715                                   english, dutch, german
## 3716                                                 english 
## 3717                                                  english
## 3718                             english , chinese , spanish 
## 3719                    english , finnish , swedish , german 
## 3720                                                  english
## 3721                                                  english
## 3722                                                  english
## 3723                                       english , chinese 
## 3724                             english , spanish , swahili 
## 3725                            english , spanish , japanese 
## 3726            english , spanish , german , italian , dutch 
## 3727                                                  english
## 3728                                                  english
## 3729                                                  english
## 3730                                                  english
## 3731                                                  english
## 3732                                                  english
## 3733          english , japanese , russian , spanish , other 
## 3734          english , japanese , korean , french , spanish 
## 3735                                       english , spanish 
## 3736                                                 english 
## 3737                                       english , spanish 
## 3738                                       english , spanish 
## 3739                                       english , spanish 
## 3740                                       english , spanish 
## 3741                                    english , portuguese 
## 3742                            english , spanish , japanese 
## 3743                                 english , sign language 
## 3744                                       english , spanish 
## 3745                                        english , french 
## 3746                                                 english 
## 3747                                                 english 
## 3748                     english , spanish , italian , latin 
## 3749                                                  english
## 3750                                                 english 
## 3751                                    english , portuguese 
## 3752                                english, german , french 
## 3753                                         english , dutch 
## 3754                                                  english
## 3755                                                  english
## 3756                                      english , japanese 
## 3757                                                 english 
## 3758                                                  english
## 3759                                       english , spanish 
## 3760                                                  english
## 3761                                       english , spanish 
## 3762                                                  english
## 3763                                                 english 
## 3764                english , hebrew , c++ , spanish , irish 
## 3765                                                 english 
## 3766                                                  english
## 3767                                        english, spanish 
## 3768                     english , french , german , spanish 
## 3769                               english, russian , german 
## 3770                                        english , german 
## 3771                                                  english
## 3772                             english , spanish , swahili 
## 3773           english , russian , spanish , french , german 
## 3774                                         english, spanish
## 3775                                       english , spanish 
## 3776                                       english , russian 
## 3777                                        english, spanish 
## 3778                   english , german , japanese , spanish 
## 3779                     english, english , spanish , french 
## 3780                                                  english
## 3781                                                  english
## 3782                                       english , russian 
## 3783                                    english , vietnamese 
## 3784                             english , russian , spanish 
## 3785                                                  english
## 3786                                                  english
## 3787                                                 english 
## 3788                                                  english
## 3789                                                  english
## 3790                                                 english 
## 3791                                           english, hindi
## 3792                                                  english
## 3793                    english , spanish , italian , french 
## 3794                                                  english
## 3795                                                 english 
## 3796                                                  english
## 3797                                        english , korean 
## 3798                                                  english
## 3799                                     english , hungarian 
## 3800      english , norwegian , chinese , croatian , spanish 
## 3801                                      english , japanese 
## 3802                                       english , russian 
## 3803                                                  english
## 3804                                     english, portuguese 
## 3805                            english , japanese , spanish 
## 3806                               english , french , hebrew 
## 3807                              english , french , spanish 
## 3808                                       english , spanish 
## 3809                                        english , french 
## 3810                                         english, russian
## 3811                              english , russian , french 
## 3812                                         english, french 
## 3813                                                  english
## 3814                                    english , portuguese 
## 3815                                                  english
## 3816                             english , spanish , tagalog 
## 3817                                                  english
## 3818                                                  english
## 3819                         english , c++ , latin , spanish 
## 3820                                                 english 
## 3821                               english, english , german 
## 3822                            english , spanish , japanese 
## 3823                             english , chinese , spanish 
## 3824                              english , french , spanish 
## 3825                                      english , japanese 
## 3826                                                  english
## 3827                             english , german , japanese 
## 3828                              english , hebrew , russian 
## 3829                                                  english
## 3830                                                  english
## 3831                                                  english
## 3832                                 english , hindi , other 
## 3833                              english , spanish , french 
## 3834                                       english , spanish 
## 3835                                                 english 
## 3836                                       english , chinese 
## 3837                               english , spanish , tamil 
## 3838                                                 english 
## 3839                               english , bengali , hindi 
## 3840                                       english , russian 
## 3841                                       english , spanish 
## 3842                                                  english
## 3843                                         english, spanish
## 3844                                                 english 
## 3845                                                  english
## 3846                                      english , gujarati 
## 3847                              english , spanish , hebrew 
## 3848                              english , khmer , japanese 
## 3849                                                  english
## 3850                               english , spanish , latin 
## 3851                                                  english
## 3852                                                  english
## 3853                                                  english
## 3854                                                  english
## 3855                                                 english 
## 3856                                                  english
## 3857                                                 english 
## 3858                                                 english 
## 3859       english , italian , portuguese , spanish , french 
## 3860                                                 english 
## 3861                             english , italian , spanish 
## 3862                                                 english 
## 3863                                         english , other 
## 3864                                                  english
## 3865                                           english, latin
## 3866                              english , spanish , polish 
## 3867                                                  english
## 3868                                                 english 
## 3869                     english , spanish , hindi , bengali 
## 3870                                                  english
## 3871                              english , spanish , korean 
## 3872                                                  english
## 3873                                english , spanish , other
## 3874                                                 english 
## 3875                                                 english 
## 3876                    english , spanish , hebrew , yiddish 
## 3877                                                  english
## 3878                                                 english 
## 3879                                                  english
## 3880                                                 english 
## 3881                    english , french , chinese , spanish 
## 3882                                                  english
## 3883                             english , spanish , swahili 
## 3884                                                 english 
## 3885                                                  english
## 3886                              english , french , spanish 
## 3887                                                  english
## 3888                                                 english 
## 3889                                       english , spanish 
## 3890                                                  english
## 3891                                       english , spanish 
## 3892                                        english , french 
## 3893                                         english, french 
## 3894                                                  english
## 3895                              english , french , spanish 
## 3896                              english, french , japanese 
## 3897                                        english, italian 
## 3898                                                  english
## 3899                                english, french, spanish 
## 3900                           english , bulgarian , swahili 
## 3901                                                  english
## 3902                                                  english
## 3903                                                  english
## 3904                english, french , german , chinese , c++ 
## 3905                                                  english
## 3906                                                  english
## 3907                                                  english
## 3908                                                  english
## 3909                                         english, chinese
## 3910                                      english , romanian 
## 3911                                                  english
## 3912                              english , spanish , french 
## 3913                                                  english
## 3914                                      english , hawaiian 
## 3915                                        english, spanish 
## 3916                                        english, spanish 
## 3917                                        english , korean 
## 3918                                         english , german
## 3919                                                  english
## 3920                                                  english
## 3921                                                 english 
## 3922                                                  english
## 3923                                                  english
## 3924                                                  english
## 3925                          english , portuguese , spanish 
## 3926                                      english , japanese 
## 3927                                                  english
## 3928                              english , french , spanish 
## 3929                                        english , french 
## 3930                                       english , chinese 
## 3931                                                 english 
## 3932                                                  english
## 3933                    english , spanish , french , italian 
## 3934                                english, german , french 
## 3935                                                  english
## 3936                                       english , chinese 
## 3937                                                  english
## 3938                                         english, danish 
## 3939                                                  english
## 3940                                                  english
## 3941                                                  english
## 3942                                       english , spanish 
## 3943                                                  english
## 3944                                                 english 
## 3945                                                  english
## 3946         english, english , tagalog , japanese , spanish 
## 3947                                       english , spanish 
## 3948                                                 english 
## 3949                                       english , spanish 
## 3950              english , french , spanish , sign language 
## 3951                                       english , spanish 
## 3952                                       english , spanish 
## 3953                             english , russian , spanish 
## 3954                                         english, spanish
## 3955                                                  english
## 3956                                        english , french 
## 3957                                                  english
## 3958                                  english , c++ , french 
## 3959                               english , arabic , french 
## 3960                               english , spanish , farsi 
## 3961                             english , spanish , italian 
## 3962                                         english, german 
## 3963                                                  english
## 3964                               english, persian , french 
## 3965           english , french , greek , spanish , japanese 
## 3966                                        english, chinese 
## 3967                                                  english
## 3968                                                 english 
## 3969                                       english , spanish 
## 3970                             english , tagalog , spanish 
## 3971                     english , farsi , persian , spanish 
## 3972                                         english , farsi 
## 3973                  english, spanish , french , portuguese 
## 3974                                       english , spanish 
## 3975                                                  english
## 3976                                        english, spanish 
## 3977                           english, spanish , portuguese 
## 3978                       english , french , spanish , lisp 
## 3979                                                  english
## 3980                                                  english
## 3981                                                 english 
## 3982                                                  english
## 3983                                 english , c++ , spanish 
## 3984                                                  english
## 3985                         english, spanish , c++ , french 
## 3986                                        english , french 
## 3987                                       english , spanish 
## 3988                                                  english
## 3989                                                  english
## 3990                      english , farsi , french , spanish 
## 3991                                                  english
## 3992                                         english, german 
## 3993                                                  english
## 3994                                       english , italian 
## 3995                                                 english 
## 3996                      english, spanish , german , french 
## 3997      english , spanish , ancient greek , latin , german 
## 3998                                                  english
## 3999                                         english, french 
## 4000                    english , russian , spanish , arabic 
## 4001                                                  english
## 4002                                                 english 
## 4003                                       english , spanish 
## 4004                                                  english
## 4005                              english , korean , spanish 
## 4006                                                  english
## 4007                                       english , spanish 
## 4008                                       english , chinese 
## 4009                                   english, french , c++ 
## 4010                                                  english
## 4011                                        english , french 
## 4012                             english , tagalog , spanish 
## 4013                                         english, french 
## 4014                                                  english
## 4015                                     english, hindi, urdu
## 4016                                                  english
## 4017                                                  english
## 4018                                 english , lisp , spanish
## 4019                                       english , spanish 
## 4020                  english , norwegian , french , spanish 
## 4021                                                 english 
## 4022                            english , albanian , italian 
## 4023                                                  english
## 4024                                                  english
## 4025                              english , spanish , german 
## 4026                                                  english
## 4027                                                 english 
## 4028                                 english , sign language 
## 4029                                                 english 
## 4030                              english , french , spanish 
## 4031                                                  english
## 4032                                                 english 
## 4033                                                  english
## 4034                                       english , spanish 
## 4035                                       english , spanish 
## 4036  english , italian , spanish , ancient greek , japanese 
## 4037                                                  english
## 4038                              english, japanese , french 
## 4039                               english , frisian , other 
## 4040                                                  english
## 4041                                                  english
## 4042                                           english , c++ 
## 4043                                                  english
## 4044                                                 english 
## 4045                    english , spanish , italian , french 
## 4046                                         english, french 
## 4047                                 english, french, spanish
## 4048           english , cebuano , chechen , occitan , tamil 
## 4049                      english , c++ , spanish , japanese 
## 4050                                          english, french
## 4051                                        english, spanish 
## 4052                                         english , other 
## 4053                                                  english
## 4054                                                 english 
## 4055                                                  english
## 4056                                                  english
## 4057                                        english, spanish 
## 4058                               english, french , spanish 
## 4059                     english , italian , german , french 
## 4060                                                  english
## 4061                                                  english
## 4062                                                  english
## 4063                                                 english 
## 4064                              english , spanish , hebrew 
## 4065                                       english , yiddish 
## 4066                                                  english
## 4067                                                  english
## 4068                             english , spanish , italian 
## 4069                             english , spanish , tagalog 
## 4070                                        english , french 
## 4071                                                  english
## 4072                                                 english 
## 4073                                                  english
## 4074                                                  english
## 4075                                        english , french 
## 4076                                                  english
## 4077                                       english , spanish 
## 4078                                        english , hebrew 
## 4079                                                 english 
## 4080                                                  english
## 4081                                       english , spanish 
## 4082                              english , spanish , arabic 
## 4083                              english, afrikaans , dutch 
## 4084                                                  english
## 4085                                       english , chinese 
## 4086                                                  english
## 4087                                           english, other
## 4088                                        english, spanish 
## 4089       english , french , indonesian , italian , russian 
## 4090                                         english , hindi 
## 4091                              english , chinese , french 
## 4092                                                  english
## 4093                                                 english 
## 4094                     english, spanish , hebrew , swahili 
## 4095                       english , hindi , spanish , other 
## 4096                                         english, french 
## 4097                                                 english 
## 4098                                        english, spanish 
## 4099                              english , spanish , hebrew 
## 4100                               english , farsi , spanish 
## 4101            english , sign language, spanish, c++, other 
## 4102                                     english, vietnamese 
## 4103                                                 english 
## 4104                              english , spanish , french 
## 4105                                       english , chinese 
## 4106                                        english , spanish
## 4107                                           english, hindi
## 4108                            english , tagalog , japanese 
## 4109                                 english , sign language 
## 4110                                       english , spanish 
## 4111                                       english , russian 
## 4112                                        english , german 
## 4113                                       english , chinese 
## 4114                                                 english 
## 4115                                                  english
## 4116                                                  english
## 4117                           english , vietnamese , french 
## 4118                                        english , french 
## 4119                                        english, spanish 
## 4120                                                  english
## 4121                              english , french , spanish 
## 4122                                       english , russian 
## 4123                                                  english
## 4124                                                  english
## 4125                                                  english
## 4126                                                  english
## 4127                                       english , spanish 
## 4128                                                  english
## 4129                     english , spanish , french , korean 
## 4130                                                  english
## 4131                                                 english 
## 4132            english , spanish , german , korean , arabic 
## 4133                     english , swedish , french , german 
## 4134                            english , indonesian , dutch 
## 4135             english, french, spanish, portuguese, german
## 4136                               english, russian , hebrew 
## 4137                                                 english 
## 4138                             english , italian , persian 
## 4139                   english , french , japanese , spanish 
## 4140                       english , dutch , french , german 
## 4141                              english , korean , spanish 
## 4142         english , hebrew , russian , ukrainian , french 
## 4143                                                 english 
## 4144                  english , italian , japanese , spanish 
## 4145                                                  english
## 4146                                                  english
## 4147                                        english, spanish 
## 4148                                                 english 
## 4149                                       english , spanish 
## 4150                            english , chinese , japanese 
## 4151                                        english , hebrew 
## 4152                                                  english
## 4153                                                  english
## 4154                                                  english
## 4155                                       english , spanish 
## 4156                                 english , tamil , hindi 
## 4157                                                  english
## 4158                                                  english
## 4159                                        english, spanish 
## 4160                                        english, spanish 
## 4161                                                  english
## 4162                                                 english 
## 4163                                                  english
## 4164             english , chinese , german , dutch , french 
## 4165                                 english, spanish, french
## 4166                           english, chinese , vietnamese 
##  [ reached 'max' / getOption("max.print") -- omitted 55780 rows ]

##Building actual shiny Dashboard

# Define the UI
ui <- dashboardPage(
  skin = "red",
  dashboardHeader(
    title = "OkCupid Profiles", 
    dropdownMenu(
      type = "messages",
      messageItem(
        from = "Sales Dept",
        message = "Sales are steady this month."
      ),
      messageItem(
        from = "New User",
        message = "How do I register?",
        icon = icon("question"),
        time = "13:45"
      ),
      messageItem(
        from = "Support",
        message = "The new server is ready.",
        icon = icon("life-ring"),
        time = "2014-12-01"
      )
    )
  ),
  
  dashboardSidebar(
    sidebarMenu(
      menuItem("Overview", tabName = "Overview", icon = icon("table")),
      menuItem("Insights", tabName = "Insights", icon = icon("sliders")),
      menuItem("Map", tabName = "Map", icon = icon("map")),
      menuItem("Matches", tabName = "Matches", icon = icon("heart"),
               badgeLabel = "new", badgeColor = "green")
    )
  ),
  
  dashboardBody(
    tabItems(
      tabItem(tabName = "Overview",
              fluidRow(
                valueBoxOutput("usersBox", width = 3),
                valueBoxOutput("maleBox", width = 3),
                valueBoxOutput("femaleBox", width = 3),
                valueBoxOutput("AgeBox", width = 3),
                box(title = "Gender vs age", status = "primary",
                    solidHeader = TRUE, collapsible = TRUE,
                    plotOutput("plot1", height = 400)),
                box(title = "Sexual orientation vs Gender", status = "warning",
                    solidHeader = TRUE, collapsible = TRUE,
                    plotOutput("plot2", height = 400)),
                box(title = "Ethnic Distribution", background = "green", solidHeader = TRUE, collapsible = TRUE,
                    plotOutput("plot3")),
                box(title = "Ethnical Distribution", width = 4, height= 450, background = "aqua",
                    DT::dataTableOutput("table")),
              )
      ),
      tabItem(tabName = "Insights",
              fluidRow(
                valueBoxOutput("OnlineBox", width = 4),
                box(title = "Percentage of users speaking more than language", status = "primary",
                    solidHeader = TRUE, collapsible = TRUE,
                    plotOutput("plot4", height = 400)),
                box(title = "Median Income vs Education", status = "primary",
                    solidHeader = TRUE, collapsible = TRUE,
                    plotOutput("plot5", height = 400)),
                box(title = "Education vs Age", status = "warning",
                    solidHeader = TRUE, collapsible = TRUE,
                    plotOutput("plot6", height = 400)),
                box(title = "Distribution of Last Online Dates of Users by Day of the Week", status = "warning",
                    solidHeader = TRUE, collapsible = TRUE,
                    plotOutput("plot7", height = 475)
                )
              )
      ),
      tabItem(tabName = "Map",
              fluidRow(
                box(leafletOutput("map", height = 500), width =20)
              )
      ),
      tabItem(tabName = "Matches",
              fluidRow(
                valueBoxOutput("AvgMatchesBox", width = 4),
                valueBoxOutput("MaxMatchesBox", width = 4),
                valueBoxOutput("MinMatchesBox", width = 4)
              ),
              tabBox(title = "Total Matches per Age group", id = "tabset1", side = "left", height =
                       "250px",
                     tabPanel("Tab1", plotOutput("plot8"),
                     tabPanel("Tab2"),
                     tabPanel("Tab3")
)
                     
                     )
              )
      )
    )
  )
## The `name` provided ('clock-o') does not correspond to a known icon
## The `name` provided ('clock-o') does not correspond to a known icon
# Server
server <- function(input, output) {
  
  # Reactive ValueBoxes
  output$usersBox <- renderValueBox({
    users <- cupid %>% summarise(total= n_distinct(user_id))
    valueBox(value= users, subtitle = "Users", icon=icon("users"),
    color= "green")
  })
  
    output$maleBox <- renderValueBox({
    males <- cupid %>%
      filter(sex == "male") %>%
      summarise(males= n())
      valueBox(value= males, subtitle = "Males", icon=icon("person"),
      color= "aqua")
  })
    
    output$femaleBox <- renderValueBox({
      females <- cupid %>%
        filter(sex == "female") %>%
        summarise(females= n())
      valueBox(value= females, subtitle = "Females", icon=icon("person-dress"),
      color= "fuchsia")
  })
    
      output$AgeBox <- renderValueBox({
        age_range <- matches_age %>%
          group_by(age_group) %>%
          summarise(count = n()) %>%
          arrange(desc(count)) %>%
          slice(1) %>% 
          select(age_group)
        valueBox(value= age_range, subtitle = "Age range", icon=icon("ranking-star"),
                 color= "orange")
      
  })
    
       output$OnlineBox <- renderValueBox({
         last_time_cupid <- cupid %>%
           mutate(last_online_date = as.Date(last_online)) %>%
           group_by(last_online_date) %>%
           summarise(count = n(), .groups = "drop") %>%
           arrange(desc(count)) %>%
           top_n(1, count) %>%
           distinct(last_online_date)
         valueBox(value= last_time_cupid, subtitle = "Last Time Online", icon=icon("mobile-button"),
                  color= "purple")
         
  })
       
       output$AvgMatchesBox <- renderValueBox({
         average_matches_age <- matches_age %>%
           mutate(average_matches =round(mean(matches))) %>% 
           distinct(average_matches)
          valueBox(value= average_matches_age, subtitle = "Average Matches",
                   icon=icon("heart"),
                  color= "fuchsia")
    
  })
       
        output$MaxMatchesBox <- renderValueBox({
          max_matches_age <- matches_age %>%
            mutate(max_matches =round(max(matches))) %>%
            distinct(max_matches)
          valueBox(value= max_matches_age, subtitle = "Max Matches",
                   icon=icon("heart-circle-plus"),
                  color= "red")
          
      
  })
        output$MinMatchesBox <- renderValueBox({
          min_matches_age <- matches_age %>%
            mutate(min_matches =round(min(matches))) %>% 
            distinct(min_matches)
          valueBox(value= min_matches_age, subtitle = "Min Matches",
                   icon=icon("heart-circle-minus"),
                  color= "olive")
          
          
  
   })      
    
  # Reactive plots
  output$plot1 <- renderPlot({
    proportion_cupid <- cupid%>%
  mutate(age_group = cut(age, breaks = c(18, 30, 35, 40, 50, 60, Inf), labels = c("18-30", "30-35", "35-40", "40-50", "50-60", "65+"), include.lowest = TRUE)) %>%
  group_by(age_group, sex) %>%
  summarise(n = n(), .groups = "drop") %>% 
  mutate(n = ifelse(sex == "male", n, -n)) 

# Create the plot
ggplot(proportion_cupid, aes(y = age_group, x = n, fill = sex)) +
  geom_bar(data = subset(proportion_cupid, sex == "male"), stat = "identity") +
  geom_bar(data = subset(proportion_cupid, sex == "female"), stat = "identity") +
  scale_x_continuous(labels = function(x) abs(x)) +
  labs(title = "Gender vs Age",
       x = "users",
       y = "Age Group") +
  scale_fill_manual(values = c("male" = "#0494FE", "female" = "#BF40BE")) +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5),
        legend.title = element_blank())

    
  })
  
  output$plot2 <- renderPlot({
    cupid_clean <- cupid %>%
  filter(!is.na(sex), !is.na(orientation))
    cupid_orientation <- cupid_clean %>%
  group_by(sex, orientation) %>%
  summarise(count = n(), .groups = "drop") %>%
  mutate(percentage = count / sum(count) * 100) 
ggplot(cupid_orientation, aes(fill=orientation, y=count, x=sex)) + 
  geom_bar(position="stack", stat="identity") +
  geom_text(aes(label=paste0(round(percentage, 1), "%")), 
            position=position_stack(vjust=0.5), size = 3) +
  labs(x = "Gender", y = "Percentage", fill = "Sexual Orientation",
       title = "Sexual Orientation by Gender") +
  theme_minimal() +
  theme(axis.text.y = element_blank(),
        axis.ticks.y = element_blank(),
        plot.background = element_rect(fill = "white"), 
        panel.grid = element_blank(), 
        legend.background = element_rect(fill = "white"))
    
  })
  
  output$plot3 <- renderPlot({
    cupid_distribution<- cupid%>%
  filter(!is.na(ethnicity)) %>%
  mutate(ethnicity = as.factor(ethnicity)) %>%
  separate_rows(ethnicity, sep = ", ") %>%
  mutate(ethnicity = fct_infreq(ethnicity)) %>% 
    group_by(ethnicity) %>%
  summarise(n = n(), .groups = 'drop')
    treemap(cupid_distribution,
        index = "ethnicity",
        vSize = "n",
        palette = "Set3")
    
    
  }) 
  
  output$table<- DT::renderDataTable({
  datatable(cupid_distribution,
            options= list(
              searching= FALSE,
              info= FALSE,
              paging= FALSE
            ))
    
  }) 
  
  output$plot4 <- renderPlot({
    cupid_clean <- cupid %>%
  filter(!is.na(speaks)) %>%
  mutate(num_languages = str_count(speaks, ",") + 1)
  cupid_languages <- cupid_clean %>%
  group_by(num_languages) %>%
  summarise(count = n(), .groups = "drop") %>%
  mutate(percentage = count / sum(count) * 100) 
  color_palette <- c("#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd")


ggplot(cupid_languages, aes(x = "", y = percentage, fill = as.factor(num_languages))) + 
  geom_bar(stat = "identity") +
  coord_polar("y", start=0) +
  labs(x = NULL, y = NULL, fill = NULL) +
  geom_text(aes(label = paste0(round(percentage, 1), "%")),  
            position = position_stack(vjust = 0.5), color = "white", size = 3) +
  scale_fill_manual(values = color_palette)+
  theme_void()

  }) 
  
  output$plot5 <- renderPlot({
    cupid_income <- cupid %>%
  filter(!is.na(education)) %>%  
  mutate(education = fct_infreq(education)) %>% 
  group_by(education) %>%
  summarise(median_income = median(income, na.rm = TRUE)) %>% 
  drop_na(median_income) %>%
  mutate(education = fct_reorder(education, median_income))
    ##Plot graph
ggplot(cupid_income, aes(x = education, y = median_income)) +
  geom_bar(stat='identity', fill = 'skyblue') +
  geom_line(group = 1, color = 'red', size = 1) + # Adding progression line
  theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
  labs(x = "Education", y = "Median Income")

    
  }) 
  
  output$plot6 <- renderPlot({
    ggplot(cupid %>% 
       filter(!(is.na(education)), !(education=="space"), 
              !(education=="ph.d"), !(education=="law"), !(education=="med")))+
    geom_bar(mapping = aes(x=age, fill=education))+
    coord_cartesian(xlim = c(17,70))+
    labs(subtitle = "What are the education levels of the demographic?") +
    scale_fill_brewer(palette = "Blues", name="Education Level")+
    xlab("Age")+ylab("Number")
    
    
  }) 
  
  output$plot7 <- renderPlot({
    cupid_weekday <- cupid %>%
  mutate(weekday = wday(last_online, label = TRUE)) %>% 
  group_by(weekday) %>%
  summarise(count = n(), .groups = "drop")
    ##Plot graph
ggplot(cupid_weekday, aes(x = weekday, y = count)) +
  geom_point(color = "steelblue", size = 3) +
  geom_line(aes(group = 1), color = "steelblue") + 
  scale_x_discrete(limits = c("Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun")) + 
  labs(x = "Day of the Week", y = "Count of Users",
       title = "Distribution of Last Online Dates of Users by Day of the Week") +
  theme_minimal()
    
  })
  
    output$map <- renderLeaflet({
      leaflet(cupid_location) %>%
        addTiles() %>%  
        addCircleMarkers(~long, ~lat, radius = ~sqrt(count)*0.5, 
                   color = ~color, 
                   stroke = FALSE, 
                   fillOpacity = 0.5)
  
    })

  
  
    output$plot8 <- renderPlot({
      matches_age_count <-matches_age %>% 
        group_by(age_group) %>%
        summarise(total_matches = sum(matches))
      
      ggplot(matches_age_count, aes(x = age_group, y = total_matches)) +
        geom_bar(stat = "identity", fill = "pink") +
        labs(x = "Age Group", y = "Total Matches")

      
    
  })
    

  
    
}

# Run the application
shinyApp(ui = ui, server = server)
Shiny applications not supported in static R Markdown documents
##Box 1: Total number of users in OkCupid
users<- cupid %>% 
  summarise(users= n_distinct(user_id))
users
##   users
## 1 59946
##Box 2: Users divided by gender
males <- cupid %>%
  filter(sex == "male") %>%
  summarise(males= n())
males
##   males
## 1 35829
females <- cupid %>%
  filter(sex == "female") %>%
  summarise(females= n())
females
##   females
## 1   24117
##Box 4 :Last online connected
last_time_cupid <- cupid %>%
  mutate(last_online_date = as.Date(last_online)) %>%
  group_by(last_online_date) %>%
  summarise(count = n(), .groups = "drop") %>%
  arrange(desc(count)) %>%
  top_n(1, count) %>%
  distinct(last_online_date)
last_time_cupid
## # A tibble: 1 × 1
##   last_online_date
##   <date>          
## 1 2012-06-30
data(us.cities)
us.cities
##                                   name country.etc     pop   lat    long
## 1                           Abilene TX          TX  113888 32.45  -99.74
## 2                             Akron OH          OH  206634 41.08  -81.52
## 3                           Alameda CA          CA   70069 37.77 -122.26
## 4                            Albany GA          GA   75510 31.58  -84.18
## 5                            Albany NY          NY   93576 42.67  -73.80
## 6                            Albany OR          OR   45535 44.62 -123.09
## 7                       Albuquerque NM          NM  494962 35.12 -106.62
## 8                        Alexandria LA          LA   44933 31.29  -92.46
## 9                        Alexandria VA          VA  127159 38.82  -77.09
## 10                         Alhambra CA          CA   88857 34.08 -118.13
## 11                      Aliso Viejo CA          CA   41975 33.57 -117.73
## 12                            Allen TX          TX   84467 33.11  -96.67
## 13                        Allentown PA          PA  105224 40.60  -75.48
## 14                            Aloha OR          OR   45531 45.49 -122.87
## 15                         Altadena CA          CA   43280 34.19 -118.13
## 16                Altamonte Springs FL          FL   40712 28.66  -81.40
## 17                          Altoona PA          PA   46442 40.51  -78.40
## 18                         Amarillo TX          TX  183295 35.20 -101.82
## 19                             Ames IA          IA   57683 42.02  -93.63
## 20                          Anaheim CA          CA  334909 33.84 -117.87
## 21                        Anchorage AK          AK  279428 61.18 -149.19
## 22                         Anderson IN          IN   57036 40.09  -85.69
## 23                          Andover MA          MA   67715 42.65  -71.14
## 24                        Ann Arbor MI          MI  113716 42.28  -83.73
## 25                        Annandale VA          VA   57942 38.83  -77.21
## 26                        Annapolis MD          MD   36300 38.98  -76.49
## 27                          Antioch CA          CA  109485 37.99 -121.80
## 28                     Apple Valley CA          CA   66361 34.53 -117.21
## 29                     Apple Valley MN          MN   51609 44.75  -93.20
## 30                         Appleton WI          WI   70090 44.27  -88.40
## 31                          Arcadia CA          CA   57429 34.13 -118.04
## 32                     Arden-Arcade CA          CA   99968 38.60 -121.38
## 33                Arlington Heights IL          IL   74763 42.09  -87.98
## 34                        Arlington MA          MA   41246 42.42  -71.16
## 35                        Arlington TX          TX  374729 32.69  -97.13
## 36                        Arlington VA          VA  184603 38.88  -77.10
## 37                           Arvada CO          CO  101633 39.82 -105.11
## 38                        Asheville NC          NC   68654 35.57  -82.55
## 39                       Aspen Hill MD          MD   54029 39.09  -77.08
## 40                    Athens-Clarke GA          GA  103618 33.95  -83.39
## 41                          Atlanta GA          GA  424096 33.76  -84.42
## 42                    Atlantic City NJ          NJ   40529 39.38  -74.45
## 43                        Attleboro MA          MA   44690 41.93  -71.30
## 44                           Auburn AL          AL   51236 32.59  -85.48
## 45                           Auburn WA          WA   46108 47.30 -122.21
## 46                          Augusta ME          ME   18626 44.32  -69.77
## 47                 Augusta-Richmond GA          GA  192376 33.46  -81.99
## 48                           Aurora CO          CO  304641 39.71 -104.73
## 49                           Aurora IL          IL  181120 41.77  -88.29
## 50                           Austin TX          TX  683404 30.31  -97.75
## 51                         Avondale AZ          AZ   79125 33.42 -112.32
## 52                            Azusa CA          CA   48992 34.14 -117.91
## 53                      Bakersfield CA          CA  301775 35.36 -119.00
## 54                     Baldwin Park CA          CA   81467 34.08 -117.97
## 55                        Baltimore MD          MD  602658 39.30  -76.61
## 56                  Barnstable Town MA          MA   49598 41.70  -70.30
## 57                         Bartlett TN          TN   43852 35.22  -89.84
## 58                      Baton Rouge LA          LA  222217 30.45  -91.13
## 59                     Battle Creek MI          MI   54179 42.30  -85.23
## 60                          Bayonne NJ          NJ   59482 40.66  -74.11
## 61                          Baytown TX          TX   67487 29.75  -94.97
## 62                         Beaumont TX          TX  110949 30.09  -94.14
## 63                      Beavercreek OH          OH   41297 39.73  -84.06
## 64                        Beaverton OR          OR   83920 45.48 -122.82
## 65                          Bedford TX          TX   49572 32.85  -97.13
## 66                    Bel Air South MD          MD   50874 39.50  -76.32
## 67                     Bell Gardens CA          CA   46504 33.97 -118.15
## 68                       Belleville IL          IL   40745 38.53  -90.00
## 69                         Bellevue NE          NE   48894 41.16  -95.92
## 70                         Bellevue WA          WA  111896 47.60 -122.16
## 71                       Bellflower CA          CA   76437 33.89 -118.13
## 72                       Bellingham WA          WA   74770 48.74 -122.47
## 73                             Bend OR          OR   68945 44.07 -121.31
## 74                         Berkeley CA          CA   99653 37.87 -122.27
## 75                           Berwyn IL          IL   50904 41.84  -87.79
## 76                         Bethesda MD          MD   52217 38.99  -77.12
## 77                        Bethlehem PA          PA   74087 40.63  -75.37
## 78                          Beverly MA          MA   40441 42.56  -70.84
## 79                        Billerica MA          MA   40063 42.56  -71.26
## 80                         Billings MT          MT  101249 45.79 -108.54
## 81                           Biloxi MS          MS   47110 30.41  -88.93
## 82                       Binghamton NY          NY   45070 42.10  -75.91
## 83                       Birmingham AL          AL  229300 33.53  -86.80
## 84                         Bismarck ND          ND   56927 46.81 -100.77
## 85                       Blacksburg VA          VA   40303 37.23  -80.43
## 86                           Blaine MN          MN   56140 45.17  -93.21
## 87                       Bloomfield NJ          NJ   49358 40.81  -74.19
## 88              Bloomfield Township MI          MI   43032 42.58  -83.27
## 89                      Bloomington IL          IL   71804 40.48  -88.97
## 90                      Bloomington IN          IN   71260 39.17  -86.52
## 91                      Bloomington MN          MN   80627 44.83  -93.32
## 92                     Blue Springs MO          MO   50116 39.02  -94.27
## 93                       Boca Raton FL          FL   81868 26.37  -80.11
## 94                            Boise ID          ID  193628 43.61 -116.23
## 95                      Bolingbrook IL          IL   76994 41.70  -88.08
## 96                   Bonita Springs FL          FL   43842 26.34  -81.79
## 97                     Bossier City LA          LA   60142 32.52  -93.66
## 98                           Boston MA          MA  567759 42.34  -71.02
## 99                          Boulder CO          CO   90957 40.03 -105.25
## 100                       Bountiful UT          UT   41622 40.88 -111.87
## 101                          Bourne MA          MA   48580 41.74  -70.61
## 102                           Bowie MD          MD   56949 38.96  -76.74
## 103                   Bowling Green KY          KY   51999 36.97  -86.44
## 104                   Boynton Beach FL          FL   67720 26.53  -80.08
## 105                       Bradenton FL          FL   55606 27.49  -82.58
## 106                         Brandon FL          FL   92728 27.93  -82.29
## 107                            Brea CA          CA   40349 33.92 -117.87
## 108                       Bremerton WA          WA   45306 47.55 -122.70
## 109                       Brentwood CA          CA   52747 37.93 -121.71
## 110                       Brentwood NY          NY   58954 40.78  -73.25
## 111                        Brewster MA          MA   52153 41.77  -70.08
## 112                           Brick NJ          NJ   82400 40.06  -74.11
## 113                      Bridgeport CT          CT  138901 41.19  -73.20
## 114                     Bridgewater MA          MA   50237 41.99  -70.97
## 115                         Bristol CT          CT   61166 41.68  -72.94
## 116                        Brockton MA          MA   94945 42.08  -71.03
## 117                    Broken Arrow OK          OK   86817 36.04  -95.79
## 118                      Brookfield WI          WI   40323 43.06  -88.12
## 119                       Brookline MA          MA   55862 42.32  -71.14
## 120                   Brooklyn Park MN          MN   67660 45.11  -93.35
## 121                      Broomfield CO          CO   45869 39.94 -105.06
## 122                     Brownsville TX          TX  174135 25.93  -97.48
## 123                           Bryan TX          TX   70386 30.67  -96.37
## 124                      Buena Park CA          CA   79388 33.86 -118.00
## 125                   Buffalo Grove IL          IL   43355 42.17  -87.96
## 126                         Buffalo NY          NY  276762 42.89  -78.86
## 127                         Burbank CA          CA  105515 34.19 -118.33
## 128                           Burke VA          VA   58270 38.78  -77.27
## 129                      Burlington NC          NC   47290 36.08  -79.45
## 130                      Burnsville MN          MN   59357 44.76  -93.28
## 131                       Camarillo CA          CA   63560 34.22 -119.03
## 132                       Cambridge MA          MA  101342 42.38  -71.12
## 133                          Camden NJ          NJ   80393 39.94  -75.11
## 134                          Canton MI          MI   89064 42.31  -83.48
## 135                          Canton OH          OH   77575 40.81  -81.37
## 136                      Cape Coral FL          FL  137134 26.64  -82.00
## 137                        Carlsbad CA          CA   93848 33.12 -117.29
## 138                          Carmel IN          IN   49188 39.97  -86.11
## 139                      Carmichael CA          CA   51165 38.63 -121.32
## 140                      Carol City FL          FL   63659 25.94  -80.27
## 141                    Carol Stream IL          IL   39749 41.92  -88.13
## 142                      Carrollton TX          TX  123154 32.99  -96.90
## 143                          Carson CA          CA   96933 33.84 -118.26
## 144                     Carson City NV          NV   58350 39.15 -119.74
## 145                            Cary NC          NC  106117 35.78  -78.80
## 146                    Casas Adobes AZ          AZ   84988 32.32 -110.99
## 147                          Casper WY          WY   51808 42.83 -106.33
## 148                     Castle Rock CO          CO   43905 39.38 -104.85
## 149                   Castro Valley CA          CA   63908 37.71 -122.06
## 150              Catalina Foothills AZ          AZ   84369 32.30 -110.92
## 151                  Cathedral City CA          CA   55253 33.83 -116.46
## 152                     Catonsville MD          MD   43406 39.26  -76.74
## 153                      Cedar Hill TX          TX   46869 32.58  -96.96
## 154                      Cedar Park TX          TX   58499 30.51  -97.83
## 155                    Cedar Rapids IA          IA  123243 41.97  -91.67
## 156                      Centennial CO          CO   95961 39.60 -104.85
## 157                     Centreville VA          VA   69167 38.85  -77.44
## 158                           Ceres CA          CA   41223 37.60 -120.96
## 159                        Cerritos CA          CA   53616 33.87 -118.07
## 160                       Champaign IL          IL   76999 40.11  -88.26
## 161                        Chandler AZ          AZ  247915 33.30 -111.87
## 162                       Chantilly VA          VA   50103 38.88  -77.41
## 163                     Chapel Hill NC          NC   47613 35.93  -79.04
## 164                      Charleston SC          SC  106372 32.79  -79.99
## 165                      Charleston WV          WV   49804 38.35  -81.63
## 166                       Charlotte NC          NC  607111 35.20  -80.83
## 167                     Chattanooga TN          TN  153617 35.07  -85.26
## 168                     Cheektowaga NY          NY   76785 42.91  -78.75
## 169                     Cherry Hill PA          PA   70489 39.90  -75.00
## 170                      Chesapeake VA          VA  223222 36.68  -76.31
## 171                    Chesterfield MO          MO   47202 38.65  -90.58
## 172                        Cheyenne WY          WY   55833 41.15 -104.79
## 173                         Chicago IL          IL 2830144 41.84  -87.68
## 174                           Chico CA          CA   71997 39.75 -121.81
## 175                        Chicopee MA          MA   55222 42.18  -72.57
## 176                           Chino CA          CA   77147 34.01 -117.69
## 177                     Chino Hills CA          CA   80817 33.97 -117.75
## 178                     Chula Vista CA          CA  221736 32.63 -117.04
## 179                          Cicero IL          IL   80414 41.84  -87.76
## 180                      Cincinnati OH          OH  301561 39.14  -84.51
## 181                  Citrus Heights CA          CA   90277 38.69 -121.29
## 182                     Clarksville TN          TN  113379 36.56  -87.35
## 183                      Clearwater FL          FL  107866 27.98  -82.77
## 184               Cleveland Heights OH          OH   47123 41.51  -81.56
## 185                       Cleveland OH          OH  443949 41.48  -81.68
## 186                         Clifton NJ          NJ   80446 40.86  -74.16
## 187                         Clinton MI          MI  100517 42.59  -82.92
## 188                          Clovis CA          CA   90115 36.82 -119.70
## 189                   Coconut Creek FL          FL   51848 26.28  -80.18
## 190                   Coeur d'Alene ID          ID   40270 47.70 -116.78
## 191                 College Station TX          TX   80627 30.60  -96.31
## 192                Colorado Springs CO          CO  375744 38.86 -104.76
## 193                          Colton CA          CA   53281 34.06 -117.32
## 194                        Columbia MD          MD   97772 39.20  -76.86
## 195                        Columbia MO          MO   92756 38.95  -92.33
## 196                        Columbia SC          SC  118020 34.04  -80.89
## 197                        Columbus GA          GA  184900 32.51  -84.87
## 198                        Columbus IN          IN   39453 39.21  -85.91
## 199                        Columbus OH          OH  741677 39.99  -82.99
## 200                         Compton CA          CA   97338 33.89 -118.23
## 201                         Concord CA          CA  126360 37.97 -122.00
## 202                         Concord NC          NC   61640 35.41  -80.59
## 203                         Concord NH          NH   42967 43.23  -71.56
## 204                          Conroe TX          TX   42545 30.32  -95.47
## 205                          Conway AR          AR   53297 35.09  -92.45
## 206                     Coon Rapids MN          MN   62711 45.17  -93.31
## 207                         Coppell TX          TX   40487 32.96  -96.99
## 208                    Coral Gables FL          FL   42495 25.70  -80.26
## 209                   Coral Springs FL          FL  134773 26.27  -80.26
## 210                          Corona CA          CA  159198 33.87 -117.57
## 211                  Corpus Christi TX          TX  280808 27.71  -97.29
## 212                       Corvallis OR          OR   50932 44.57 -123.28
## 213                      Costa Mesa CA          CA  109357 33.67 -117.91
## 214                  Council Bluffs IA          IA   58834 41.24  -95.86
## 215                    Country Club FL          FL   58321 25.95  -80.32
## 216                          Covina CA          CA   49039 34.09 -117.88
## 217                       Covington KY          KY   41896 39.04  -84.51
## 218                        Cranston RI          RI   83595 41.77  -71.48
## 219                    Crystal Lake IL          IL   41874 42.23  -88.33
## 220                     Culver City CA          CA   40361 34.01 -118.40
## 221                       Cupertino CA          CA   50952 37.31 -122.05
## 222                  Cuyahoga Falls OH          OH   52223 41.17  -81.52
## 223                         Cypress CA          CA   47521 33.82 -118.04
## 224                       Dale City VA          VA   62241 38.65  -77.34
## 225                          Dallas TX          TX 1216543 32.79  -96.77
## 226                       Daly City CA          CA   98084 37.69 -122.47
## 227                         Danbury CT          CT   79292 41.40  -73.47
## 228                        Danville CA          CA   43110 37.81 -121.97
## 229                        Danville VA          VA   45382 36.58  -79.41
## 230                       Davenport IA          IA   96595 41.56  -90.60
## 231                           Davie FL          FL   84154 26.08  -80.29
## 232                           Davis CA          CA   66992 38.55 -121.74
## 233                          Dayton OH          OH  157607 39.78  -84.20
## 234                   Daytona Beach FL          FL   64735 29.19  -81.05
## 235                          DeKalb IL          IL   44223 41.93  -88.75
## 236                          DeSoto TX          TX   47179 32.60  -96.86
## 237                Dearborn Heights MI          MI   55964 42.33  -83.27
## 238                        Dearborn MI          MI   94681 42.31  -83.21
## 239                         Decatur AL          AL   54717 34.57  -86.99
## 240                         Decatur IL          IL   77026 39.85  -88.93
## 241                 Deerfield Beach FL          FL   66628 26.31  -80.12
## 242                          Delano CA          CA   45933 35.76 -119.25
## 243                    Delray Beach FL          FL   66633 26.45  -80.09
## 244                         Deltona FL          FL   84646 28.91  -81.21
## 245                          Dennis MA          MA   39833 41.74  -70.20
## 246                          Denton TX          TX  105431 33.21  -97.13
## 247                          Denver CO          CO  556575 39.77 -104.87
## 248                      Des Moines IA          IA  192050 41.58  -93.62
## 249                     Des Plaines IL          IL   53601 42.03  -87.90
## 250                         Detroit MI          MI  871789 42.38  -83.10
## 251                     Diamond Bar CA          CA   59433 34.00 -117.81
## 252                          Dothan AL          AL   62449 31.24  -85.41
## 253                           Dover DE          DE   34288 39.16  -75.53
## 254                   Downers Grove IL          IL   49471 41.80  -88.02
## 255                          Downey CA          CA  112762 33.94 -118.13
## 256                          Dublin CA          CA   40791 37.72 -121.91
## 257                         Dubuque IA          IA   57027 42.50  -90.69
## 258                          Duluth MN          MN   84472 46.78  -92.12
## 259                         Dundalk MD          MD   61426 39.27  -76.50
## 260                          Durham NC          NC  208426 35.98  -78.91
## 261                         Duxbury MA          MA   44473 42.04  -70.67
## 262                           Eagan MN          MN   64393 44.82  -93.16
## 263                  East Brunswick NJ          NJ   48799 40.43  -74.42
## 264                   East Hartford CT          CT   50209 41.76  -72.62
## 265                       East Lake FL          FL   47720 27.98  -82.38
## 266                    East Lansing MI          MI   48618 42.74  -84.48
## 267                East Los Angeles CA          CA  125121 34.03 -118.17
## 268                     East Orange NJ          NJ   68064 40.77  -74.21
## 269                 East Providence RI          RI   50750 41.80  -71.36
## 270                      Eau Claire WI          WI   63049 44.82  -91.49
## 271                    Eden Prairie MN          MN   65076 44.85  -93.46
## 272                           Edina MN          MN   45648 44.89  -93.36
## 273                        Edinburg TX          TX   63193 26.30  -98.16
## 274                          Edison NJ          NJ  103448 40.53  -74.37
## 275                          Edmond OK          OK   75061 35.67  -97.41
## 276                         Edmonds WA          WA   40023 47.83 -122.37
## 277                 Egypt Lake-Leto FL          FL   49538 28.02  -82.50
## 278                        El Cajon CA          CA   94767 32.80 -116.96
## 279                       El Mirage AZ          AZ   42234 33.60 -112.32
## 280                        El Monte CA          CA  127195 34.07 -118.03
## 281                         El Paso TX          TX  603545 31.85 -106.44
## 282                      Eldersburg MD          MD   41194 39.41  -76.94
## 283                           Elgin IL          IL   99411 42.04  -88.29
## 284                       Elizabeth NJ          NJ  124552 40.67  -74.19
## 285                       Elk Grove CA          CA   99467 38.40 -121.37
## 286                         Elkhart IN          IN   51198 41.69  -85.97
## 287                   Ellicott City MD          MD   68337 39.27  -76.83
## 288                        Elmhurst IL          IL   45463 41.90  -87.94
## 289                          Elyria OH          OH   55811 41.38  -82.11
## 290                       Encinitas CA          CA   62273 33.05 -117.26
## 291                            Enid OK          OK   45935 36.41  -97.87
## 292                            Erie PA          PA   98968 42.13  -80.09
## 293                       Escondido CA          CA  137823 33.14 -117.07
## 294                          Euclid OH          OH   49602 41.59  -81.52
## 295                          Eugene OR          OR  146483 44.05 -123.11
## 296                          Euless TX          TX   54705 32.85  -97.08
## 297                        Evanston IL          IL   75419 42.05  -87.69
## 298                      Evansville IN          IN  114237 37.98  -87.54
## 299                         Everett WA          WA   97575 47.96 -122.20
## 300                       Fairfield CA          CA  107749 38.25 -122.04
## 301                       Fairfield CT          CT   59352 41.13  -73.26
## 302                       Fairfield OH          OH   43279 39.33  -84.54
## 303                      Fall River MA          MA   93128 41.71  -71.11
## 304                        Falmouth MA          MA   90561 41.55  -70.60
## 305                           Fargo ND          ND   92396 46.88  -96.82
## 306                Farmington Hills MI          MI   79530 42.49  -83.38
## 307                      Farmington NM          NM   44278 36.75 -108.19
## 308                    Fayetteville AR          AR   66288 36.07  -94.16
## 309                    Fayetteville NC          NC  124919 35.07  -78.90
## 310                     Federal Way WA          WA   80336 47.31 -122.34
## 311                         Findlay OH          OH   40571 41.04  -83.64
## 312                         Fishers IN          IN   58678 39.95  -86.02
## 313                       Fitchburg MA          MA   40565 42.59  -71.82
## 314                       Flagstaff AZ          AZ   58490 35.19 -111.62
## 315                           Flint MI          MI  115691 43.02  -83.69
## 316                 Florence-Graham CA          CA   63012 33.97 -118.24
## 317                      Florissant MO          MO   51644 38.80  -90.32
## 318                    Flower Mound TX          TX   70449 33.03  -97.09
## 319                          Folsom CA          CA   71775 38.68 -121.15
## 320                     Fond du Lac WI          WI   41787 43.77  -88.45
## 321                         Fontana CA          CA  178257 34.10 -117.46
## 322                    Fort Collins CO          CO  131505 40.56 -105.07
## 323                 Fort Lauderdale FL          FL  173597 26.14  -80.14
## 324                      Fort Myers FL          FL   53961 26.63  -81.85
## 325                      Fort Smith AR          AR   82304 35.37  -94.38
## 326                      Fort Wayne IN          IN  231147 41.07  -85.14
## 327                      Fort Worth TX          TX  633849 32.75  -97.34
## 328                 Fountain Valley CA          CA   56318 33.71 -117.95
## 329                   Fountainbleau FL          FL   67124 25.77  -80.35
## 330                      Framingham MA          MA   65103 42.31  -71.44
## 331                       Franconia VA          VA   42105 38.76  -77.15
## 332                       Frankfort KY          KY   27210 38.20  -84.86
## 333                        Franklin TN          TN   51478 35.93  -86.84
## 334                       Frederick MD          MD   58271 39.43  -77.42
## 335                        Freeport NY          NY   43377 40.65  -73.58
## 336                         Fremont CA          CA  202574 37.53 -122.00
## 337                          Fresno CA          CA  472517 36.78 -119.79
## 338                          Frisco TX          TX   80192 33.14  -96.81
## 339                       Fullerton CA          CA  137126 33.88 -117.93
## 340                     Gainesville FL          FL  127933 29.67  -82.34
## 341                    Gaithersburg MD          MD   61649 39.14  -77.22
## 342                       Galveston TX          TX   56205 29.30  -94.81
## 343                    Garden Grove CA          CA  167647 33.78 -117.96
## 344                         Gardena CA          CA   61550 33.89 -118.30
## 345                         Garland TX          TX  217609 32.91  -96.63
## 346                            Gary IN          IN   96950 41.60  -87.34
## 347                        Gastonia NC          NC   67937 35.25  -81.17
## 348                      Georgetown TX          TX   41398 30.65  -97.69
## 349                      Germantown MD          MD   66720 39.18  -77.26
## 350                         Gilbert AZ          AZ  186332 33.33 -111.76
## 351                          Gilroy CA          CA   46107 37.01 -121.58
## 352                     Glen Burnie MD          MD   40546 39.17  -76.60
## 353                        Glendale AZ          AZ  244734 33.58 -112.20
## 354                        Glendale CA          CA  204747 34.18 -118.25
## 355                        Glendora CA          CA   51929 34.15 -117.84
## 356                        Glenview IL          IL   47479 42.08  -87.82
## 357                        Goodyear AZ          AZ   49748 33.35 -112.41
## 358                     Grand Forks ND          ND   48195 47.92  -97.07
## 359                    Grand Island NE          NE   45052 40.92  -98.37
## 360                  Grand Junction CO          CO   46350 39.09 -108.55
## 361                   Grand Prairie TX          TX  144018 32.69  -97.02
## 362                    Grand Rapids MI          MI  193006 42.96  -85.66
## 363                       Grapevine TX          TX   51334 32.93  -97.07
## 364                     Great Falls MT          MT   55908 47.50 -111.29
## 365             Greater Carrollwood FL          FL   42586 28.07  -82.52
## 366                         Greeley CO          CO   88957 40.42 -104.74
## 367                       Green Bay WI          WI  100616 44.52  -87.99
## 368                      Greensboro NC          NC  233342 36.08  -79.83
## 369                      Greenville NC          NC   72617 35.60  -77.37
## 370                      Greenville SC          SC   55421 34.84  -82.37
## 371                       Greenwich CT          CT   64100 41.04  -73.59
## 372                       Greenwood IN          IN   42298 39.62  -86.11
## 373                         Gresham OR          OR  100674 45.50 -122.44
## 374                        Gulfport MS          MS   71400 30.39  -89.07
## 375                Hacienda Heights CA          CA   54439 34.00 -117.97
## 376                      Hackensack NJ          NJ   43923 40.89  -74.05
## 377                     Haltom City TX          TX   42053 32.82  -97.27
## 378                          Hamden CT          CT   60388 41.37  -72.89
## 379                        Hamilton NJ          NJ   91245 40.09  -74.39
## 380                        Hamilton OH          OH   61527 39.39  -84.56
## 381                         Hammond IN          IN   78051 41.62  -87.49
## 382                         Hampton VA          VA  148201 37.05  -76.29
## 383                         Hanford CA          CA   48892 36.33 -119.65
## 384                       Harlingen TX          TX   64198 26.20  -97.69
## 385                      Harrisburg PA          PA   47576 40.28  -76.88
## 386                    Harrisonburg VA          VA   41992 38.44  -78.87
## 387                        Hartford CT          CT  123836 41.77  -72.68
## 388                     Hattiesburg MS          MS   48728 31.31  -89.31
## 389                       Haverhill MA          MA   61928 42.78  -71.09
## 390                       Hawthorne CA          CA   87677 33.91 -118.35
## 391                         Hayward CA          CA  140704 37.63 -122.10
## 392                          Helena MT          MT   27383 46.60 -112.03
## 393                           Hemet CA          CA   71300 33.73 -117.00
## 394                       Hempstead NY          NY   52769 40.70  -73.62
## 395                       Henderson NV          NV  255646 36.03 -115.00
## 396                  Hendersonville TN          TN   45358 36.29  -86.60
## 397                        Hesperia CA          CA   75966 34.42 -117.30
## 398                         Hialeah FL          FL  224644 25.86  -80.30
## 399                         Hickory NC          NC   40968 35.74  -81.33
## 400                      Hicksville NY          NY   41452 40.76  -73.53
## 401                      High Point NC          NC   96011 35.98  -80.00
## 402                        Highland CA          CA   52692 34.12 -117.19
## 403                 Highlands Ranch CO          CO  109009 39.55 -104.97
## 404                       Hillsboro OR          OR   85046 45.53 -122.94
## 405                            Hilo HI          HI   43466 19.70 -155.09
## 406                         Hingham MA          MA   41654 42.24  -70.89
## 407                         Hoboken NJ          NJ   39972 40.74  -74.03
## 408                 Hoffman Estates IL          IL   50674 42.06  -88.14
## 409                       Hollywood FL          FL  145877 26.03  -80.16
## 410                         Holyoke MA          MA   40143 42.21  -72.64
## 411                        Honolulu HI          HI  386345 21.32 -157.80
## 412                          Hoover AL          AL   67576 33.38  -86.82
## 413                         Houston TX          TX 2043005 29.77  -95.39
## 414                    Huntersville NC          NC   43970 35.41  -80.86
## 415                Huntington Beach CA          CA  197124 33.69 -118.01
## 416                 Huntington Park CA          CA   64308 33.98 -118.22
## 417                      Huntington WV          WV   47905 38.41  -82.43
## 418                      Huntsville AL          AL  169155 34.71  -86.63
## 419                      Hutchinson KS          KS   40386 38.07  -97.91
## 420                     Idaho Falls ID          ID   52431 43.49 -112.03
## 421                    Independence MO          MO  110124 39.09  -94.35
## 422                    Indianapolis IN          IN  771725 39.78  -86.15
## 423                           Indio CA          CA   69736 33.72 -116.23
## 424                       Inglewood CA          CA  116797 33.96 -118.34
## 425                       Iowa City IA          IA   64490 41.66  -91.54
## 426                     Irondequoit NY          NY   51825 43.21  -77.57
## 427                          Irvine CA          CA  199755 33.66 -117.80
## 428                          Irving TX          TX  194407 32.86  -96.97
## 429                       Irvington NJ          NJ   61373 40.72  -74.23
## 430                         Jackson MS          MS  175085 32.32  -90.21
## 431                         Jackson TN          TN   62552 35.63  -88.83
## 432                    Jacksonville FL          FL  809874 30.33  -81.66
## 433                    Jacksonville NC          NC   68201 34.76  -77.40
## 434                      Janesville WI          WI   61952 42.68  -89.02
## 435                  Jefferson City MO          MO   39062 38.57  -92.19
## 436                     Jersey City NJ          NJ  237125 40.71  -74.06
## 437                    Johnson City TN          TN   59183 36.33  -82.37
## 438                          Joliet IL          IL  141246 41.53  -88.12
## 439                       Jonesboro AR          AR   59233 35.82  -90.69
## 440                          Joplin MO          MO   47060 37.08  -94.50
## 441                          Juneau AK          AK   31187 58.30 -134.42
## 442                         Jupiter FL          FL   51126 26.92  -80.10
## 443                       Kalamazoo MI          MI   73504 42.27  -85.59
## 444                     Kansas City KS          KS  143402 39.12  -94.73
## 445                     Kansas City MO          MO  441833 39.12  -94.55
## 446                          Keller TX          TX   39928 32.93  -97.23
## 447                   Kendale Lakes FL          FL   62715 25.71  -80.41
## 448                         Kendall FL          FL   84549 25.67  -80.34
## 449                          Kenner LA          LA   69514 29.99  -90.25
## 450                       Kennewick WA          WA   63593 46.20 -119.17
## 451                         Kenosha WI          WI   94673 42.58  -87.85
## 452                            Kent WA          WA   82896 47.39 -122.24
## 453                        Kentwood MI          MI   47421 42.88  -85.59
## 454                       Kettering OH          OH   55473 39.70  -84.15
## 455                         Killeen TX          TX  106441 31.10  -97.72
## 456                       Kingsport TN          TN   43776 36.53  -82.56
## 457                        Kirkland WA          WA   45913 47.68 -122.19
## 458                       Kissimmee FL          FL   67085 28.30  -81.41
## 459                       Knoxville TN          TN  172000 35.97  -83.95
## 460                          Kokomo IN          IN   46130 40.48  -86.13
## 461                       La Crosse WI          WI   50147 43.83  -91.23
## 462                        La Habra CA          CA   59799 33.93 -117.95
## 463                         La Mesa CA          CA   53942 32.77 -117.02
## 464                       La Mirada CA          CA   50598 33.90 -118.01
## 465                       La Puente CA          CA   42901 34.03 -117.95
## 466                       La Quinta CA          CA   41239 33.67 -116.29
## 467                       Lafayette IN          IN   62589 40.41  -86.87
## 468                       Lafayette LA          LA  112317 30.22  -92.03
## 469                          Laguna CA          CA   49714 38.42 -121.42
## 470                   Laguna Niguel CA          CA   67009 33.53 -117.70
## 471                    Lake Charles LA          LA   69910 30.21  -93.20
## 472                   Lake Elsinore CA          CA   43336 33.67 -117.32
## 473                     Lake Forest CA          CA   76859 33.63 -117.70
## 474                Lake Havasu City AZ          AZ   57685 34.50 -114.31
## 475                  Lake Magdalene FL          FL   40413 28.07  -82.47
## 476                        Lakeland FL          FL   92011 28.04  -81.96
## 477                       Lakeville MN          MN   52745 44.68  -93.24
## 478                        Lakewood CA          CA   82632 33.85 -118.12
## 479                        Lakewood CO          CO  140154 39.70 -105.11
## 480                        Lakewood NJ          NJ   43436 40.09  -74.21
## 481                        Lakewood OH          OH   51999 41.48  -81.80
## 482                        Lakewood WA          WA   58995 47.16 -122.53
## 483                       Lancaster CA          CA  131779 34.69 -118.18
## 484                       Lancaster PA          PA   54390 40.04  -76.30
## 485                         Lansing MI          MI  117236 42.71  -84.55
## 486                          Laredo TX          TX  218041 27.53  -99.49
## 487                           Largo FL          FL   71688 27.91  -82.78
## 488                      Las Cruces NM          NM   81473 32.34 -106.76
## 489                       Las Vegas NV          NV  553807 36.21 -115.22
## 490                      Lauderhill FL          FL   60308 26.17  -80.23
## 491                        Lawrence IN          IN   42451 39.87  -85.99
## 492                        Lawrence KS          KS   83948 38.96  -95.26
## 493                        Lawrence MA          MA   72669 42.70  -71.16
## 494                          Lawton OK          OK   91453 34.60  -98.42
## 495                          Layton UT          UT   63096 41.08 -111.95
## 496                     League City TX          TX   65696 29.49  -95.11
## 497                    Lee's Summit MO          MO   83837 38.92  -94.38
## 498                    Lehigh Acres FL          FL   52474 26.60  -81.63
## 499                          Lenexa KS          KS   43935 38.96  -94.79
## 500                      Leominster MA          MA   42479 42.52  -71.77
## 501                       Levittown NY          NY   52390 40.72  -73.51
## 502                       Levittown PA          PA   52889 40.15  -74.85
## 503                      Lewisville TX          TX   97496 33.04  -96.98
## 504                       Lexington KY          KY  274245 38.04  -84.46
## 505                            Lima OH          OH   39543 40.74  -84.11
## 506                         Lincoln CA          CA   40805 38.89 -121.30
## 507                         Lincoln NE          NE  245301 40.82  -96.69
## 508                          Linden NJ          NJ   39964 40.63  -74.24
## 509                     Little Rock AR          AR  184323 34.72  -92.35
## 510                       Littleton CO          CO   41063 39.59 -105.01
## 511                       Livermore CA          CA   81787 37.69 -121.76
## 512                         Livonia MI          MI   97722 42.40  -83.37
## 513                            Lodi CA          CA   64068 38.12 -121.29
## 514                           Logan UT          UT   45262 41.74 -111.84
## 515                         Lombard IL          IL   42917 41.87  -88.01
## 516                          Lompoc CA          CA   40924 34.66 -120.47
## 517                      Long Beach CA          CA  486571 33.79 -118.16
## 518                        Longmont CO          CO   85988 40.17 -105.11
## 519                        Longview TX          TX   76372 32.52  -94.76
## 520                          Lorain OH          OH   67692 41.44  -82.18
## 521                     Los Angeles CA          CA 3911500 34.11 -118.41
## 522                      Louisville KY          KY  241072 38.22  -85.74
## 523                        Loveland CO          CO   61578 40.42 -105.07
## 524                          Lowell MA          MA  103085 42.64  -71.32
## 525                    Lower Merion PA          PA   60579 40.03  -75.28
## 526                         Lubbock TX          TX  213587 33.58 -101.88
## 527                       Lynchburg VA          VA   65485 37.40  -79.19
## 528                            Lynn MA          MA   89786 42.47  -70.96
## 529                         Lynwood CA          CA   72890 33.92 -118.20
## 530                        MacAllen TX          TX  125985 26.22  -98.24
## 531                       MacKinney TX          TX  108976 33.20  -96.65
## 532                         MacLean VA          VA   39731 38.94  -77.18
## 533                           Macon GA          GA   93755 32.84  -83.66
## 534                          Madera CA          CA   53222 36.97 -120.08
## 535                         Madison AL          AL   39516 34.70  -86.75
## 536                         Madison WI          WI  227642 43.08  -89.39
## 537                          Malden MA          MA   55066 42.43  -71.06
## 538                      Manchester NH          NH  110384 42.98  -71.44
## 539                       Manhattan KS          KS   45671 39.19  -96.59
## 540                       Mansfield OH          OH   50010 40.76  -82.53
## 541                         Manteca CA          CA   69588 37.80 -121.22
## 542                     Maple Grove MN          MN   62021 45.11  -93.46
## 543                         Margate FL          FL   55844 26.25  -80.21
## 544                        Marietta GA          GA   61946 33.95  -84.54
## 545                      Marshfield MA          MA   60784 42.09  -70.71
## 546                         Medford MA          MA   53579 42.42  -71.11
## 547                         Medford OR          OR   70717 42.34 -122.85
## 548                       Melbourne FL          FL   77320 28.11  -80.64
## 549                         Memphis TN          TN  639736 35.11  -90.01
## 550                          Mentor OH          OH   49597 41.69  -81.33
## 551                          Merced CA          CA   74415 37.30 -120.48
## 552                         Meriden CT          CT   59558 41.54  -72.80
## 553                        Meridian ID          ID   48376 43.61 -116.40
## 554                            Mesa AZ          AZ  461167 33.42 -111.74
## 555                        Mesquite TX          TX  132746 32.77  -96.60
## 556                        Metairie LA          LA  141606 30.00  -90.18
## 557                         Methuen MA          MA   45666 42.73  -71.19
## 558                     Miami Beach FL          FL   89531 25.81  -80.14
## 559                           Miami FL          FL  386740 25.78  -80.21
## 560                      Middletown CT          CT   51189 41.55  -72.65
## 561                      Middletown OH          OH   53027 39.51  -84.37
## 562                         Midland MI          MI   42516 43.62  -84.23
## 563                         Midland TX          TX   98261 32.03 -102.10
## 564                    Midwest City OK          OK   55090 35.46  -97.37
## 565                         Milford CT          CT   51360 41.23  -73.06
## 566                        Milpitas CA          CA   62671 37.43 -121.89
## 567                       Milwaukee WI          WI  575250 43.06  -87.97
## 568                     Minneapolis MN          MN  364726 44.96  -93.27
## 569                      Minnetonka MN          MN   49918 44.93  -93.46
## 570                         Miramar FL          FL  123116 25.98  -80.33
## 571                       Mishawaka IN          IN   49534 41.67  -86.17
## 572                         Mission TX          TX   65215 26.21  -98.32
## 573                   Mission Viejo CA          CA   97001 33.61 -117.65
## 574                        Missoula MT          MT   64391 46.87 -114.01
## 575                   Missouri City TX          TX   73529 29.57  -95.54
## 576                          Mobile AL          AL  188467 30.68  -88.09
## 577                         Modesto CA          CA  221674 37.66 -120.99
## 578                          Moline IL          IL   42427 41.49  -90.49
## 579                          Monroe LA          LA   51292 32.51  -92.08
## 580                       Montclair NJ          NJ   39801 40.82  -74.21
## 581                      Montebello CA          CA   64727 34.02 -118.11
## 582                   Monterey Park CA          CA   63766 34.05 -118.13
## 583                      Montgomery AL          AL  197653 32.35  -86.28
## 584              Montgomery Village MD          MD   42453 39.18  -77.19
## 585                      Montpelier VT          VT    8003 44.26  -72.57
## 586                           Moore OK          OK   48749 35.33  -97.47
## 587                   Moreno Valley CA          CA  174068 33.93 -117.21
## 588                  Mount Pleasant SC          SC   61690 32.82  -79.86
## 589                  Mount Prospect IL          IL   55100 42.07  -87.94
## 590                    Mount Vernon NY          NY   68048 40.91  -73.83
## 591                   Mountain View CA          CA   67788 37.40 -122.08
## 592                          Muncie IN          IN   64771 40.20  -85.39
## 593                    Murfreesboro TN          TN   88161 35.85  -86.39
## 594                          Murray UT          UT   56848 40.65 -111.89
## 595                        Murrieta CA          CA   97999 33.56 -117.21
## 596                        Muskegon MI          MI   40058 43.23  -86.26
## 597                           Nampa ID          ID   77893 43.58 -116.56
## 598                            Napa CA          CA   77884 38.30 -122.30
## 599                      Naperville IL          IL  147178 41.76  -88.15
## 600                          Nashua NH          NH   87113 42.75  -71.49
## 601                       Nashville TN          TN  523547 36.17  -86.78
## 602                   National City CA          CA   64065 32.67 -117.10
## 603                     New Bedford MA          MA   94039 41.66  -70.94
## 604                   New Braunfels TX          TX   47533 29.70  -98.12
## 605                     New Britain CT          CT   71362 41.68  -72.79
## 606                   New Brunswick NJ          NJ   51044 40.49  -74.45
## 607                       New Haven CT          CT  125030 41.31  -72.92
## 608                     New Milford CT          CT   58524 41.58  -73.41
## 609                     New Orleans LA          LA  454207 30.07  -89.93
## 610                    New Rochelle NY          NY   72865 40.92  -73.78
## 611                        New York NY          NY 8124427 40.67  -73.94
## 612                          Newark CA          CA   43018 37.52 -122.03
## 613                          Newark NJ          NJ  281378 40.72  -74.17
## 614                          Newark OH          OH   46870 40.07  -82.42
## 615                   Newport Beach CA          CA   79305 33.61 -117.87
## 616                    Newport News VA          VA  183941 37.08  -76.51
## 617                          Newton MA          MA   84969 42.33  -71.21
## 618                   Niagara Falls NY          NY   52509 43.09  -79.02
## 619                         Norfolk VA          VA  248182 36.92  -76.24
## 620                          Normal IL          IL   52497 40.52  -89.00
## 621                          Norman OK          OK  102925 35.23  -97.34
## 622                   North Atlanta GA          GA   45739 33.86  -84.33
## 623                    North Bergen NJ          NJ   64575 40.79  -74.03
## 624                  North Bethesda MD          MD   45600 39.04  -77.12
## 625        North Brunswick Township NJ          NJ   39567 40.45  -74.48
## 626                North Charleston SC          SC   83247 32.91  -80.04
## 627                North Fort Myers FL          FL   47790 26.71  -81.89
## 628                 North Highlands CA          CA   46156 38.67 -121.38
## 629                 North Las Vegas NV          NV  177751 36.27 -115.14
## 630               North Little Rock AR          AR   58771 34.79  -92.26
## 631               North Miami Beach FL          FL   39551 25.93  -80.17
## 632                     North Miami FL          FL   58238 25.90  -80.17
## 633                      North Port FL          FL   41919 27.05  -82.19
## 634            North Richland Hills TX          TX   64317 32.86  -97.22
## 635                         Norwalk CA          CA  110002 33.91 -118.08
## 636                         Norwalk CT          CT   84801 41.09  -73.42
## 637                          Novato CA          CA   49005 38.09 -122.56
## 638                            Novi MI          MI   55079 42.48  -83.49
## 639                        O'Fallon MO          MO   79091 38.78  -90.71
## 640                        Oak Lawn IL          IL   54638 41.72  -87.75
## 641                        Oak Park IL          IL   48922 41.89  -87.79
## 642                         Oakland CA          CA  393632 37.77 -122.22
## 643                           Ocala FL          FL   50241 29.19  -82.13
## 644                       Oceanside CA          CA  172251 33.23 -117.31
## 645                          Odessa TX          TX   91246 31.87 -102.35
## 646                           Ogden UT          UT   78572 41.23 -111.97
## 647                   Oklahoma City OK          OK  538141 35.47  -97.51
## 648                          Olathe KS          KS  118165 38.89  -94.81
## 649                         Olympia WA          WA   45403 47.04 -122.89
## 650                           Omaha NE          NE  417809 41.26  -96.01
## 651                         Ontario CA          CA  175805 34.05 -117.61
## 652                          Orange CA          CA  134868 33.81 -117.82
## 653                            Orem UT          UT   94758 40.30 -111.70
## 654                     Orland Park IL          IL   56731 41.61  -87.85
## 655                         Orlando FL          FL  211226 28.50  -81.37
## 656                         Oshkosh WI          WI   62967 44.02  -88.55
## 657                   Overland Park KS          KS  169520 38.91  -94.68
## 658                       Owensboro KY          KY   54513 37.76  -87.12
## 659                          Oxnard CA          CA  190658 34.20 -119.21
## 660                         Pahrump NV          NV   44614 36.20 -115.99
## 661                        Palatine IL          IL   68308 42.11  -88.04
## 662                        Palm Bay FL          FL   91080 27.99  -80.66
## 663              Palm Beach Gardens FL          FL   50768 26.84  -80.12
## 664                      Palm Coast FL          FL   43487 29.57  -81.21
## 665                     Palm Desert CA          CA   50126 33.73 -116.38
## 666                     Palm Harbor FL          FL   65500 28.09  -82.76
## 667                    Palm Springs CA          CA   47434 33.78 -116.53
## 668                        Palmdale CA          CA  139337 34.61 -118.09
## 669                       Palo Alto CA          CA   56084 37.40 -122.14
## 670                        Paradise NV          NV  221051 36.08 -115.13
## 671                       Paramount CA          CA   57672 33.90 -118.16
## 672                          Parker CO          CO   45478 39.51 -104.76
## 673        Parkway-South Sacramento CA          CA   39984 38.51 -121.45
## 674                           Parma OH          OH   81917 41.38  -81.73
## 675  Parsippany-Troy Hills Township NJ          NJ   52051 40.86  -74.42
## 676                        Pasadena CA          CA  146676 34.16 -118.14
## 677                        Pasadena TX          TX  145351 29.66  -95.15
## 678                           Pasco WA          WA   45774 46.25 -119.13
## 679                         Passaic NJ          NJ   69035 40.86  -74.13
## 680                        Paterson NJ          NJ  151523 40.91  -74.16
## 681                       Pawtucket RI          RI   75297 41.87  -71.37
## 682                         Peabody MA          MA   50698 42.53  -70.97
## 683                        Pearland TX          TX   59287 29.56  -95.28
## 684                  Pembroke Pines FL          FL  160157 26.01  -80.34
## 685                      Penn Hills PA          PA   44124 40.48  -79.83
## 686                       Pensacola FL          FL   53652 30.44  -87.19
## 687                          Peoria AZ          AZ  146634 33.69 -112.24
## 688                          Peoria IL          IL  112894 40.74  -89.61
## 689                          Perris CA          CA   48555 33.79 -117.22
## 690                     Perth Amboy NJ          NJ   49448 40.52  -74.27
## 691                        Petaluma CA          CA   55536 38.24 -122.63
## 692                           Pharr TX          TX   63806 26.18  -98.19
## 693                    Philadelphia PA          PA 1439814 40.01  -75.13
## 694                         Phoenix AZ          AZ 1450884 33.54 -112.07
## 695                     Pico Rivera CA          CA   66874 33.99 -118.09
## 696                          Pierre SD          SD   14052 44.37 -100.34
## 697                      Pine Bluff AR          AR   52802 34.21  -92.02
## 698                      Pine Hills FL          FL   46248 28.58  -81.46
## 699                   Pinellas Park FL          FL   46469 27.86  -82.71
## 700                       Pittsburg CA          CA   64106 38.02 -121.89
## 701                      Pittsburgh PA          PA  316272 40.44  -79.98
## 702                      Pittsfield MA          MA   43821 42.45  -73.26
## 703                       Placentia CA          CA   49679 33.88 -117.85
## 704                      Plainfield NJ          NJ   47769 40.62  -74.42
## 705                           Plano TX          TX  260415 33.05  -96.75
## 706                      Plantation FL          FL   86330 26.13  -80.26
## 707                      Pleasanton CA          CA   67119 37.67 -121.89
## 708                        Plymouth MA          MA  133313 41.96  -70.67
## 709                        Plymouth MN          MN   73505 45.02  -93.46
## 710                       Pocatello ID          ID   50496 42.88 -112.47
## 711                          Pomona CA          CA  157501 34.06 -117.76
## 712                   Pompano Beach FL          FL   90446 26.24  -80.13
## 713                         Pontiac MI          MI   67952 42.65  -83.29
## 714                     Port Arthur TX          TX   56728 29.90  -93.93
## 715                  Port Charlotte FL          FL   49840 26.99  -82.11
## 716                     Port Orange FL          FL   55891 29.11  -81.01
## 717                Port Saint Lucie FL          FL  126377 27.28  -80.35
## 718                         Portage MI          MI   46666 42.20  -85.59
## 719                     Porterville CA          CA   45703 36.06 -119.03
## 720                        Portland ME          ME   62882 43.66  -70.28
## 721                        Portland OR          OR  542751 45.54 -122.66
## 722                      Portsmouth VA          VA   98664 36.86  -76.36
## 723                         Potomac MD          MD   45119 39.03  -77.20
## 724                           Poway CA          CA   49943 32.99 -117.02
## 725                        Prescott AZ          AZ   41432 34.58 -112.45
## 726                      Providence RI          RI  178295 41.82  -71.42
## 727                           Provo UT          UT  105832 40.25 -111.64
## 728                          Pueblo CO          CO  104659 38.27 -104.62
## 729                          Quincy IL          IL   39549 39.93  -91.39
## 730                          Quincy MA          MA   89347 42.26  -71.01
## 731                          Racine WI          WI   78703 42.73  -87.81
## 732                         Raleigh NC          NC  350822 35.82  -78.66
## 733                  Rancho Cordova CA          CA   59972 38.60 -121.30
## 734                Rancho Cucamonga CA          CA  177721 34.12 -117.57
## 735             Rancho Palos Verdes CA          CA   42966 33.76 -118.36
## 736          Rancho Santa Margarita CA          CA   52447 33.64 -117.60
## 737                      Rapid City SD          SD   62302 44.08 -103.23
## 738                         Reading PA          PA   79476 40.34  -75.93
## 739                           Redan GA          GA   40141 33.74  -84.16
## 740                         Redding CA          CA   93865 40.57 -122.36
## 741                         Redford MI          MI   49542 42.39  -83.29
## 742                        Redlands CA          CA   71605 34.06 -117.17
## 743                         Redmond WA          WA   47662 47.67 -122.11
## 744                   Redondo Beach CA          CA   68669 33.86 -118.38
## 745                    Redwood City CA          CA   71340 37.52 -122.21
## 746                            Reno NV          NV  206626 39.54 -119.82
## 747                          Renton WA          WA   57369 47.48 -122.20
## 748                          Reston VA          VA   61977 38.95  -77.35
## 749                          Revere MA          MA   46259 42.42  -70.99
## 750                          Rialto CA          CA  103423 34.11 -117.39
## 751                      Richardson TX          TX  107481 32.97  -96.71
## 752                        Richland WA          WA   46156 46.29 -119.29
## 753                        Richmond CA          CA  103818 37.95 -122.36
## 754                        Richmond VA          VA  189498 37.53  -77.47
## 755                      Rio Rancho NM          NM   66833 35.27 -106.66
## 756                       Riverside CA          CA  306351 33.94 -117.40
## 757                         Roanoke VA          VA   90410 37.28  -79.96
## 758                 Rochester Hills MI          MI   68879 42.67  -83.16
## 759                       Rochester MN          MN   98227 44.01  -92.48
## 760                       Rochester NY          NY  209587 43.17  -77.62
## 761                       Rock Hill SC          SC   61899 34.94  -81.03
## 762                        Rockford IL          IL  153148 42.27  -89.06
## 763                         Rocklin CA          CA   59546 38.80 -121.24
## 764                       Rockville MD          MD   63516 39.08  -77.15
## 765                     Rocky Mount NC          NC   56008 35.96  -77.81
## 766                          Rogers AR          AR   46984 36.33  -94.13
## 767                    Rohnert Park CA          CA   41154 38.35 -122.70
## 768                      Romeoville IL          IL   46960 41.65  -88.09
## 769                        Rosemead CA          CA   56542 34.07 -118.08
## 770                       Roseville CA          CA  120444 38.76 -121.29
## 771                       Roseville MI          MI   47190 42.51  -82.94
## 772                         Roswell GA          GA   76825 34.04  -84.36
## 773                         Roswell NM          NM   43788 33.37 -104.53
## 774                      Round Rock TX          TX   95330 30.52  -97.67
## 775                 Rowland Heights CA          CA   53112 33.98 -117.89
## 776                         Rowlett TX          TX   57174 32.91  -96.55
## 777                       Royal Oak MI          MI   57043 42.51  -83.15
## 778                      Sacramento CA          CA  480392 38.57 -121.47
## 779                         Saginaw MI          MI   56685 43.42  -83.95
## 780                   Saint Charles MO          MO   62284 38.79  -90.52
## 781              Saint Clair Shores MI          MI   60089 42.49  -82.89
## 782                     Saint Cloud MN          MN   59074 45.55  -94.17
## 783                    Saint George UT          UT   63952 37.08 -113.58
## 784                    Saint Joseph MO          MO   71282 39.76  -94.82
## 785                     Saint Louis MO          MO  315546 38.64  -90.24
## 786                Saint Louis Park MN          MN   44032 44.95  -93.36
## 787                      Saint Paul MN          MN  272469 44.95  -93.10
## 788                    Saint Peters MO          MO   54258 38.78  -90.61
## 789                Saint Petersburg FL          FL  245804 27.76  -82.64
## 790                           Salem NH          NH   42859 42.53  -70.87
## 791                           Salem OR          OR  148942 44.92 -123.02
## 792                          Salina KS          KS   45715 38.82  -97.62
## 793                         Salinas CA          CA  150050 36.68 -121.64
## 794                  Salt Lake City UT          UT  177318 40.78 -111.93
## 795                      San Angelo TX          TX   88143 31.45 -100.45
## 796                     San Antonio TX          TX 1278171 29.46  -98.51
## 797                  San Bernardino CA          CA  205743 34.14 -117.29
## 798                       San Bruno CA          CA   39523 37.62 -122.43
## 799                San Buenaventura CA          CA  106518 34.27 -119.26
## 800                    San Clemente CA          CA   64987 33.45 -117.61
## 801                       San Diego CA          CA 1299352 32.81 -117.14
## 802                   San Francisco CA          CA  723724 37.77 -122.45
## 803                     San Gabriel CA          CA   41861 34.09 -118.10
## 804                        San Jose CA          CA  897883 37.30 -121.85
## 805                     San Leandro CA          CA   80015 37.71 -122.15
## 806                 San Luis Obispo CA          CA   44098 35.27 -120.66
## 807                      San Marcos CA          CA   73020 33.14 -117.17
## 808                      San Marcos TX          TX   49051 29.88  -97.93
## 809                       San Mateo CA          CA   89495 37.56 -122.31
## 810                      San Rafael CA          CA   55133 37.98 -122.51
## 811                       San Ramon CA          CA   46278 37.76 -121.95
## 812                        Sandwich MA          MA   51140 41.76  -70.50
## 813                   Sandy Springs GA          GA   96496 33.94  -84.37
## 814                           Sandy UT          UT   89698 40.57 -111.85
## 815                         Sanford FL          FL   46777 28.79  -81.28
## 816                       Santa Ana CA          CA  344086 33.74 -117.88
## 817                   Santa Barbara CA          CA   86115 34.43 -119.72
## 818                     Santa Clara CA          CA  102178 37.37 -121.97
## 819                   Santa Clarita CA          CA  172730 34.41 -118.51
## 820                      Santa Cruz CA          CA   54583 36.97 -122.04
## 821                        Santa Fe NM          NM   70598 35.68 -105.95
## 822                     Santa Maria CA          CA   87107 34.94 -120.44
## 823                    Santa Monica CA          CA   89112 34.01 -118.49
## 824                      Santa Rosa CA          CA  156669 38.45 -122.70
## 825                          Santee CA          CA   52505 32.86 -116.98
## 826                        Sarasota FL          FL   53422 27.34  -82.55
## 827                        Savannah GA          GA  124898 32.02  -81.13
## 828                      Sayreville NJ          NJ   43390 40.47  -74.32
## 829                      Schaumburg IL          IL   73071 42.03  -88.08
## 830                     Schenectady NY          NY   59930 42.80  -73.93
## 831                      Scottsdale AZ          AZ  230949 33.69 -111.87
## 832                        Scranton PA          PA   72516 41.40  -75.67
## 833        Seattle Hill-Silver Firs WA          WA   42238 47.88 -121.16
## 834                         Seattle WA          WA  570430 47.62 -122.35
## 835                          Severn MD          MD   43718 39.14  -76.69
## 836                         Shawnee KS          KS   59626 39.02  -94.80
## 837                       Sheboygan WI          WI   48123 43.75  -87.73
## 838                         Shelton CT          CT   39988 41.30  -73.14
## 839                       Shoreline WA          WA   51316 47.75 -122.36
## 840                      Shreveport LA          LA  196228 32.47  -93.80
## 841                    Sierra Vista AZ          AZ   42088 31.57 -110.32
## 842                   Silver Spring MD          MD   78119 39.01  -77.02
## 843                     Simi Valley CA          CA  121033 34.26 -118.75
## 844                      Sioux City IA          IA   82863 42.50  -96.39
## 845                     Sioux Falls SD          SD  143534 43.54  -96.73
## 846                          Skokie IL          IL   64350 42.04  -87.74
## 847                          Smyrna GA          GA   47442 33.87  -84.52
## 848                      Somerville MA          MA   74802 42.39  -71.10
## 849                      South Bend IN          IN  102927 41.68  -86.27
## 850                      South Gate CA          CA  100612 33.94 -118.19
## 851                      South Hill WA          WA   47384 47.14 -122.27
## 852             South San Francisco CA          CA   58176 37.66 -122.42
## 853                    South Valley NM          NM   39544 35.01 -106.68
## 854                  South Whittier CA          CA   59657 33.93 -118.03
## 855                       Southaven MS          MS   40806 34.97  -90.00
## 856                      Southfield MI          MI   76506 42.48  -83.26
## 857                      Southglenn CO          CO   41951 39.59 -104.95
## 858                          Sparks NV          NV   88518 39.54 -119.74
## 859                         Spokane WA          WA  197513 47.67 -117.41
## 860                     Spring Hill FL          FL  103782 28.48  -82.56
## 861                   Spring Valley NV          NV  176522 36.11 -115.24
## 862                      Springdale AR          AR   58761 36.18  -94.15
## 863                     Springfield IL          IL  116725 39.78  -89.64
## 864                     Springfield MA          MA  152095 42.12  -72.54
## 865                     Springfield MO          MO  150128 37.20  -93.29
## 866                     Springfield OH          OH   63915 39.93  -83.80
## 867                     Springfield OR          OR   56575 44.05 -122.98
## 868                        Stamford CT          CT  122011 41.10  -73.55
## 869                   State College PA          PA   42420 40.79  -77.86
## 870                Sterling Heights MI          MI  127027 42.58  -83.03
## 871                        Sterling VA          VA   56529 39.01  -77.43
## 872                      Stillwater OK          OK   43473 36.13  -97.07
## 873                        Stockton CA          CA  299188 37.97 -121.31
## 874                       Stratford CT          CT   51466 41.20  -73.13
## 875                    Strongsville OH          OH   45073 41.31  -81.83
## 876                         Suffolk VA          VA   84396 36.70  -76.64
## 877                      Sugar Land TX          TX   78502 29.62  -95.62
## 878                          Sumter SC          SC   40018 33.94  -80.39
## 879                        Sun City AZ          AZ   41380 33.62 -112.28
## 880                       Sunnyvale CA          CA  125486 37.39 -122.03
## 881                         Sunrise FL          FL   92094 26.15  -80.30
## 882                   Sunrise Manor NV          NV  195581 36.19 -115.05
## 883                        Surprise AZ          AZ   74962 33.66 -112.47
## 884                        Syracuse NY          NY  140793 43.04  -76.14
## 885                          Tacoma WA          WA  197621 47.25 -122.46
## 886                     Tallahassee FL          FL  154114 30.46  -84.28
## 887                         Tamarac FL          FL   60021 26.20  -80.26
## 888                         Tamiami FL          FL   72493 25.76  -80.40
## 889                           Tampa FL          FL  328578 27.96  -82.48
## 890                         Taunton MA          MA   57377 41.90  -71.09
## 891                          Taylor MI          MI   64874 42.23  -83.27
## 892                    Taylorsville UT          UT   58200 40.66 -111.94
## 893                         Teaneck NJ          NJ   40197 40.89  -74.01
## 894                        Temecula CA          CA   90347 33.50 -117.13
## 895                           Tempe AZ          AZ  158313 33.39 -111.93
## 896                          Temple TX          TX   55916 31.10  -97.36
## 897                     Terre Haute IN          IN   56544 39.47  -87.38
## 898                      Texas City TX          TX   44321 29.41  -94.96
## 899                      The Colony TX          TX   45532 33.09  -96.89
## 900                    The Hammocks FL          FL   75402 25.67  -80.44
## 901                   The Woodlands TX          TX   80285 30.16  -95.49
## 902                        Thornton CO          CO  109695 39.89 -104.96
## 903                   Thousand Oaks CA          CA  130136 34.19 -118.87
## 904                          Tigard OR          OR   48122 45.43 -122.77
## 905                     Tinley Park IL          IL   59056 41.57  -87.80
## 906                      Titusville FL          FL   43054 28.59  -80.82
## 907                          Toledo OH          OH  305292 41.66  -83.58
## 908                      Toms River NJ          NJ  127934 39.94  -74.17
## 909                   Tonawanda CDP NY          NY   59175 42.98  -78.88
## 910                          Topeka KS          KS  121229 39.04  -95.69
## 911                        Torrance CA          CA  146264 33.83 -118.34
## 912                  Town'n'Country FL          FL   80599 28.01  -82.58
## 913                          Towson MD          MD   54075 39.40  -76.62
## 914                           Tracy CA          CA   89639 37.74 -121.43
## 915                         Trenton NJ          NJ   84653 40.22  -74.76
## 916                            Troy MI          MI   81296 42.58  -83.14
## 917                            Troy NY          NY   47993 42.73  -73.68
## 918                        Tuckahoe VA          VA   43996 37.59  -77.59
## 919                          Tucson AZ          AZ  525268 32.20 -110.89
## 920                          Tulare CA          CA   51365 36.20 -119.34
## 921                           Tulsa OK          OK  379833 36.13  -95.92
## 922                         Turlock CA          CA   70570 37.50 -120.85
## 923                      Tuscaloosa AL          AL   80164 33.24  -87.54
## 924                          Tustin CA          CA   69024 33.73 -117.81
## 925                      Twin Falls ID          ID   39383 42.56 -114.46
## 926                           Tyler TX          TX   92155 32.33  -95.30
## 927                      Union City CA          CA   70125 37.60 -122.02
## 928                      Union City NJ          NJ   65939 40.77  -74.03
## 929                           Union NJ          NJ   57198 40.70  -74.27
## 930                          Upland CA          CA   75365 34.12 -117.66
## 931                          Urbana IL          IL   39834 40.11  -88.21
## 932                           Utica NY          NY   58151 43.10  -75.23
## 933                       Vacaville CA          CA   98110 38.36 -121.97
## 934                        Valdosta GA          GA   45909 30.85  -83.28
## 935                         Vallejo CA          CA  121146 38.11 -122.26
## 936                       Vancouver WA          WA  161034 45.63 -122.64
## 937                  Vestavia Hills AL          AL   39397 33.43  -86.79
## 938                        Victoria TX          TX   62296 28.82  -96.98
## 939                     Victorville CA          CA   87903 34.52 -117.33
## 940                        Vineland NJ          NJ   58511 39.46  -75.00
## 941                  Virginia Beach VA          VA  453884 36.74  -76.04
## 942                         Visalia CA          CA  110620 36.33 -119.32
## 943                           Vista CA          CA   93266 33.19 -117.24
## 944                      WASHINGTON DC          DC  548359 38.91  -77.02
## 945                            Waco TX          TX  119911 31.57  -97.18
## 946                    Walnut Creek CA          CA   65334 37.90 -122.04
## 947                         Walpole MA          MA   45127 42.14  -71.25
## 948                         Waltham MA          MA   58407 42.39  -71.24
## 949                   Warner Robins GA          GA   59593 32.61  -83.63
## 950                          Warren MI          MI  132537 42.49  -83.03
## 951                          Warren OH          OH   44933 41.24  -80.82
## 952                         Warwick RI          RI   88443 41.70  -71.42
## 953                       Waterbury CT          CT  108645 41.56  -73.04
## 954                       Waterford MI          MI   76204 42.66  -83.39
## 955                        Waterloo IA          IA   65260 42.49  -92.35
## 956                     Watsonville CA          CA   45659 36.92 -121.77
## 957                        Waukegan IL          IL   93664 42.37  -87.87
## 958                        Waukesha WI          WI   68725 43.01  -88.24
## 959                       Wauwatosa WI          WI   45076 43.06  -88.03
## 960                           Wayne NJ          NJ   58667 40.95  -74.25
## 961                      Wellington FL          FL   56712 26.66  -80.25
## 962                      West Allis WI          WI   58958 43.01  -88.03
## 963                    West Babylon NY          NY   43595 40.71  -73.36
## 964        West Bloomfield Township MI          MI   70520 42.57  -83.38
## 965                     West Covina CA          CA  110646 34.05 -117.91
## 966                 West Des Moines IA          IA   57126 41.57  -93.75
## 967                   West Hartford CT          CT   67156 41.77  -72.75
## 968                      West Haven CT          CT   53545 41.27  -72.97
## 969                     West Jordan UT          UT  105629 40.60 -111.99
## 970                   West New York NY          NY   46091 40.77  -73.98
## 971                     West Orange NJ          NJ   48754 40.79  -74.26
## 972                 West Palm Beach FL          FL   95924 26.75  -80.13
## 973                 West Sacramento CA          CA   43656 38.56 -121.55
## 974                     West Seneca NY          NY   44418 42.84  -78.75
## 975                West Valley City UT          UT  113989 40.69 -112.01
## 976                     Westborough MA          MA   41520 42.27  -71.62
## 977                       Westfield MA          MA   41068 42.14  -72.76
## 978                        Westland MI          MI   84414 42.32  -83.38
## 979                     Westminster CA          CA   90187 33.75 -117.99
## 980                     Westminster CO          CO  104708 39.88 -105.05
## 981                          Weston FL          FL   72902 26.10  -80.40
## 982                        Weymouth MA          MA   54444 42.21  -70.95
## 983                         Wheaton IL          IL   54365 41.86  -88.11
## 984                Wheaton-Glenmont MD          MD   61095 39.06  -77.05
## 985                    White Plains NY          NY   58084 41.02  -73.76
## 986                        Whittier CA          CA   86182 33.97 -118.02
## 987                   Wichita Falls TX          TX  100616 33.90  -98.52
## 988                         Wichita KS          KS  356051 37.69  -97.34
## 989                    Wilkes-Barre PA          PA   40242 41.25  -75.88
## 990                      Wilmington DE          DE   71065 39.74  -75.53
## 991                      Wilmington NC          NC   93097 34.21  -77.91
## 992                          Wilson NC          NC   47191 35.73  -77.92
## 993                   Winston-Salem NC          NC  194826 36.10  -80.26
## 994                        Woodbury MN          MN   52052 44.91  -92.92
## 995                        Woodland CA          CA   52266 38.68 -121.77
## 996                      Woonsocket RI          RI   46297 42.00  -71.50
## 997                       Worcester MA          MA  177973 42.27  -71.81
## 998                         Wyoming MI          MI   70474 42.89  -85.70
## 999                          Yakima WA          WA   89815 46.59 -120.53
## 1000                        Yonkers NY          NY  198045 40.95  -73.87
## 1001                    Yorba Linda CA          CA   65932 33.89 -117.77
## 1002                     Youngstown OH          OH   76590 41.10  -80.65
## 1003                      Yuba City CA          CA   54086 39.14 -121.62
## 1004                        Yucaipa CA          CA   52333 34.03 -117.04
## 1005                           Yuma AZ          AZ   85720 32.68 -114.62
##      capital
## 1          0
## 2          0
## 3          0
## 4          0
## 5          2
## 6          0
## 7          0
## 8          0
## 9          0
## 10         0
## 11         0
## 12         0
## 13         0
## 14         0
## 15         0
## 16         0
## 17         0
## 18         0
## 19         0
## 20         0
## 21         0
## 22         0
## 23         0
## 24         0
## 25         0
## 26         2
## 27         0
## 28         0
## 29         0
## 30         0
## 31         0
## 32         0
## 33         0
## 34         0
## 35         0
## 36         0
## 37         0
## 38         0
## 39         0
## 40         0
## 41         2
## 42         0
## 43         0
## 44         0
## 45         0
## 46         2
## 47         0
## 48         0
## 49         0
## 50         2
## 51         0
## 52         0
## 53         0
## 54         0
## 55         0
## 56         0
## 57         0
## 58         2
## 59         0
## 60         0
## 61         0
## 62         0
## 63         0
## 64         0
## 65         0
## 66         0
## 67         0
## 68         0
## 69         0
## 70         0
## 71         0
## 72         0
## 73         0
## 74         0
## 75         0
## 76         0
## 77         0
## 78         0
## 79         0
## 80         0
## 81         0
## 82         0
## 83         0
## 84         2
## 85         0
## 86         0
## 87         0
## 88         0
## 89         0
## 90         0
## 91         0
## 92         0
## 93         0
## 94         2
## 95         0
## 96         0
## 97         0
## 98         2
## 99         0
## 100        0
## 101        0
## 102        0
## 103        0
## 104        0
## 105        0
## 106        0
## 107        0
## 108        0
## 109        0
## 110        0
## 111        0
## 112        0
## 113        0
## 114        0
## 115        0
## 116        0
## 117        0
## 118        0
## 119        0
## 120        0
## 121        0
## 122        0
## 123        0
## 124        0
## 125        0
## 126        0
## 127        0
## 128        0
## 129        0
## 130        0
## 131        0
## 132        0
## 133        0
## 134        0
## 135        0
## 136        0
## 137        0
## 138        0
## 139        0
## 140        0
## 141        0
## 142        0
## 143        0
## 144        2
## 145        0
## 146        0
## 147        0
## 148        0
## 149        0
## 150        0
## 151        0
## 152        0
## 153        0
## 154        0
## 155        0
## 156        0
## 157        0
## 158        0
## 159        0
## 160        0
## 161        0
## 162        0
## 163        0
## 164        0
## 165        2
## 166        0
## 167        0
## 168        0
## 169        0
## 170        0
## 171        0
## 172        2
## 173        0
## 174        0
## 175        0
## 176        0
## 177        0
## 178        0
## 179        0
## 180        0
## 181        0
## 182        0
## 183        0
## 184        0
## 185        0
## 186        0
## 187        0
## 188        0
## 189        0
## 190        0
## 191        0
## 192        0
## 193        0
## 194        0
## 195        0
## 196        2
## 197        0
## 198        0
## 199        2
## 200        0
## 201        0
## 202        0
## 203        2
## 204        0
## 205        0
## 206        0
## 207        0
## 208        0
## 209        0
## 210        0
## 211        0
## 212        0
## 213        0
## 214        0
## 215        0
## 216        0
## 217        0
## 218        0
## 219        0
## 220        0
## 221        0
## 222        0
## 223        0
## 224        0
## 225        0
## 226        0
## 227        0
## 228        0
## 229        0
## 230        0
## 231        0
## 232        0
## 233        0
## 234        0
## 235        0
## 236        0
## 237        0
## 238        0
## 239        0
## 240        0
## 241        0
## 242        0
## 243        0
## 244        0
## 245        0
## 246        0
## 247        2
## 248        2
## 249        0
## 250        0
## 251        0
## 252        0
## 253        2
## 254        0
## 255        0
## 256        0
## 257        0
## 258        0
## 259        0
## 260        0
## 261        0
## 262        0
## 263        0
## 264        0
## 265        0
## 266        0
## 267        0
## 268        0
## 269        0
## 270        0
## 271        0
## 272        0
## 273        0
## 274        0
## 275        0
## 276        0
## 277        0
## 278        0
## 279        0
## 280        0
## 281        0
## 282        0
## 283        0
## 284        0
## 285        0
## 286        0
## 287        0
## 288        0
## 289        0
## 290        0
## 291        0
## 292        0
## 293        0
## 294        0
## 295        0
## 296        0
## 297        0
## 298        0
## 299        0
## 300        0
## 301        0
## 302        0
## 303        0
## 304        0
## 305        0
## 306        0
## 307        0
## 308        0
## 309        0
## 310        0
## 311        0
## 312        0
## 313        0
## 314        0
## 315        0
## 316        0
## 317        0
## 318        0
## 319        0
## 320        0
## 321        0
## 322        0
## 323        0
## 324        0
## 325        0
## 326        0
## 327        0
## 328        0
## 329        0
## 330        0
## 331        0
## 332        2
## 333        0
## 334        0
## 335        0
## 336        0
## 337        0
## 338        0
## 339        0
## 340        0
## 341        0
## 342        0
## 343        0
## 344        0
## 345        0
## 346        0
## 347        0
## 348        0
## 349        0
## 350        0
## 351        0
## 352        0
## 353        0
## 354        0
## 355        0
## 356        0
## 357        0
## 358        0
## 359        0
## 360        0
## 361        0
## 362        0
## 363        0
## 364        0
## 365        0
## 366        0
## 367        0
## 368        0
## 369        0
## 370        0
## 371        0
## 372        0
## 373        0
## 374        0
## 375        0
## 376        0
## 377        0
## 378        0
## 379        0
## 380        0
## 381        0
## 382        0
## 383        0
## 384        0
## 385        2
## 386        0
## 387        2
## 388        0
## 389        0
## 390        0
## 391        0
## 392        2
## 393        0
## 394        0
## 395        0
## 396        0
## 397        0
## 398        0
## 399        0
## 400        0
## 401        0
## 402        0
## 403        0
## 404        0
## 405        0
## 406        0
## 407        0
## 408        0
## 409        0
## 410        0
## 411        2
## 412        0
## 413        0
## 414        0
## 415        0
## 416        0
## 417        0
## 418        0
## 419        0
## 420        0
## 421        0
## 422        2
## 423        0
## 424        0
## 425        0
## 426        0
## 427        0
## 428        0
## 429        0
## 430        2
## 431        0
## 432        0
## 433        0
## 434        0
## 435        2
## 436        0
## 437        0
## 438        0
## 439        0
## 440        0
## 441        2
## 442        0
## 443        0
## 444        0
## 445        0
## 446        0
## 447        0
## 448        0
## 449        0
## 450        0
## 451        0
## 452        0
## 453        0
## 454        0
## 455        0
## 456        0
## 457        0
## 458        0
## 459        0
## 460        0
## 461        0
## 462        0
## 463        0
## 464        0
## 465        0
## 466        0
## 467        0
## 468        0
## 469        0
## 470        0
## 471        0
## 472        0
## 473        0
## 474        0
## 475        0
## 476        0
## 477        0
## 478        0
## 479        0
## 480        0
## 481        0
## 482        0
## 483        0
## 484        0
## 485        2
## 486        0
## 487        0
## 488        0
## 489        0
## 490        0
## 491        0
## 492        0
## 493        0
## 494        0
## 495        0
## 496        0
## 497        0
## 498        0
## 499        0
## 500        0
## 501        0
## 502        0
## 503        0
## 504        0
## 505        0
## 506        0
## 507        2
## 508        0
## 509        2
## 510        0
## 511        0
## 512        0
## 513        0
## 514        0
## 515        0
## 516        0
## 517        0
## 518        0
## 519        0
## 520        0
## 521        0
## 522        0
## 523        0
## 524        0
## 525        0
## 526        0
## 527        0
## 528        0
## 529        0
## 530        0
## 531        0
## 532        0
## 533        0
## 534        0
## 535        0
## 536        2
## 537        0
## 538        0
## 539        0
## 540        0
## 541        0
## 542        0
## 543        0
## 544        0
## 545        0
## 546        0
## 547        0
## 548        0
## 549        0
## 550        0
## 551        0
## 552        0
## 553        0
## 554        0
## 555        0
## 556        0
## 557        0
## 558        0
## 559        0
## 560        0
## 561        0
## 562        0
## 563        0
## 564        0
## 565        0
## 566        0
## 567        0
## 568        0
## 569        0
## 570        0
## 571        0
## 572        0
## 573        0
## 574        0
## 575        0
## 576        0
## 577        0
## 578        0
## 579        0
## 580        0
## 581        0
## 582        0
## 583        2
## 584        0
## 585        2
## 586        0
## 587        0
## 588        0
## 589        0
## 590        0
## 591        0
## 592        0
## 593        0
## 594        0
## 595        0
## 596        0
## 597        0
## 598        0
## 599        0
## 600        0
## 601        2
## 602        0
## 603        0
## 604        0
## 605        0
## 606        0
## 607        0
## 608        0
## 609        0
## 610        0
## 611        0
## 612        0
## 613        0
## 614        0
## 615        0
## 616        0
## 617        0
## 618        0
## 619        0
## 620        0
## 621        0
## 622        0
## 623        0
## 624        0
## 625        0
## 626        0
## 627        0
## 628        0
## 629        0
## 630        0
## 631        0
## 632        0
## 633        0
## 634        0
## 635        0
## 636        0
## 637        0
## 638        0
## 639        0
## 640        0
## 641        0
## 642        0
## 643        0
## 644        0
## 645        0
## 646        0
## 647        2
## 648        0
## 649        2
## 650        0
## 651        0
## 652        0
## 653        0
## 654        0
## 655        0
## 656        0
## 657        0
## 658        0
## 659        0
## 660        0
## 661        0
## 662        0
## 663        0
## 664        0
## 665        0
## 666        0
## 667        0
## 668        0
## 669        0
## 670        0
## 671        0
## 672        0
## 673        0
## 674        0
## 675        0
## 676        0
## 677        0
## 678        0
## 679        0
## 680        0
## 681        0
## 682        0
## 683        0
## 684        0
## 685        0
## 686        0
## 687        0
## 688        0
## 689        0
## 690        0
## 691        0
## 692        0
## 693        0
## 694        2
## 695        0
## 696        2
## 697        0
## 698        0
## 699        0
## 700        0
## 701        0
## 702        0
## 703        0
## 704        0
## 705        0
## 706        0
## 707        0
## 708        0
## 709        0
## 710        0
## 711        0
## 712        0
## 713        0
## 714        0
## 715        0
## 716        0
## 717        0
## 718        0
## 719        0
## 720        0
## 721        0
## 722        0
## 723        0
## 724        0
## 725        0
## 726        2
## 727        0
## 728        0
## 729        0
## 730        0
## 731        0
## 732        2
## 733        0
## 734        0
## 735        0
## 736        0
## 737        0
## 738        0
## 739        0
## 740        0
## 741        0
## 742        0
## 743        0
## 744        0
## 745        0
## 746        0
## 747        0
## 748        0
## 749        0
## 750        0
## 751        0
## 752        0
## 753        0
## 754        2
## 755        0
## 756        0
## 757        0
## 758        0
## 759        0
## 760        0
## 761        0
## 762        0
## 763        0
## 764        0
## 765        0
## 766        0
## 767        0
## 768        0
## 769        0
## 770        0
## 771        0
## 772        0
## 773        0
## 774        0
## 775        0
## 776        0
## 777        0
## 778        2
## 779        0
## 780        0
## 781        0
## 782        0
## 783        0
## 784        0
## 785        0
## 786        0
## 787        2
## 788        0
## 789        0
## 790        0
## 791        2
## 792        0
## 793        0
## 794        2
## 795        0
## 796        0
## 797        0
## 798        0
## 799        0
## 800        0
## 801        0
## 802        0
## 803        0
## 804        0
## 805        0
## 806        0
## 807        0
## 808        0
## 809        0
## 810        0
## 811        0
## 812        0
## 813        0
## 814        0
## 815        0
## 816        0
## 817        0
## 818        0
## 819        0
## 820        0
## 821        2
## 822        0
## 823        0
## 824        0
## 825        0
## 826        0
## 827        0
## 828        0
## 829        0
## 830        0
## 831        0
## 832        0
## 833        0
## 834        0
## 835        0
## 836        0
## 837        0
## 838        0
## 839        0
## 840        0
## 841        0
## 842        0
## 843        0
## 844        0
## 845        0
## 846        0
## 847        0
## 848        0
## 849        0
## 850        0
## 851        0
## 852        0
## 853        0
## 854        0
## 855        0
## 856        0
## 857        0
## 858        0
## 859        0
## 860        0
## 861        0
## 862        0
## 863        2
## 864        0
## 865        0
## 866        0
## 867        0
## 868        0
## 869        0
## 870        0
## 871        0
## 872        0
## 873        0
## 874        0
## 875        0
## 876        0
## 877        0
## 878        0
## 879        0
## 880        0
## 881        0
## 882        0
## 883        0
## 884        0
## 885        0
## 886        2
## 887        0
## 888        0
## 889        0
## 890        0
## 891        0
## 892        0
## 893        0
## 894        0
## 895        0
## 896        0
## 897        0
## 898        0
## 899        0
## 900        0
## 901        0
## 902        0
## 903        0
## 904        0
## 905        0
## 906        0
## 907        0
## 908        0
## 909        0
## 910        2
## 911        0
## 912        0
## 913        0
## 914        0
## 915        2
## 916        0
## 917        0
## 918        0
## 919        0
## 920        0
## 921        0
## 922        0
## 923        0
## 924        0
## 925        0
## 926        0
## 927        0
## 928        0
## 929        0
## 930        0
## 931        0
## 932        0
## 933        0
## 934        0
## 935        0
## 936        0
## 937        0
## 938        0
## 939        0
## 940        0
## 941        0
## 942        0
## 943        0
## 944        0
## 945        0
## 946        0
## 947        0
## 948        0
## 949        0
## 950        0
## 951        0
## 952        0
## 953        0
## 954        0
## 955        0
## 956        0
## 957        0
## 958        0
## 959        0
## 960        0
## 961        0
## 962        0
## 963        0
## 964        0
## 965        0
## 966        0
## 967        0
## 968        0
## 969        0
## 970        0
## 971        0
## 972        0
## 973        0
## 974        0
## 975        0
## 976        0
## 977        0
## 978        0
## 979        0
## 980        0
## 981        0
## 982        0
## 983        0
## 984        0
## 985        0
## 986        0
## 987        0
## 988        0
## 989        0
## 990        0
## 991        0
## 992        0
## 993        0
## 994        0
## 995        0
## 996        0
## 997        0
## 998        0
## 999        0
## 1000       0
## 1001       0
## 1002       0
## 1003       0
## 1004       0
## 1005       0
# Ensure that the city names are in lowercase in both datasets
cupid$city <- tolower(cupid$city)
us.cities$name <- tolower(us.cities$name)

# Join your data with the "us.cities" dataset
cupid_location <- cupid %>%
  mutate(city = paste0(city, sep= " ", "ca")) %>% 
  filter(state == " california") %>%
  group_by(city) %>%
  summarise(count = n(), .groups = "keep") %>%
  left_join(us.cities, by = c("city" = "name")) %>% 
  na.omit()
cupid_location
## # A tibble: 50 × 7
## # Groups:   city [50]
##    city             count country.etc    pop   lat  long capital
##    <chr>            <int> <chr>        <int> <dbl> <dbl>   <int>
##  1 alameda ca         910 CA           70069  37.8 -122.       0
##  2 arcadia ca           1 CA           57429  34.1 -118.       0
##  3 berkeley ca       4212 CA           99653  37.9 -122.       0
##  4 brea ca              1 CA           40349  33.9 -118.       0
##  5 castro valley ca   345 CA           63908  37.7 -122.       0
##  6 chico ca             1 CA           71997  39.8 -122.       0
##  7 concord ca           1 CA          126360  38.0 -122        0
##  8 costa mesa ca        1 CA          109357  33.7 -118.       0
##  9 daly city ca       681 CA           98084  37.7 -122.       0
## 10 fremont ca          90 CA          202574  37.5 -122        0
## # … with 40 more rows
# Create a new column "color" based on "count"
cupid_location$color <- cut(cupid_location$count, 
                            breaks = c(-Inf, 100, 1000, Inf), 
                            labels = c("blue", "yellow", "red"))

# Use the "color" column to color the points
leaflet(cupid_location) %>%
  addTiles() %>%  
  addCircleMarkers(~long, ~lat, radius = ~sqrt(count)*0.5, 
                   color = ~color, 
                   stroke = FALSE, 
                   fillOpacity = 0.5)
##Plot graph with information about gender vs age
proportion_cupid <- cupid%>%
  mutate(age_group = cut(age, breaks = c(18, 30, 35, 40, 50, 60, Inf), labels = c("18-30", "30-35", "35-40", "40-50", "50-60", "65+"), include.lowest = TRUE)) %>%
  group_by(age_group, sex) %>%
  summarise(n = n(), .groups = "drop") %>% 
  mutate(n = ifelse(sex == "male", n, -n)) 

# Create the plot
ggplot(proportion_cupid, aes(y = age_group, x = n, fill = sex)) +
  geom_bar(data = subset(proportion_cupid, sex == "male"), stat = "identity") +
  geom_bar(data = subset(proportion_cupid, sex == "female"), stat = "identity") +
  scale_x_continuous(labels = function(x) abs(x)) +
  labs(title = "Gender vs Age",
       x = "users",
       y = "Age Group") +
  scale_fill_manual(values = c("male" = "#0494FE", "female" = "#BF40BE")) +
  theme_minimal() +
  theme(plot.title = element_text(hjust = 0.5),
        legend.title = element_blank())

##Plot graph with distribution of gender and sexual orientation
cupid_clean <- cupid %>%
  filter(!is.na(sex), !is.na(orientation))

# Count the number of each orientation for each gender
cupid_orientation <- cupid_clean %>%
  group_by(sex, orientation) %>%
  summarise(count = n(), .groups = "drop") %>%
  mutate(percentage = count / sum(count) * 100) 

# Create a stacked bar chart
ggplot(cupid_orientation, aes(fill=orientation, y=count, x=sex)) + 
  geom_bar(position="stack", stat="identity") +
  geom_text(aes(label=paste0(round(percentage, 1), "%")), 
            position=position_stack(vjust=0.5), size = 3) +
  labs(x = "Gender", y = "Percentage", fill = "Sexual Orientation",
       title = "Sexual Orientation by Gender") +
  theme_minimal() +
  theme(axis.text.y = element_blank(),
        axis.ticks.y = element_blank(),
        plot.background = element_rect(fill = "white"), 
        panel.grid = element_blank(), 
        legend.background = element_rect(fill = "white"))

##Plot graph showing how many different languages can a user speaks
cupid_clean <- cupid %>%
  filter(!is.na(speaks)) %>%
  mutate(num_languages = str_count(speaks, ",") + 1)

# Count the number of users who speak each number of languages
cupid_languages <- cupid_clean %>%
  group_by(num_languages) %>%
  summarise(count = n(), .groups = "drop") %>%
  mutate(percentage = count / sum(count) * 100) 

# Define color palette (more formal colors)
color_palette <- c("#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd")

# Create a pie chart
ggplot(cupid_languages, aes(x = "", y = percentage, fill = as.factor(num_languages))) + 
  geom_bar(stat = "identity") +
  coord_polar("y", start=0) +
  labs(x = NULL, y = NULL, fill = NULL, 
       title = "Percentage of users speaking more than one language") +
  geom_text(aes(label = paste0(round(percentage, 1), "%")),  
            position = position_stack(vjust = 0.5), color = "white", size = 3) +
  scale_fill_manual(values = color_palette)+
  theme_void()

##Make table with the top 5 spoken languages
# Separate the languages into multiple rows
cupid_languages <- cupid %>%
  filter(!is.na(speaks)) %>%
  separate_rows(speaks, sep = ",") %>%
  mutate(speaks = str_trim(speaks))  

# Count the number of speakers for each language and create a table with the top 5
top_languages <- cupid_languages %>%
  count(speaks, sort = TRUE) %>%
  top_n(10) %>% 
  select(-n)
## Selecting by n
top_languages
## # A tibble: 10 × 1
##    speaks    
##    <chr>     
##  1 english   
##  2 spanish   
##  3 french    
##  4 chinese   
##  5 german    
##  6 japanese  
##  7 italian   
##  8 c++       
##  9 russian   
## 10 portuguese
##Plot  a graph between education vs age
ggplot(cupid %>% 
       filter(!(is.na(education)), !(education=="space"), 
              !(education=="ph.d"), !(education=="law"), !(education=="med")))+
    geom_bar(mapping = aes(x=age, fill=education))+
    coord_cartesian(xlim = c(17,70))+
    labs(title="Education and Age",
         subtitle = "What are the education levels of the demographic?") +
    scale_fill_brewer(palette = "Blues", name="Education Level")+
    xlab("Age")+ylab("Number")

## Ethnic distribution 
cupid_distribution<- cupid%>%
  filter(!is.na(ethnicity)) %>%
  mutate(ethnicity = as.factor(ethnicity)) %>%
  separate_rows(ethnicity, sep = ", ") %>%
  mutate(ethnicity = fct_infreq(ethnicity)) %>% 
    group_by(ethnicity) %>%
  summarise(n = n(), .groups = 'drop') 

cupid_distribution
## # A tibble: 9 × 2
##   ethnicity            n
##   <fct>            <int>
## 1 white            37882
## 2 asian             8205
## 3 hispanic / latin  5357
## 4 other             3567
## 5 black             3328
## 6 pacific islander  1473
## 7 indian            1449
## 8 native american   1265
## 9 middle eastern     950
# Create the treemap
treemap(cupid_distribution,
        index = "ethnicity",
        vSize = "n",
        title="Ethnic Distribution",
        palette = "Set3")

##Median Income vs Education
cupid_income <- cupid %>%
  filter(!is.na(education)) %>%  # filter out NA values in education
  mutate(education = fct_infreq(education)) %>% 
  group_by(education) %>%
  summarise(median_income = median(income, na.rm = TRUE)) %>% 
  drop_na(median_income) %>%
  mutate(education = fct_reorder(education, median_income))

# Now we can use ggplot2 to plot the income vs education
ggplot(cupid_income, aes(x = education, y = median_income)) +
  geom_bar(stat='identity', fill = 'skyblue') +
  geom_line(group = 1, color = 'red', size = 1) + # Adding progression line
  theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
  labs(x = "Education", y = "Median Income", title = "Median Income vs Education")
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.

## Count of users who were last online on each day of the week
cupid_weekday <- cupid %>%
  mutate(weekday = wday(last_online, label = TRUE)) %>% 
  group_by(weekday) %>%
  summarise(count = n(), .groups = "drop") 

# Create a scatter plot of the count of users by day of the week
ggplot(cupid_weekday, aes(x = weekday, y = count)) +
  geom_point(color = "steelblue", size = 3) +
  geom_line(aes(group = 1), color = "steelblue") + # Solid line
  scale_x_discrete(limits = c("Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun")) + 
  labs(x = "Day of the Week", y = "Count of Users",
       title = "Distribution of Last Online Dates of Users by Day of the Week") +
  theme_minimal()

## Depending on their diet/age/body_type/pets how many matches they got
#Matches by age per user
matches_age <- cupid %>% 
  mutate(age_group = cut(age, breaks = c(18, 30, 35, 40, 50, 60, Inf), labels = c("18-30", "30-35", "35-40", "40-50", "50-60", "65+"), include.lowest = TRUE)) %>% 
   mutate(matches = case_when(
    age_group == "18-30" ~ 10,
    age_group == "30-35" ~ 7,
    age_group == "35-40" ~ 6,
    age_group == "40-50" ~ 5,
    age_group == "50-60" ~ 5,
    age_group == "65+" ~ 4
  ))%>% 
  select(age_group, matches)
matches_age
##       age_group matches
## 1         18-30      10
## 2         30-35       7
## 3         35-40       6
## 4         18-30      10
## 5         18-30      10
## 6         18-30      10
## 7         30-35       7
## 8         30-35       7
## 9         18-30      10
## 10        35-40       6
## 11        30-35       7
## 12        18-30      10
## 13        18-30      10
## 14        18-30      10
## 15        18-30      10
## 16        35-40       6
## 17        30-35       7
## 18        18-30      10
## 19        30-35       7
## 20        30-35       7
## 21        18-30      10
## 22        18-30      10
## 23        18-30      10
## 24        18-30      10
## 25        30-35       7
## 26        18-30      10
## 27        18-30      10
## 28        18-30      10
## 29        18-30      10
## 30        30-35       7
## 31        18-30      10
## 32        18-30      10
## 33        35-40       6
## 34        18-30      10
## 35        18-30      10
## 36        18-30      10
## 37        30-35       7
## 38        18-30      10
## 39        18-30      10
## 40        30-35       7
## 41        18-30      10
## 42        30-35       7
## 43        18-30      10
## 44        35-40       6
## 45        18-30      10
## 46        18-30      10
## 47        18-30      10
## 48        18-30      10
## 49        30-35       7
## 50        18-30      10
## 51        30-35       7
## 52        35-40       6
## 53        30-35       7
## 54        35-40       6
## 55        30-35       7
## 56        30-35       7
## 57        18-30      10
## 58        18-30      10
## 59        18-30      10
## 60        30-35       7
## 61        30-35       7
## 62        30-35       7
## 63        30-35       7
## 64        18-30      10
## 65        18-30      10
## 66        18-30      10
## 67        18-30      10
## 68        18-30      10
## 69        30-35       7
## 70        18-30      10
## 71        18-30      10
## 72        30-35       7
## 73        30-35       7
## 74        30-35       7
## 75        18-30      10
## 76        18-30      10
## 77        18-30      10
## 78        18-30      10
## 79        30-35       7
## 80        18-30      10
## 81        18-30      10
## 82        30-35       7
## 83        30-35       7
## 84        30-35       7
## 85        18-30      10
## 86        18-30      10
## 87        35-40       6
## 88        18-30      10
## 89        40-50       5
## 90        35-40       6
## 91        18-30      10
## 92        18-30      10
## 93        18-30      10
## 94        18-30      10
## 95        18-30      10
## 96        18-30      10
## 97        30-35       7
## 98        35-40       6
## 99        30-35       7
## 100       40-50       5
## 101       35-40       6
## 102       18-30      10
## 103       40-50       5
## 104       35-40       6
## 105       30-35       7
## 106       40-50       5
## 107       40-50       5
## 108       18-30      10
## 109       18-30      10
## 110       18-30      10
## 111       35-40       6
## 112       18-30      10
## 113       18-30      10
## 114       18-30      10
## 115       35-40       6
## 116       30-35       7
## 117       18-30      10
## 118       50-60       5
## 119       18-30      10
## 120       18-30      10
## 121       18-30      10
## 122       40-50       5
## 123       18-30      10
## 124       18-30      10
## 125       18-30      10
## 126       18-30      10
## 127       40-50       5
## 128       18-30      10
## 129       18-30      10
## 130       18-30      10
## 131       18-30      10
## 132       30-35       7
## 133       40-50       5
## 134       35-40       6
## 135       18-30      10
## 136       30-35       7
## 137       18-30      10
## 138       40-50       5
## 139       30-35       7
## 140       18-30      10
## 141       30-35       7
## 142       50-60       5
## 143       35-40       6
## 144       18-30      10
## 145       35-40       6
## 146       18-30      10
## 147       18-30      10
## 148       40-50       5
## 149       30-35       7
## 150       40-50       5
## 151       40-50       5
## 152       40-50       5
## 153       40-50       5
## 154       18-30      10
## 155       18-30      10
## 156       18-30      10
## 157       35-40       6
## 158       18-30      10
## 159       50-60       5
## 160       18-30      10
## 161       50-60       5
## 162       30-35       7
## 163       18-30      10
## 164       35-40       6
## 165       18-30      10
## 166       18-30      10
## 167       35-40       6
## 168       18-30      10
## 169       18-30      10
## 170       30-35       7
## 171       18-30      10
## 172       30-35       7
## 173         65+       4
## 174       30-35       7
## 175       18-30      10
## 176       40-50       5
## 177       18-30      10
## 178       18-30      10
## 179       35-40       6
## 180       18-30      10
## 181       30-35       7
## 182       18-30      10
## 183       18-30      10
## 184       35-40       6
## 185       18-30      10
## 186       40-50       5
## 187       50-60       5
## 188       30-35       7
## 189       18-30      10
## 190       35-40       6
## 191       18-30      10
## 192       30-35       7
## 193       18-30      10
## 194       30-35       7
## 195       40-50       5
## 196       30-35       7
## 197       18-30      10
## 198       35-40       6
## 199       18-30      10
## 200       18-30      10
## 201       18-30      10
## 202       18-30      10
## 203       18-30      10
## 204       30-35       7
## 205       18-30      10
## 206       40-50       5
## 207       40-50       5
## 208       18-30      10
## 209       30-35       7
## 210       18-30      10
## 211       50-60       5
## 212       30-35       7
## 213       40-50       5
## 214       50-60       5
## 215       18-30      10
## 216       35-40       6
## 217       30-35       7
## 218       40-50       5
## 219       18-30      10
## 220       18-30      10
## 221       18-30      10
## 222       30-35       7
## 223       30-35       7
## 224       40-50       5
## 225       18-30      10
## 226       18-30      10
## 227       18-30      10
## 228       40-50       5
## 229       30-35       7
## 230       50-60       5
## 231       18-30      10
## 232       40-50       5
## 233       40-50       5
## 234         65+       4
## 235       30-35       7
## 236       30-35       7
## 237       50-60       5
## 238       18-30      10
## 239       18-30      10
## 240       18-30      10
## 241       30-35       7
## 242       50-60       5
## 243       18-30      10
## 244       18-30      10
## 245       30-35       7
## 246       40-50       5
## 247       18-30      10
## 248       35-40       6
## 249       35-40       6
## 250       30-35       7
## 251       18-30      10
## 252       35-40       6
## 253       30-35       7
## 254       18-30      10
## 255       35-40       6
## 256       40-50       5
## 257       18-30      10
## 258         65+       4
## 259       18-30      10
## 260       40-50       5
## 261       40-50       5
## 262       30-35       7
## 263       35-40       6
## 264       40-50       5
## 265       40-50       5
## 266       18-30      10
## 267       50-60       5
## 268       35-40       6
## 269       35-40       6
## 270       18-30      10
## 271       18-30      10
## 272       18-30      10
## 273       50-60       5
## 274       18-30      10
## 275       18-30      10
## 276       30-35       7
## 277       18-30      10
## 278       35-40       6
## 279       40-50       5
## 280       18-30      10
## 281       18-30      10
## 282       40-50       5
## 283       35-40       6
## 284       40-50       5
## 285       18-30      10
## 286       50-60       5
## 287       18-30      10
## 288       40-50       5
## 289       18-30      10
## 290       18-30      10
## 291       18-30      10
## 292       18-30      10
## 293       18-30      10
## 294       35-40       6
## 295       18-30      10
## 296       40-50       5
## 297       50-60       5
## 298       18-30      10
## 299       40-50       5
## 300       35-40       6
## 301       40-50       5
## 302       30-35       7
## 303       35-40       6
## 304       18-30      10
## 305       30-35       7
## 306       40-50       5
## 307       30-35       7
## 308       30-35       7
## 309       40-50       5
## 310       18-30      10
## 311       50-60       5
## 312       30-35       7
## 313       18-30      10
## 314       30-35       7
## 315       40-50       5
## 316       35-40       6
## 317       40-50       5
## 318       18-30      10
## 319       40-50       5
## 320       40-50       5
## 321         65+       4
## 322       30-35       7
## 323       18-30      10
## 324         65+       4
## 325       40-50       5
## 326       18-30      10
## 327       18-30      10
## 328       35-40       6
## 329         65+       4
## 330       40-50       5
## 331       50-60       5
## 332       35-40       6
## 333       18-30      10
## 334       18-30      10
## 335       30-35       7
## 336         65+       4
## 337       18-30      10
## 338       30-35       7
## 339       30-35       7
## 340       35-40       6
## 341       18-30      10
## 342       18-30      10
## 343       35-40       6
## 344       18-30      10
## 345       18-30      10
## 346       35-40       6
## 347       40-50       5
## 348       18-30      10
## 349       50-60       5
## 350         65+       4
## 351       35-40       6
## 352       18-30      10
## 353       30-35       7
## 354       30-35       7
## 355       30-35       7
## 356       18-30      10
## 357       18-30      10
## 358       40-50       5
## 359       40-50       5
## 360       30-35       7
## 361       35-40       6
## 362       18-30      10
## 363       18-30      10
## 364       18-30      10
## 365       30-35       7
## 366       30-35       7
## 367       40-50       5
## 368       30-35       7
## 369       18-30      10
## 370       18-30      10
## 371       18-30      10
## 372       18-30      10
## 373       30-35       7
## 374       18-30      10
## 375       30-35       7
## 376       30-35       7
## 377       18-30      10
## 378       35-40       6
## 379       40-50       5
## 380       30-35       7
## 381       18-30      10
## 382       18-30      10
## 383       30-35       7
## 384       50-60       5
## 385       18-30      10
## 386       40-50       5
## 387       18-30      10
## 388       40-50       5
## 389       30-35       7
## 390       18-30      10
## 391       50-60       5
## 392       40-50       5
## 393       35-40       6
## 394       30-35       7
## 395       35-40       6
## 396       40-50       5
## 397       35-40       6
## 398       35-40       6
## 399       50-60       5
## 400       40-50       5
## 401       18-30      10
## 402       18-30      10
## 403       18-30      10
## 404       40-50       5
## 405       50-60       5
## 406       40-50       5
## 407       18-30      10
## 408       18-30      10
## 409       18-30      10
## 410       18-30      10
## 411       35-40       6
## 412       40-50       5
## 413       18-30      10
## 414       18-30      10
## 415       40-50       5
## 416       50-60       5
## 417       35-40       6
## 418       35-40       6
## 419       50-60       5
## 420       18-30      10
## 421       30-35       7
## 422       40-50       5
## 423       35-40       6
## 424       35-40       6
## 425       18-30      10
## 426       18-30      10
## 427       18-30      10
## 428       30-35       7
## 429       18-30      10
## 430       18-30      10
## 431       30-35       7
## 432       18-30      10
## 433       30-35       7
## 434       18-30      10
## 435       40-50       5
## 436       18-30      10
## 437       40-50       5
## 438       18-30      10
## 439       18-30      10
## 440       35-40       6
## 441       18-30      10
## 442       18-30      10
## 443       35-40       6
## 444       50-60       5
## 445       35-40       6
## 446       30-35       7
## 447       18-30      10
## 448       30-35       7
## 449       18-30      10
## 450       50-60       5
## 451       50-60       5
## 452       40-50       5
## 453       30-35       7
## 454       35-40       6
## 455       18-30      10
## 456       30-35       7
## 457       35-40       6
## 458       30-35       7
## 459       30-35       7
## 460       30-35       7
## 461       18-30      10
## 462       35-40       6
## 463       30-35       7
## 464       40-50       5
## 465       18-30      10
## 466       35-40       6
## 467       18-30      10
## 468       30-35       7
## 469       18-30      10
## 470       30-35       7
## 471       18-30      10
## 472       35-40       6
## 473       40-50       5
## 474       30-35       7
## 475       35-40       6
## 476       40-50       5
## 477       40-50       5
## 478       18-30      10
## 479       30-35       7
## 480       35-40       6
## 481       30-35       7
## 482       18-30      10
## 483       18-30      10
## 484       18-30      10
## 485       18-30      10
## 486       30-35       7
## 487       18-30      10
## 488       30-35       7
## 489       18-30      10
## 490       40-50       5
## 491       18-30      10
## 492       18-30      10
## 493       18-30      10
## 494       40-50       5
## 495       18-30      10
## 496       18-30      10
## 497       50-60       5
## 498       18-30      10
## 499       18-30      10
## 500       30-35       7
## 501       18-30      10
## 502       30-35       7
## 503       18-30      10
## 504       35-40       6
## 505       18-30      10
## 506       18-30      10
## 507       30-35       7
## 508       18-30      10
## 509       50-60       5
## 510       30-35       7
## 511       18-30      10
## 512       18-30      10
## 513       40-50       5
## 514       18-30      10
## 515       18-30      10
## 516       50-60       5
## 517       30-35       7
## 518       30-35       7
## 519       40-50       5
## 520       18-30      10
## 521       35-40       6
## 522       30-35       7
## 523       18-30      10
## 524       18-30      10
## 525       30-35       7
## 526       35-40       6
## 527       40-50       5
## 528       18-30      10
## 529       30-35       7
## 530       40-50       5
## 531       30-35       7
## 532       18-30      10
## 533       35-40       6
## 534       18-30      10
## 535       18-30      10
## 536       40-50       5
## 537       18-30      10
## 538       18-30      10
## 539       30-35       7
## 540       40-50       5
## 541       30-35       7
## 542       35-40       6
## 543       40-50       5
## 544       30-35       7
## 545       18-30      10
## 546       18-30      10
## 547       30-35       7
## 548       18-30      10
## 549       18-30      10
## 550       18-30      10
## 551       40-50       5
## 552       18-30      10
## 553       40-50       5
## 554       18-30      10
## 555       30-35       7
## 556         65+       4
## 557       35-40       6
## 558       30-35       7
## 559       35-40       6
## 560       18-30      10
## 561       18-30      10
## 562       18-30      10
## 563       18-30      10
## 564       35-40       6
## 565       40-50       5
## 566       40-50       5
## 567       40-50       5
## 568       18-30      10
## 569       18-30      10
## 570       18-30      10
## 571       18-30      10
## 572       40-50       5
## 573       30-35       7
## 574       50-60       5
## 575       18-30      10
## 576         65+       4
## 577       18-30      10
## 578       30-35       7
## 579       30-35       7
## 580       50-60       5
## 581       30-35       7
## 582       18-30      10
## 583       18-30      10
## 584       50-60       5
## 585       40-50       5
## 586       40-50       5
## 587       18-30      10
## 588       18-30      10
## 589       18-30      10
## 590       18-30      10
## 591       40-50       5
## 592       50-60       5
## 593       18-30      10
## 594       50-60       5
## 595       30-35       7
## 596       40-50       5
## 597       30-35       7
## 598       35-40       6
## 599       40-50       5
## 600       18-30      10
## 601       18-30      10
## 602       35-40       6
## 603         65+       4
## 604       50-60       5
## 605       35-40       6
## 606       30-35       7
## 607       50-60       5
## 608       40-50       5
## 609       18-30      10
## 610       50-60       5
## 611         65+       4
## 612       40-50       5
## 613       30-35       7
## 614       18-30      10
## 615       50-60       5
## 616       40-50       5
## 617       18-30      10
## 618       18-30      10
## 619       18-30      10
## 620       30-35       7
## 621       18-30      10
## 622       30-35       7
## 623       40-50       5
## 624       18-30      10
## 625       18-30      10
## 626       18-30      10
## 627       35-40       6
## 628       30-35       7
## 629       18-30      10
## 630       18-30      10
## 631       40-50       5
## 632       18-30      10
## 633       18-30      10
## 634       18-30      10
## 635       30-35       7
## 636       35-40       6
## 637       50-60       5
## 638       35-40       6
## 639       18-30      10
## 640       30-35       7
## 641       18-30      10
## 642       18-30      10
## 643       18-30      10
## 644       18-30      10
## 645       35-40       6
## 646       18-30      10
## 647       18-30      10
## 648       40-50       5
## 649       18-30      10
## 650       35-40       6
## 651       30-35       7
## 652       30-35       7
## 653       30-35       7
## 654       18-30      10
## 655       18-30      10
## 656       18-30      10
## 657       30-35       7
## 658       18-30      10
## 659       35-40       6
## 660       50-60       5
## 661       30-35       7
## 662       40-50       5
## 663       18-30      10
## 664       18-30      10
## 665       30-35       7
## 666       30-35       7
## 667       35-40       6
## 668       40-50       5
## 669       35-40       6
## 670       30-35       7
## 671       18-30      10
## 672       30-35       7
## 673       18-30      10
## 674       30-35       7
## 675         65+       4
## 676       30-35       7
## 677       18-30      10
## 678       35-40       6
## 679       18-30      10
## 680       30-35       7
## 681       30-35       7
## 682       30-35       7
## 683       18-30      10
## 684       30-35       7
## 685       40-50       5
## 686       30-35       7
## 687       18-30      10
## 688       40-50       5
## 689       18-30      10
## 690       18-30      10
## 691       40-50       5
## 692       18-30      10
## 693       18-30      10
## 694       18-30      10
## 695       30-35       7
## 696       30-35       7
## 697       40-50       5
## 698       18-30      10
## 699       18-30      10
## 700       40-50       5
## 701       18-30      10
## 702       18-30      10
## 703       35-40       6
## 704       18-30      10
## 705       35-40       6
## 706       18-30      10
## 707       18-30      10
## 708       40-50       5
## 709       18-30      10
## 710       18-30      10
## 711       18-30      10
## 712       35-40       6
## 713       30-35       7
## 714       35-40       6
## 715       30-35       7
## 716       18-30      10
## 717       35-40       6
## 718       35-40       6
## 719       30-35       7
## 720       18-30      10
## 721       18-30      10
## 722       35-40       6
## 723       35-40       6
## 724       18-30      10
## 725       35-40       6
## 726       18-30      10
## 727       30-35       7
## 728       18-30      10
## 729       30-35       7
## 730       35-40       6
## 731       30-35       7
## 732       30-35       7
## 733       30-35       7
## 734       30-35       7
## 735       18-30      10
## 736       18-30      10
## 737       30-35       7
## 738       30-35       7
## 739       18-30      10
## 740       18-30      10
## 741       18-30      10
## 742       35-40       6
## 743       18-30      10
## 744       40-50       5
## 745       35-40       6
## 746       18-30      10
## 747       30-35       7
## 748       18-30      10
## 749       30-35       7
## 750       40-50       5
## 751       18-30      10
## 752       18-30      10
## 753       30-35       7
## 754       35-40       6
## 755       18-30      10
## 756       18-30      10
## 757       18-30      10
## 758       30-35       7
## 759       30-35       7
## 760       35-40       6
## 761       18-30      10
## 762       18-30      10
## 763       18-30      10
## 764       18-30      10
## 765       18-30      10
## 766       18-30      10
## 767       35-40       6
## 768       18-30      10
## 769       35-40       6
## 770       30-35       7
## 771       30-35       7
## 772       18-30      10
## 773       18-30      10
## 774       35-40       6
## 775       18-30      10
## 776       18-30      10
## 777       18-30      10
## 778       18-30      10
## 779       18-30      10
## 780       18-30      10
## 781       18-30      10
## 782       30-35       7
## 783       18-30      10
## 784       18-30      10
## 785       40-50       5
## 786       18-30      10
## 787       40-50       5
## 788       18-30      10
## 789       18-30      10
## 790       35-40       6
## 791       40-50       5
## 792       18-30      10
## 793       18-30      10
## 794       50-60       5
## 795       18-30      10
## 796       30-35       7
## 797       30-35       7
## 798       18-30      10
## 799       18-30      10
## 800       35-40       6
## 801       30-35       7
## 802       18-30      10
## 803       40-50       5
## 804       18-30      10
## 805       18-30      10
## 806       40-50       5
## 807       40-50       5
## 808       40-50       5
## 809       50-60       5
## 810       50-60       5
## 811       35-40       6
## 812       30-35       7
## 813       18-30      10
## 814       18-30      10
## 815       18-30      10
## 816       18-30      10
## 817       18-30      10
## 818       30-35       7
## 819       40-50       5
## 820       30-35       7
## 821       18-30      10
## 822       18-30      10
## 823       30-35       7
## 824       18-30      10
## 825       18-30      10
## 826       40-50       5
## 827       18-30      10
## 828       18-30      10
## 829       18-30      10
## 830       18-30      10
## 831       30-35       7
## 832       18-30      10
## 833       18-30      10
## 834       18-30      10
## 835       18-30      10
## 836       40-50       5
## 837       18-30      10
## 838       18-30      10
## 839       18-30      10
## 840       35-40       6
## 841       18-30      10
## 842       35-40       6
## 843       18-30      10
## 844       30-35       7
## 845       35-40       6
## 846       18-30      10
## 847       35-40       6
## 848       40-50       5
## 849       40-50       5
## 850       30-35       7
## 851       18-30      10
## 852       18-30      10
## 853       18-30      10
## 854       18-30      10
## 855       18-30      10
## 856       35-40       6
## 857       18-30      10
## 858       35-40       6
## 859       30-35       7
## 860       30-35       7
## 861       35-40       6
## 862       18-30      10
## 863       18-30      10
## 864       18-30      10
## 865       18-30      10
## 866       30-35       7
## 867       18-30      10
## 868       18-30      10
## 869       30-35       7
## 870       18-30      10
## 871       18-30      10
## 872       18-30      10
## 873       18-30      10
## 874       18-30      10
## 875       18-30      10
## 876       18-30      10
## 877       18-30      10
## 878       30-35       7
## 879       30-35       7
## 880       18-30      10
## 881       18-30      10
## 882       18-30      10
## 883       18-30      10
## 884       18-30      10
## 885       35-40       6
## 886       18-30      10
## 887       18-30      10
## 888       18-30      10
## 889       40-50       5
## 890       35-40       6
## 891       18-30      10
## 892       30-35       7
## 893       30-35       7
## 894       18-30      10
## 895       18-30      10
## 896       18-30      10
## 897       30-35       7
## 898       18-30      10
## 899       18-30      10
## 900       18-30      10
## 901       18-30      10
## 902       18-30      10
## 903       30-35       7
## 904       18-30      10
## 905       18-30      10
## 906       35-40       6
## 907       18-30      10
## 908       30-35       7
## 909       18-30      10
## 910       18-30      10
## 911       40-50       5
## 912       40-50       5
## 913       30-35       7
## 914       40-50       5
## 915       35-40       6
## 916       30-35       7
## 917       18-30      10
## 918       18-30      10
## 919       18-30      10
## 920       18-30      10
## 921       35-40       6
## 922       18-30      10
## 923       18-30      10
## 924       40-50       5
## 925       18-30      10
## 926       18-30      10
## 927       18-30      10
## 928       30-35       7
## 929       18-30      10
## 930       18-30      10
## 931       18-30      10
## 932       18-30      10
## 933       18-30      10
## 934       40-50       5
## 935       30-35       7
## 936       35-40       6
## 937       18-30      10
## 938       18-30      10
## 939       18-30      10
## 940       18-30      10
## 941       18-30      10
## 942       18-30      10
## 943       30-35       7
## 944       35-40       6
## 945       18-30      10
## 946       30-35       7
## 947       18-30      10
## 948       30-35       7
## 949       18-30      10
## 950       30-35       7
## 951       18-30      10
## 952       18-30      10
## 953       18-30      10
## 954       18-30      10
## 955       40-50       5
## 956       18-30      10
## 957       30-35       7
## 958       18-30      10
## 959       18-30      10
## 960       18-30      10
## 961       35-40       6
## 962       18-30      10
## 963       18-30      10
## 964       18-30      10
## 965       30-35       7
## 966       30-35       7
## 967       18-30      10
## 968       18-30      10
## 969       30-35       7
## 970       18-30      10
## 971       18-30      10
## 972       18-30      10
## 973       30-35       7
## 974       35-40       6
## 975       30-35       7
## 976       18-30      10
## 977       18-30      10
## 978       18-30      10
## 979       35-40       6
## 980       18-30      10
## 981       40-50       5
## 982       18-30      10
## 983       18-30      10
## 984       18-30      10
## 985       18-30      10
## 986       18-30      10
## 987       18-30      10
## 988       18-30      10
## 989       40-50       5
## 990       18-30      10
## 991       18-30      10
## 992       30-35       7
## 993       18-30      10
## 994       18-30      10
## 995       18-30      10
## 996       18-30      10
## 997       35-40       6
## 998       30-35       7
## 999       30-35       7
## 1000      35-40       6
## 1001      30-35       7
## 1002      18-30      10
## 1003      18-30      10
## 1004      40-50       5
## 1005      30-35       7
## 1006      18-30      10
## 1007      35-40       6
## 1008      35-40       6
## 1009      30-35       7
## 1010      30-35       7
## 1011      30-35       7
## 1012      30-35       7
## 1013      18-30      10
## 1014      18-30      10
## 1015      18-30      10
## 1016      18-30      10
## 1017      18-30      10
## 1018      30-35       7
## 1019      18-30      10
## 1020      40-50       5
## 1021      18-30      10
## 1022      35-40       6
## 1023      35-40       6
## 1024      40-50       5
## 1025      30-35       7
## 1026      40-50       5
## 1027      18-30      10
## 1028      40-50       5
## 1029      30-35       7
## 1030      18-30      10
## 1031      18-30      10
## 1032      35-40       6
## 1033      18-30      10
## 1034      40-50       5
## 1035      18-30      10
## 1036      18-30      10
## 1037      18-30      10
## 1038      35-40       6
## 1039      18-30      10
## 1040      18-30      10
## 1041      30-35       7
## 1042      30-35       7
## 1043      30-35       7
## 1044      35-40       6
## 1045      18-30      10
## 1046      30-35       7
## 1047      35-40       6
## 1048      30-35       7
## 1049      18-30      10
## 1050      30-35       7
## 1051      18-30      10
## 1052      35-40       6
## 1053      18-30      10
## 1054      35-40       6
## 1055      18-30      10
## 1056      18-30      10
## 1057      40-50       5
## 1058      18-30      10
## 1059      18-30      10
## 1060      18-30      10
## 1061      35-40       6
## 1062      30-35       7
## 1063      35-40       6
## 1064      18-30      10
## 1065      18-30      10
## 1066      18-30      10
## 1067      30-35       7
## 1068      18-30      10
## 1069      18-30      10
## 1070      35-40       6
## 1071      30-35       7
## 1072      18-30      10
## 1073      30-35       7
## 1074      18-30      10
## 1075      18-30      10
## 1076      18-30      10
## 1077      30-35       7
## 1078      30-35       7
## 1079      18-30      10
## 1080      18-30      10
## 1081      18-30      10
## 1082      18-30      10
## 1083      18-30      10
## 1084      40-50       5
## 1085      30-35       7
## 1086      18-30      10
## 1087      18-30      10
## 1088      35-40       6
## 1089      18-30      10
## 1090      40-50       5
## 1091      18-30      10
## 1092      18-30      10
## 1093      18-30      10
## 1094      18-30      10
## 1095      18-30      10
## 1096      18-30      10
## 1097      18-30      10
## 1098      35-40       6
## 1099      30-35       7
## 1100      18-30      10
## 1101      40-50       5
## 1102      30-35       7
## 1103      30-35       7
## 1104      18-30      10
## 1105      18-30      10
## 1106      18-30      10
## 1107      30-35       7
## 1108      18-30      10
## 1109        65+       4
## 1110      18-30      10
## 1111      18-30      10
## 1112      18-30      10
## 1113      30-35       7
## 1114      50-60       5
## 1115      40-50       5
## 1116      18-30      10
## 1117      30-35       7
## 1118      35-40       6
## 1119      30-35       7
## 1120      18-30      10
## 1121      30-35       7
## 1122      40-50       5
## 1123      18-30      10
## 1124      35-40       6
## 1125      18-30      10
## 1126      18-30      10
## 1127      30-35       7
## 1128      30-35       7
## 1129      18-30      10
## 1130      40-50       5
## 1131      18-30      10
## 1132      18-30      10
## 1133      40-50       5
## 1134      18-30      10
## 1135      18-30      10
## 1136      18-30      10
## 1137      35-40       6
## 1138      18-30      10
## 1139      35-40       6
## 1140      40-50       5
## 1141      30-35       7
## 1142      40-50       5
## 1143      18-30      10
## 1144      18-30      10
## 1145      35-40       6
## 1146      40-50       5
## 1147      30-35       7
## 1148      40-50       5
## 1149      18-30      10
## 1150      30-35       7
## 1151      18-30      10
## 1152      35-40       6
## 1153      18-30      10
## 1154      18-30      10
## 1155      18-30      10
## 1156      30-35       7
## 1157      18-30      10
## 1158      18-30      10
## 1159      18-30      10
## 1160      30-35       7
## 1161      18-30      10
## 1162      40-50       5
## 1163      35-40       6
## 1164      40-50       5
## 1165      30-35       7
## 1166        65+       4
## 1167      18-30      10
## 1168      18-30      10
## 1169      18-30      10
## 1170      18-30      10
## 1171      18-30      10
## 1172      18-30      10
## 1173      18-30      10
## 1174      35-40       6
## 1175      35-40       6
## 1176      35-40       6
## 1177      18-30      10
## 1178      18-30      10
## 1179      30-35       7
## 1180      18-30      10
## 1181      18-30      10
## 1182      18-30      10
## 1183      18-30      10
## 1184      18-30      10
## 1185      30-35       7
## 1186      18-30      10
## 1187      18-30      10
## 1188      18-30      10
## 1189      18-30      10
## 1190      18-30      10
## 1191      18-30      10
## 1192      18-30      10
## 1193      18-30      10
## 1194      40-50       5
## 1195      18-30      10
## 1196      18-30      10
## 1197      18-30      10
## 1198      18-30      10
## 1199      18-30      10
## 1200      35-40       6
## 1201      18-30      10
## 1202      18-30      10
## 1203      18-30      10
## 1204      35-40       6
## 1205      18-30      10
## 1206      35-40       6
## 1207      35-40       6
## 1208      18-30      10
## 1209      35-40       6
## 1210      35-40       6
## 1211      40-50       5
## 1212      40-50       5
## 1213      30-35       7
## 1214      18-30      10
## 1215      35-40       6
## 1216      18-30      10
## 1217      18-30      10
## 1218      18-30      10
## 1219      18-30      10
## 1220      18-30      10
## 1221      18-30      10
## 1222      30-35       7
## 1223      18-30      10
## 1224      18-30      10
## 1225      18-30      10
## 1226      18-30      10
## 1227      18-30      10
## 1228      18-30      10
## 1229      18-30      10
## 1230      30-35       7
## 1231      18-30      10
## 1232      18-30      10
## 1233      35-40       6
## 1234      18-30      10
## 1235      30-35       7
## 1236      18-30      10
## 1237      18-30      10
## 1238      30-35       7
## 1239      35-40       6
## 1240      18-30      10
## 1241      18-30      10
## 1242      18-30      10
## 1243      18-30      10
## 1244      18-30      10
## 1245      35-40       6
## 1246      18-30      10
## 1247      18-30      10
## 1248      18-30      10
## 1249      18-30      10
## 1250      18-30      10
## 1251      18-30      10
## 1252      30-35       7
## 1253      30-35       7
## 1254      30-35       7
## 1255      30-35       7
## 1256      18-30      10
## 1257      30-35       7
## 1258      30-35       7
## 1259      18-30      10
## 1260      18-30      10
## 1261      30-35       7
## 1262      30-35       7
## 1263      18-30      10
## 1264      40-50       5
## 1265      18-30      10
## 1266      18-30      10
## 1267      30-35       7
## 1268      18-30      10
## 1269      18-30      10
## 1270      18-30      10
## 1271        65+       4
## 1272      18-30      10
## 1273      18-30      10
## 1274      40-50       5
## 1275      18-30      10
## 1276      18-30      10
## 1277      50-60       5
## 1278      18-30      10
## 1279      30-35       7
## 1280      35-40       6
## 1281      18-30      10
## 1282      18-30      10
## 1283      18-30      10
## 1284      18-30      10
## 1285      40-50       5
## 1286      50-60       5
## 1287      30-35       7
## 1288      18-30      10
## 1289      30-35       7
## 1290      50-60       5
## 1291      30-35       7
## 1292      18-30      10
## 1293      35-40       6
## 1294      18-30      10
## 1295      40-50       5
## 1296      18-30      10
## 1297      30-35       7
## 1298      40-50       5
## 1299      18-30      10
## 1300      18-30      10
## 1301      18-30      10
## 1302      18-30      10
## 1303      18-30      10
## 1304      18-30      10
## 1305      18-30      10
## 1306      18-30      10
## 1307      30-35       7
## 1308      35-40       6
## 1309      30-35       7
## 1310      40-50       5
## 1311      18-30      10
## 1312      18-30      10
## 1313      35-40       6
## 1314      30-35       7
## 1315      30-35       7
## 1316      18-30      10
## 1317      30-35       7
## 1318      35-40       6
## 1319      18-30      10
## 1320      40-50       5
## 1321      35-40       6
## 1322      50-60       5
## 1323      18-30      10
## 1324      35-40       6
## 1325      35-40       6
## 1326      18-30      10
## 1327      18-30      10
## 1328      18-30      10
## 1329      18-30      10
## 1330      18-30      10
## 1331      30-35       7
## 1332      18-30      10
## 1333      18-30      10
## 1334      18-30      10
## 1335      18-30      10
## 1336      18-30      10
## 1337      18-30      10
## 1338      40-50       5
## 1339      40-50       5
## 1340      18-30      10
## 1341      18-30      10
## 1342      30-35       7
## 1343      18-30      10
## 1344      40-50       5
## 1345      30-35       7
## 1346      18-30      10
## 1347      30-35       7
## 1348      50-60       5
## 1349      30-35       7
## 1350      18-30      10
## 1351        65+       4
## 1352      40-50       5
## 1353      35-40       6
## 1354      30-35       7
## 1355      18-30      10
## 1356      18-30      10
## 1357      18-30      10
## 1358      18-30      10
## 1359      18-30      10
## 1360      18-30      10
## 1361      18-30      10
## 1362      18-30      10
## 1363      30-35       7
## 1364      30-35       7
## 1365      18-30      10
## 1366      18-30      10
## 1367      18-30      10
## 1368      30-35       7
## 1369      35-40       6
## 1370      35-40       6
## 1371      18-30      10
## 1372      18-30      10
## 1373      35-40       6
## 1374      35-40       6
## 1375      35-40       6
## 1376      18-30      10
## 1377      18-30      10
## 1378      30-35       7
## 1379      18-30      10
## 1380      30-35       7
## 1381      18-30      10
## 1382      35-40       6
## 1383      18-30      10
## 1384      35-40       6
## 1385      18-30      10
## 1386      18-30      10
## 1387      18-30      10
## 1388      18-30      10
## 1389      35-40       6
## 1390        65+       4
## 1391      30-35       7
## 1392      18-30      10
## 1393      40-50       5
## 1394      18-30      10
## 1395      18-30      10
## 1396      30-35       7
## 1397      18-30      10
## 1398      18-30      10
## 1399      40-50       5
## 1400      18-30      10
## 1401      18-30      10
## 1402      30-35       7
## 1403      40-50       5
## 1404      50-60       5
## 1405      18-30      10
## 1406      18-30      10
## 1407      30-35       7
## 1408      40-50       5
## 1409      18-30      10
## 1410      18-30      10
## 1411      18-30      10
## 1412      30-35       7
## 1413      18-30      10
## 1414      18-30      10
## 1415      35-40       6
## 1416      30-35       7
## 1417      30-35       7
## 1418      50-60       5
## 1419      35-40       6
## 1420      18-30      10
## 1421      18-30      10
## 1422      18-30      10
## 1423      18-30      10
## 1424      18-30      10
## 1425      18-30      10
## 1426      18-30      10
## 1427      50-60       5
## 1428      30-35       7
## 1429      30-35       7
## 1430      35-40       6
## 1431      18-30      10
## 1432      18-30      10
## 1433      18-30      10
## 1434      18-30      10
## 1435      18-30      10
## 1436      18-30      10
## 1437      40-50       5
## 1438      30-35       7
## 1439      18-30      10
## 1440      35-40       6
## 1441      18-30      10
## 1442      18-30      10
## 1443      18-30      10
## 1444      18-30      10
## 1445      18-30      10
## 1446      40-50       5
## 1447      35-40       6
## 1448      18-30      10
## 1449      35-40       6
## 1450      18-30      10
## 1451      18-30      10
## 1452      35-40       6
## 1453      18-30      10
## 1454      30-35       7
## 1455      40-50       5
## 1456      18-30      10
## 1457      18-30      10
## 1458      18-30      10
## 1459      18-30      10
## 1460      18-30      10
## 1461      18-30      10
## 1462      18-30      10
## 1463      18-30      10
## 1464        65+       4
## 1465      18-30      10
## 1466      18-30      10
## 1467      18-30      10
## 1468      18-30      10
## 1469      30-35       7
## 1470      18-30      10
## 1471      40-50       5
## 1472      40-50       5
## 1473      18-30      10
## 1474      18-30      10
## 1475      35-40       6
## 1476      40-50       5
## 1477      18-30      10
## 1478      30-35       7
## 1479      40-50       5
## 1480      30-35       7
## 1481      18-30      10
## 1482      40-50       5
## 1483      18-30      10
## 1484      18-30      10
## 1485      18-30      10
## 1486      18-30      10
## 1487      18-30      10
## 1488      35-40       6
## 1489      18-30      10
## 1490      40-50       5
## 1491      30-35       7
## 1492      35-40       6
## 1493      18-30      10
## 1494      18-30      10
## 1495      30-35       7
## 1496      18-30      10
## 1497      18-30      10
## 1498      18-30      10
## 1499      30-35       7
## 1500      18-30      10
## 1501      18-30      10
## 1502      30-35       7
## 1503      18-30      10
## 1504      40-50       5
## 1505      40-50       5
## 1506      30-35       7
## 1507      40-50       5
## 1508      50-60       5
## 1509      40-50       5
## 1510      35-40       6
## 1511      18-30      10
## 1512      30-35       7
## 1513      18-30      10
## 1514      18-30      10
## 1515        65+       4
## 1516      18-30      10
## 1517      35-40       6
## 1518      35-40       6
## 1519        65+       4
## 1520      18-30      10
## 1521      18-30      10
## 1522      30-35       7
## 1523      30-35       7
## 1524      30-35       7
## 1525      18-30      10
## 1526      35-40       6
## 1527      30-35       7
## 1528      18-30      10
## 1529      30-35       7
## 1530      18-30      10
## 1531      30-35       7
## 1532      30-35       7
## 1533      50-60       5
## 1534      18-30      10
## 1535      30-35       7
## 1536      18-30      10
## 1537      18-30      10
## 1538      30-35       7
## 1539      18-30      10
## 1540      18-30      10
## 1541      30-35       7
## 1542      18-30      10
## 1543      30-35       7
## 1544      30-35       7
## 1545      18-30      10
## 1546      18-30      10
## 1547      18-30      10
## 1548      18-30      10
## 1549      30-35       7
## 1550      18-30      10
## 1551      18-30      10
## 1552      18-30      10
## 1553      18-30      10
## 1554      30-35       7
## 1555      18-30      10
## 1556      30-35       7
## 1557      18-30      10
## 1558      40-50       5
## 1559      18-30      10
## 1560      18-30      10
## 1561      18-30      10
## 1562      35-40       6
## 1563      35-40       6
## 1564      18-30      10
## 1565      30-35       7
## 1566      30-35       7
## 1567      18-30      10
## 1568      18-30      10
## 1569      18-30      10
## 1570      18-30      10
## 1571      18-30      10
## 1572      18-30      10
## 1573      18-30      10
## 1574      35-40       6
## 1575      18-30      10
## 1576      18-30      10
## 1577      18-30      10
## 1578      18-30      10
## 1579      18-30      10
## 1580      18-30      10
## 1581      18-30      10
## 1582      30-35       7
## 1583      18-30      10
## 1584      18-30      10
## 1585      18-30      10
## 1586      18-30      10
## 1587      35-40       6
## 1588      18-30      10
## 1589      18-30      10
## 1590      30-35       7
## 1591      18-30      10
## 1592      18-30      10
## 1593      40-50       5
## 1594      18-30      10
## 1595      30-35       7
## 1596      18-30      10
## 1597      18-30      10
## 1598      18-30      10
## 1599      18-30      10
## 1600      35-40       6
## 1601      18-30      10
## 1602      35-40       6
## 1603      18-30      10
## 1604      18-30      10
## 1605      18-30      10
## 1606      18-30      10
## 1607      35-40       6
## 1608      30-35       7
## 1609      35-40       6
## 1610      40-50       5
## 1611        65+       4
## 1612      18-30      10
## 1613      40-50       5
## 1614      30-35       7
## 1615      40-50       5
## 1616      18-30      10
## 1617      18-30      10
## 1618      40-50       5
## 1619      30-35       7
## 1620      35-40       6
## 1621      30-35       7
## 1622      18-30      10
## 1623      18-30      10
## 1624      18-30      10
## 1625      18-30      10
## 1626      18-30      10
## 1627      18-30      10
## 1628      18-30      10
## 1629      30-35       7
## 1630      18-30      10
## 1631      18-30      10
## 1632      35-40       6
## 1633      18-30      10
## 1634      30-35       7
## 1635      18-30      10
## 1636      18-30      10
## 1637      18-30      10
## 1638      18-30      10
## 1639      18-30      10
## 1640      30-35       7
## 1641      18-30      10
## 1642      30-35       7
## 1643      40-50       5
## 1644      18-30      10
## 1645      18-30      10
## 1646      40-50       5
## 1647      50-60       5
## 1648      30-35       7
## 1649      35-40       6
## 1650      18-30      10
## 1651      18-30      10
## 1652      35-40       6
## 1653      18-30      10
## 1654      18-30      10
## 1655      18-30      10
## 1656      35-40       6
## 1657      30-35       7
## 1658      18-30      10
## 1659      18-30      10
## 1660      40-50       5
## 1661      18-30      10
## 1662      18-30      10
## 1663      30-35       7
## 1664      18-30      10
## 1665      30-35       7
## 1666      40-50       5
## 1667      18-30      10
## 1668      18-30      10
## 1669      18-30      10
## 1670      35-40       6
## 1671      18-30      10
## 1672      18-30      10
## 1673      18-30      10
## 1674      18-30      10
## 1675      18-30      10
## 1676      18-30      10
## 1677      18-30      10
## 1678      18-30      10
## 1679      40-50       5
## 1680      35-40       6
## 1681      18-30      10
## 1682      18-30      10
## 1683      18-30      10
## 1684      18-30      10
## 1685      30-35       7
## 1686      40-50       5
## 1687      50-60       5
## 1688      35-40       6
## 1689      35-40       6
## 1690      18-30      10
## 1691      18-30      10
## 1692      30-35       7
## 1693      18-30      10
## 1694      18-30      10
## 1695      18-30      10
## 1696      18-30      10
## 1697      18-30      10
## 1698      30-35       7
## 1699      30-35       7
## 1700      18-30      10
## 1701      30-35       7
## 1702      18-30      10
## 1703      18-30      10
## 1704      18-30      10
## 1705      18-30      10
## 1706      35-40       6
## 1707      35-40       6
## 1708      30-35       7
## 1709      18-30      10
## 1710      18-30      10
## 1711      18-30      10
## 1712      18-30      10
## 1713      18-30      10
## 1714      40-50       5
## 1715      18-30      10
## 1716      35-40       6
## 1717      18-30      10
## 1718      18-30      10
## 1719      18-30      10
## 1720      18-30      10
## 1721      30-35       7
## 1722      18-30      10
## 1723      30-35       7
## 1724      30-35       7
## 1725      18-30      10
## 1726      30-35       7
## 1727      40-50       5
## 1728      18-30      10
## 1729      18-30      10
## 1730        65+       4
## 1731      18-30      10
## 1732      35-40       6
## 1733      35-40       6
## 1734      35-40       6
## 1735      18-30      10
## 1736      30-35       7
## 1737      30-35       7
## 1738      18-30      10
## 1739      18-30      10
## 1740      40-50       5
## 1741      50-60       5
## 1742      50-60       5
## 1743      30-35       7
## 1744      35-40       6
## 1745      30-35       7
## 1746      18-30      10
## 1747      30-35       7
## 1748      35-40       6
## 1749      30-35       7
## 1750      40-50       5
## 1751      18-30      10
## 1752      30-35       7
## 1753      40-50       5
## 1754      35-40       6
## 1755      30-35       7
## 1756      40-50       5
## 1757      18-30      10
## 1758      18-30      10
## 1759      18-30      10
## 1760      18-30      10
## 1761        65+       4
## 1762      35-40       6
## 1763      18-30      10
## 1764      30-35       7
## 1765      18-30      10
## 1766      18-30      10
## 1767      50-60       5
## 1768      30-35       7
## 1769      18-30      10
## 1770      18-30      10
## 1771      30-35       7
## 1772      18-30      10
## 1773      18-30      10
## 1774      35-40       6
## 1775      30-35       7
## 1776      18-30      10
## 1777      40-50       5
## 1778      18-30      10
## 1779      18-30      10
## 1780      30-35       7
## 1781      18-30      10
## 1782      18-30      10
## 1783      40-50       5
## 1784      35-40       6
## 1785      40-50       5
## 1786      18-30      10
## 1787      30-35       7
## 1788      18-30      10
## 1789      18-30      10
## 1790      35-40       6
## 1791      30-35       7
## 1792      18-30      10
## 1793      18-30      10
## 1794      50-60       5
## 1795      18-30      10
## 1796      18-30      10
## 1797      18-30      10
## 1798      18-30      10
## 1799      18-30      10
## 1800      18-30      10
## 1801      18-30      10
## 1802      18-30      10
## 1803      18-30      10
## 1804      18-30      10
## 1805      18-30      10
## 1806      18-30      10
## 1807      35-40       6
## 1808      35-40       6
## 1809      18-30      10
## 1810      18-30      10
## 1811      30-35       7
## 1812      50-60       5
## 1813      18-30      10
## 1814      40-50       5
## 1815      35-40       6
## 1816      18-30      10
## 1817      40-50       5
## 1818      35-40       6
## 1819      18-30      10
## 1820      18-30      10
## 1821      35-40       6
## 1822      18-30      10
## 1823      30-35       7
## 1824      18-30      10
## 1825      18-30      10
## 1826      35-40       6
## 1827      18-30      10
## 1828      35-40       6
## 1829      30-35       7
## 1830      30-35       7
## 1831      18-30      10
## 1832      18-30      10
## 1833      30-35       7
## 1834      18-30      10
## 1835      35-40       6
## 1836      18-30      10
## 1837      30-35       7
## 1838      30-35       7
## 1839      18-30      10
## 1840      18-30      10
## 1841      18-30      10
## 1842      30-35       7
## 1843      35-40       6
## 1844      30-35       7
## 1845      35-40       6
## 1846      18-30      10
## 1847      40-50       5
## 1848      30-35       7
## 1849      18-30      10
## 1850      18-30      10
## 1851      18-30      10
## 1852      18-30      10
## 1853      18-30      10
## 1854      30-35       7
## 1855      18-30      10
## 1856      50-60       5
## 1857      35-40       6
## 1858      18-30      10
## 1859      18-30      10
## 1860      40-50       5
## 1861      18-30      10
## 1862      18-30      10
## 1863      30-35       7
## 1864      18-30      10
## 1865      18-30      10
## 1866      40-50       5
## 1867      30-35       7
## 1868      18-30      10
## 1869      18-30      10
## 1870      18-30      10
## 1871      18-30      10
## 1872      40-50       5
## 1873      40-50       5
## 1874      30-35       7
## 1875      30-35       7
## 1876      40-50       5
## 1877      18-30      10
## 1878      18-30      10
## 1879      30-35       7
## 1880      18-30      10
## 1881      18-30      10
## 1882      18-30      10
## 1883      18-30      10
## 1884      40-50       5
## 1885      18-30      10
## 1886      35-40       6
## 1887      50-60       5
## 1888      30-35       7
## 1889      18-30      10
## 1890      35-40       6
## 1891      18-30      10
## 1892      30-35       7
## 1893      18-30      10
## 1894      18-30      10
## 1895      18-30      10
## 1896      30-35       7
## 1897      40-50       5
## 1898      18-30      10
## 1899      40-50       5
## 1900      30-35       7
## 1901        65+       4
## 1902      30-35       7
## 1903      30-35       7
## 1904      18-30      10
## 1905      18-30      10
## 1906      18-30      10
## 1907      18-30      10
## 1908      18-30      10
## 1909      40-50       5
## 1910      18-30      10
## 1911      18-30      10
## 1912      35-40       6
## 1913      35-40       6
## 1914      18-30      10
## 1915      35-40       6
## 1916      18-30      10
## 1917      18-30      10
## 1918      30-35       7
## 1919      18-30      10
## 1920      35-40       6
## 1921      50-60       5
## 1922      30-35       7
## 1923      18-30      10
## 1924      35-40       6
## 1925      18-30      10
## 1926      35-40       6
## 1927      40-50       5
## 1928      18-30      10
## 1929      30-35       7
## 1930      30-35       7
## 1931      18-30      10
## 1932      30-35       7
## 1933      18-30      10
## 1934      18-30      10
## 1935      18-30      10
## 1936      30-35       7
## 1937      18-30      10
## 1938      18-30      10
## 1939      18-30      10
## 1940      18-30      10
## 1941      30-35       7
## 1942      18-30      10
## 1943        65+       4
## 1944      35-40       6
## 1945        65+       4
## 1946      18-30      10
## 1947      18-30      10
## 1948      18-30      10
## 1949      18-30      10
## 1950      18-30      10
## 1951        65+       4
## 1952      18-30      10
## 1953      40-50       5
## 1954      35-40       6
## 1955      18-30      10
## 1956      40-50       5
## 1957      18-30      10
## 1958      18-30      10
## 1959      18-30      10
## 1960      18-30      10
## 1961      50-60       5
## 1962      40-50       5
## 1963      18-30      10
## 1964      30-35       7
## 1965      18-30      10
## 1966      35-40       6
## 1967      18-30      10
## 1968      35-40       6
## 1969      18-30      10
## 1970      18-30      10
## 1971      18-30      10
## 1972      18-30      10
## 1973      18-30      10
## 1974      18-30      10
## 1975      35-40       6
## 1976      18-30      10
## 1977      18-30      10
## 1978      18-30      10
## 1979      18-30      10
## 1980      18-30      10
## 1981      30-35       7
## 1982      18-30      10
## 1983      18-30      10
## 1984      18-30      10
## 1985      18-30      10
## 1986      18-30      10
## 1987      18-30      10
## 1988      18-30      10
## 1989      18-30      10
## 1990      40-50       5
## 1991      18-30      10
## 1992      18-30      10
## 1993      40-50       5
## 1994      18-30      10
## 1995      18-30      10
## 1996      18-30      10
## 1997      30-35       7
## 1998      18-30      10
## 1999      18-30      10
## 2000      40-50       5
## 2001      50-60       5
## 2002      18-30      10
## 2003      40-50       5
## 2004      50-60       5
## 2005      18-30      10
## 2006      30-35       7
## 2007      18-30      10
## 2008      18-30      10
## 2009      40-50       5
## 2010      50-60       5
## 2011      18-30      10
## 2012      30-35       7
## 2013      18-30      10
## 2014      40-50       5
## 2015      18-30      10
## 2016      18-30      10
## 2017      18-30      10
## 2018      18-30      10
## 2019      18-30      10
## 2020      18-30      10
## 2021      18-30      10
## 2022      18-30      10
## 2023      18-30      10
## 2024      18-30      10
## 2025      18-30      10
## 2026      18-30      10
## 2027      18-30      10
## 2028      18-30      10
## 2029      18-30      10
## 2030      18-30      10
## 2031      18-30      10
## 2032      18-30      10
## 2033      18-30      10
## 2034      30-35       7
## 2035      18-30      10
## 2036      18-30      10
## 2037      30-35       7
## 2038      18-30      10
## 2039      40-50       5
## 2040      18-30      10
## 2041      18-30      10
## 2042      18-30      10
## 2043      30-35       7
## 2044      35-40       6
## 2045      18-30      10
## 2046      35-40       6
## 2047      18-30      10
## 2048      18-30      10
## 2049      30-35       7
## 2050      18-30      10
## 2051      18-30      10
## 2052      40-50       5
## 2053      18-30      10
## 2054      30-35       7
## 2055      18-30      10
## 2056      18-30      10
## 2057      18-30      10
## 2058      18-30      10
## 2059      35-40       6
## 2060      18-30      10
## 2061      18-30      10
## 2062      35-40       6
## 2063      18-30      10
## 2064      30-35       7
## 2065      40-50       5
## 2066      18-30      10
## 2067      18-30      10
## 2068      18-30      10
## 2069      30-35       7
## 2070      40-50       5
## 2071      40-50       5
## 2072      30-35       7
## 2073      18-30      10
## 2074      18-30      10
## 2075      30-35       7
## 2076      18-30      10
## 2077      18-30      10
## 2078      35-40       6
## 2079      18-30      10
## 2080      50-60       5
## 2081      18-30      10
## 2082      18-30      10
## 2083      30-35       7
## 2084      40-50       5
## 2085      18-30      10
## 2086      30-35       7
## 2087      18-30      10
## 2088      18-30      10
## 2089      50-60       5
## 2090      18-30      10
## 2091      18-30      10
## 2092      18-30      10
## 2093      18-30      10
## 2094      18-30      10
## 2095      18-30      10
## 2096      18-30      10
## 2097      40-50       5
## 2098      35-40       6
## 2099      30-35       7
## 2100      18-30      10
## 2101      18-30      10
## 2102      18-30      10
## 2103      30-35       7
## 2104      30-35       7
## 2105      40-50       5
## 2106      18-30      10
## 2107      18-30      10
## 2108      18-30      10
## 2109      18-30      10
## 2110      35-40       6
## 2111      18-30      10
## 2112      35-40       6
## 2113      35-40       6
## 2114      30-35       7
## 2115      30-35       7
## 2116      18-30      10
## 2117      30-35       7
## 2118      40-50       5
## 2119      35-40       6
## 2120      35-40       6
## 2121      35-40       6
## 2122      18-30      10
## 2123      50-60       5
## 2124      30-35       7
## 2125      30-35       7
## 2126      40-50       5
## 2127      40-50       5
## 2128      18-30      10
## 2129      18-30      10
## 2130      18-30      10
## 2131      35-40       6
## 2132      50-60       5
## 2133      18-30      10
## 2134      30-35       7
## 2135      18-30      10
## 2136      40-50       5
## 2137      18-30      10
## 2138      18-30      10
## 2139        65+       4
## 2140      18-30      10
## 2141      18-30      10
## 2142      18-30      10
## 2143      40-50       5
## 2144      30-35       7
## 2145      18-30      10
## 2146      40-50       5
## 2147      18-30      10
## 2148      40-50       5
## 2149      18-30      10
## 2150      35-40       6
## 2151      30-35       7
## 2152      40-50       5
## 2153      18-30      10
## 2154      18-30      10
## 2155      18-30      10
## 2156      18-30      10
## 2157      18-30      10
## 2158      30-35       7
## 2159      18-30      10
## 2160      30-35       7
## 2161      30-35       7
## 2162      18-30      10
## 2163      18-30      10
## 2164      40-50       5
## 2165      18-30      10
## 2166      18-30      10
## 2167      18-30      10
## 2168      18-30      10
## 2169      35-40       6
## 2170      18-30      10
## 2171      18-30      10
## 2172      50-60       5
## 2173      30-35       7
## 2174      40-50       5
## 2175      18-30      10
## 2176      40-50       5
## 2177      30-35       7
## 2178      40-50       5
## 2179      18-30      10
## 2180      18-30      10
## 2181      18-30      10
## 2182      35-40       6
## 2183      18-30      10
## 2184      18-30      10
## 2185      35-40       6
## 2186      30-35       7
## 2187        65+       4
## 2188      18-30      10
## 2189      35-40       6
## 2190      35-40       6
## 2191      30-35       7
## 2192      18-30      10
## 2193      30-35       7
## 2194      30-35       7
## 2195      30-35       7
## 2196      30-35       7
## 2197      18-30      10
## 2198      40-50       5
## 2199      30-35       7
## 2200      18-30      10
## 2201      30-35       7
## 2202      18-30      10
## 2203      35-40       6
## 2204      35-40       6
## 2205      35-40       6
## 2206      50-60       5
## 2207      40-50       5
## 2208      18-30      10
## 2209      18-30      10
## 2210      18-30      10
## 2211      18-30      10
## 2212      18-30      10
## 2213      18-30      10
## 2214      40-50       5
## 2215      35-40       6
## 2216      18-30      10
## 2217      18-30      10
## 2218      30-35       7
## 2219      30-35       7
## 2220      18-30      10
## 2221      30-35       7
## 2222      18-30      10
## 2223      30-35       7
## 2224      18-30      10
## 2225      18-30      10
## 2226      30-35       7
## 2227      40-50       5
## 2228      18-30      10
## 2229      18-30      10
## 2230      18-30      10
## 2231      18-30      10
## 2232      30-35       7
## 2233      50-60       5
## 2234      40-50       5
## 2235      18-30      10
## 2236      18-30      10
## 2237      18-30      10
## 2238      30-35       7
## 2239      40-50       5
## 2240      30-35       7
## 2241      18-30      10
## 2242      18-30      10
## 2243      18-30      10
## 2244      18-30      10
## 2245      30-35       7
## 2246      30-35       7
## 2247      18-30      10
## 2248      18-30      10
## 2249      18-30      10
## 2250      30-35       7
## 2251      40-50       5
## 2252      18-30      10
## 2253      18-30      10
## 2254      18-30      10
## 2255      18-30      10
## 2256      18-30      10
## 2257      35-40       6
## 2258      18-30      10
## 2259      18-30      10
## 2260      30-35       7
## 2261      18-30      10
## 2262      50-60       5
## 2263      30-35       7
## 2264      40-50       5
## 2265      40-50       5
## 2266      18-30      10
## 2267      18-30      10
## 2268      30-35       7
## 2269      30-35       7
## 2270      18-30      10
## 2271      18-30      10
## 2272      18-30      10
## 2273      30-35       7
## 2274      18-30      10
## 2275      30-35       7
## 2276      18-30      10
## 2277      50-60       5
## 2278      30-35       7
## 2279      30-35       7
## 2280      35-40       6
## 2281      18-30      10
## 2282      18-30      10
## 2283      30-35       7
## 2284      18-30      10
## 2285      30-35       7
## 2286      30-35       7
## 2287      40-50       5
## 2288      18-30      10
## 2289      30-35       7
## 2290      18-30      10
## 2291      18-30      10
## 2292      18-30      10
## 2293      18-30      10
## 2294      18-30      10
## 2295      40-50       5
## 2296      18-30      10
## 2297      35-40       6
## 2298      18-30      10
## 2299      35-40       6
## 2300      18-30      10
## 2301      35-40       6
## 2302      30-35       7
## 2303      18-30      10
## 2304      18-30      10
## 2305      18-30      10
## 2306      18-30      10
## 2307      18-30      10
## 2308      18-30      10
## 2309      18-30      10
## 2310      30-35       7
## 2311      18-30      10
## 2312      18-30      10
## 2313      18-30      10
## 2314      18-30      10
## 2315      18-30      10
## 2316      18-30      10
## 2317      40-50       5
## 2318      35-40       6
## 2319      30-35       7
## 2320      18-30      10
## 2321      18-30      10
## 2322      18-30      10
## 2323      30-35       7
## 2324      35-40       6
## 2325      50-60       5
## 2326      40-50       5
## 2327      18-30      10
## 2328      35-40       6
## 2329      40-50       5
## 2330      18-30      10
## 2331      18-30      10
## 2332      18-30      10
## 2333      35-40       6
## 2334      40-50       5
## 2335      30-35       7
## 2336      18-30      10
## 2337      35-40       6
## 2338      35-40       6
## 2339      18-30      10
## 2340      18-30      10
## 2341      18-30      10
## 2342      18-30      10
## 2343      40-50       5
## 2344      18-30      10
## 2345      18-30      10
## 2346      18-30      10
## 2347      40-50       5
## 2348      18-30      10
## 2349      18-30      10
## 2350      35-40       6
## 2351      18-30      10
## 2352      35-40       6
## 2353      40-50       5
## 2354      50-60       5
## 2355      30-35       7
## 2356      18-30      10
## 2357      18-30      10
## 2358      40-50       5
## 2359      18-30      10
## 2360      18-30      10
## 2361      18-30      10
## 2362      18-30      10
## 2363      18-30      10
## 2364      18-30      10
## 2365      18-30      10
## 2366      18-30      10
## 2367      18-30      10
## 2368      35-40       6
## 2369      18-30      10
## 2370      40-50       5
## 2371      40-50       5
## 2372      18-30      10
## 2373      18-30      10
## 2374      18-30      10
## 2375      18-30      10
## 2376      18-30      10
## 2377        65+       4
## 2378      18-30      10
## 2379      18-30      10
## 2380      18-30      10
## 2381      18-30      10
## 2382      35-40       6
## 2383      18-30      10
## 2384      18-30      10
## 2385      18-30      10
## 2386      18-30      10
## 2387      18-30      10
## 2388      40-50       5
## 2389      18-30      10
## 2390      30-35       7
## 2391      18-30      10
## 2392      18-30      10
## 2393      18-30      10
## 2394      18-30      10
## 2395      35-40       6
## 2396      30-35       7
## 2397      30-35       7
## 2398      18-30      10
## 2399      35-40       6
## 2400      30-35       7
## 2401      18-30      10
## 2402      18-30      10
## 2403      18-30      10
## 2404      18-30      10
## 2405      18-30      10
## 2406      18-30      10
## 2407      30-35       7
## 2408      18-30      10
## 2409      18-30      10
## 2410      18-30      10
## 2411      30-35       7
## 2412      18-30      10
## 2413      30-35       7
## 2414      30-35       7
## 2415      18-30      10
## 2416      30-35       7
## 2417      30-35       7
## 2418      40-50       5
## 2419      40-50       5
## 2420      30-35       7
## 2421      18-30      10
## 2422      18-30      10
## 2423      18-30      10
## 2424      18-30      10
## 2425      30-35       7
## 2426      40-50       5
## 2427      18-30      10
## 2428      18-30      10
## 2429      30-35       7
## 2430      18-30      10
## 2431      30-35       7
## 2432      30-35       7
## 2433      18-30      10
## 2434      18-30      10
## 2435      30-35       7
## 2436      40-50       5
## 2437      18-30      10
## 2438      30-35       7
## 2439      18-30      10
## 2440      35-40       6
## 2441      30-35       7
## 2442      18-30      10
## 2443      18-30      10
## 2444      18-30      10
## 2445      18-30      10
## 2446      40-50       5
## 2447      18-30      10
## 2448      30-35       7
## 2449      18-30      10
## 2450      18-30      10
## 2451      30-35       7
## 2452      18-30      10
## 2453      18-30      10
## 2454      30-35       7
## 2455      18-30      10
## 2456      18-30      10
## 2457      18-30      10
## 2458      30-35       7
## 2459      30-35       7
## 2460      35-40       6
## 2461      18-30      10
## 2462      18-30      10
## 2463      30-35       7
## 2464      35-40       6
## 2465      35-40       6
## 2466      18-30      10
## 2467      18-30      10
## 2468      30-35       7
## 2469      18-30      10
## 2470      18-30      10
## 2471      18-30      10
## 2472      18-30      10
## 2473      30-35       7
## 2474      18-30      10
## 2475      18-30      10
## 2476      18-30      10
## 2477        65+       4
## 2478      18-30      10
## 2479      18-30      10
## 2480      30-35       7
## 2481      30-35       7
## 2482      18-30      10
## 2483      18-30      10
## 2484      18-30      10
## 2485      18-30      10
## 2486      30-35       7
## 2487      35-40       6
## 2488      18-30      10
## 2489      18-30      10
## 2490      18-30      10
## 2491      40-50       5
## 2492      35-40       6
## 2493      18-30      10
## 2494      30-35       7
## 2495      18-30      10
## 2496      30-35       7
## 2497      18-30      10
## 2498      18-30      10
## 2499      18-30      10
## 2500      18-30      10
## 2501      18-30      10
## 2502      18-30      10
## 2503      30-35       7
## 2504      30-35       7
## 2505      18-30      10
## 2506      18-30      10
## 2507      35-40       6
## 2508      18-30      10
## 2509      30-35       7
## 2510      35-40       6
## 2511      30-35       7
## 2512      18-30      10
## 2513        65+       4
## 2514      30-35       7
## 2515      18-30      10
## 2516      18-30      10
## 2517      18-30      10
## 2518      18-30      10
## 2519      18-30      10
## 2520      18-30      10
## 2521      18-30      10
## 2522      30-35       7
## 2523      18-30      10
## 2524      35-40       6
## 2525      40-50       5
## 2526      18-30      10
## 2527      18-30      10
## 2528      18-30      10
## 2529      18-30      10
## 2530      18-30      10
## 2531      18-30      10
## 2532      35-40       6
## 2533      40-50       5
## 2534      30-35       7
## 2535      18-30      10
## 2536      18-30      10
## 2537      35-40       6
## 2538      35-40       6
## 2539      18-30      10
## 2540      18-30      10
## 2541        65+       4
## 2542      18-30      10
## 2543      30-35       7
## 2544      18-30      10
## 2545      18-30      10
## 2546      18-30      10
## 2547      30-35       7
## 2548      18-30      10
## 2549      18-30      10
## 2550      35-40       6
## 2551      35-40       6
## 2552      18-30      10
## 2553      50-60       5
## 2554      18-30      10
## 2555      18-30      10
## 2556      18-30      10
## 2557      18-30      10
## 2558      30-35       7
## 2559      18-30      10
## 2560      40-50       5
## 2561      18-30      10
## 2562      18-30      10
## 2563      30-35       7
## 2564      18-30      10
## 2565      18-30      10
## 2566      18-30      10
## 2567      40-50       5
## 2568      35-40       6
## 2569      50-60       5
## 2570      18-30      10
## 2571      30-35       7
## 2572      18-30      10
## 2573      50-60       5
## 2574      18-30      10
## 2575      30-35       7
## 2576      18-30      10
## 2577        65+       4
## 2578      18-30      10
## 2579      18-30      10
## 2580      40-50       5
## 2581      30-35       7
## 2582      30-35       7
## 2583      30-35       7
## 2584      18-30      10
## 2585      40-50       5
## 2586      30-35       7
## 2587      50-60       5
## 2588      30-35       7
## 2589      35-40       6
## 2590      30-35       7
## 2591      18-30      10
## 2592      18-30      10
## 2593      18-30      10
## 2594      50-60       5
## 2595      40-50       5
## 2596      18-30      10
## 2597      18-30      10
## 2598      35-40       6
## 2599      18-30      10
## 2600      50-60       5
## 2601      35-40       6
## 2602      18-30      10
## 2603      35-40       6
## 2604      18-30      10
## 2605      18-30      10
## 2606      18-30      10
## 2607      18-30      10
## 2608      30-35       7
## 2609      18-30      10
## 2610      30-35       7
## 2611      30-35       7
## 2612      18-30      10
## 2613      18-30      10
## 2614      30-35       7
## 2615      18-30      10
## 2616      18-30      10
## 2617      40-50       5
## 2618      30-35       7
## 2619      35-40       6
## 2620      18-30      10
## 2621      30-35       7
## 2622      18-30      10
## 2623      30-35       7
## 2624      18-30      10
## 2625      30-35       7
## 2626      50-60       5
## 2627      40-50       5
## 2628      18-30      10
## 2629      18-30      10
## 2630      18-30      10
## 2631      18-30      10
## 2632      40-50       5
## 2633      30-35       7
## 2634      18-30      10
## 2635      50-60       5
## 2636      18-30      10
## 2637      18-30      10
## 2638      18-30      10
## 2639      40-50       5
## 2640      40-50       5
## 2641      18-30      10
## 2642      30-35       7
## 2643      18-30      10
## 2644      30-35       7
## 2645      18-30      10
## 2646      18-30      10
## 2647      18-30      10
## 2648      35-40       6
## 2649      18-30      10
## 2650      18-30      10
## 2651      18-30      10
## 2652      18-30      10
## 2653      18-30      10
## 2654      18-30      10
## 2655      18-30      10
## 2656      18-30      10
## 2657      18-30      10
## 2658      18-30      10
## 2659      30-35       7
## 2660      18-30      10
## 2661      18-30      10
## 2662      35-40       6
## 2663      40-50       5
## 2664      18-30      10
## 2665      30-35       7
## 2666      30-35       7
## 2667      30-35       7
## 2668      18-30      10
## 2669      18-30      10
## 2670      18-30      10
## 2671      30-35       7
## 2672      18-30      10
## 2673      18-30      10
## 2674      18-30      10
## 2675      18-30      10
## 2676      40-50       5
## 2677      18-30      10
## 2678      35-40       6
## 2679      40-50       5
## 2680      35-40       6
## 2681      35-40       6
## 2682      30-35       7
## 2683      18-30      10
## 2684      18-30      10
## 2685      30-35       7
## 2686      18-30      10
## 2687      40-50       5
## 2688      18-30      10
## 2689      18-30      10
## 2690      18-30      10
## 2691      18-30      10
## 2692      18-30      10
## 2693      18-30      10
## 2694      35-40       6
## 2695      35-40       6
## 2696      18-30      10
## 2697      30-35       7
## 2698      35-40       6
## 2699      18-30      10
## 2700      18-30      10
## 2701      35-40       6
## 2702      40-50       5
## 2703      35-40       6
## 2704      18-30      10
## 2705      35-40       6
## 2706      18-30      10
## 2707      18-30      10
## 2708      18-30      10
## 2709      30-35       7
## 2710      18-30      10
## 2711      18-30      10
## 2712      35-40       6
## 2713      40-50       5
## 2714      18-30      10
## 2715      40-50       5
## 2716      18-30      10
## 2717      18-30      10
## 2718      40-50       5
## 2719      18-30      10
## 2720      18-30      10
## 2721      40-50       5
## 2722      18-30      10
## 2723      18-30      10
## 2724      18-30      10
## 2725      35-40       6
## 2726      30-35       7
## 2727      18-30      10
## 2728      50-60       5
## 2729      40-50       5
## 2730      40-50       5
## 2731      35-40       6
## 2732      30-35       7
## 2733      18-30      10
## 2734      35-40       6
## 2735      18-30      10
## 2736      30-35       7
## 2737      30-35       7
## 2738      30-35       7
## 2739      30-35       7
## 2740      18-30      10
## 2741      18-30      10
## 2742      18-30      10
## 2743      30-35       7
## 2744      18-30      10
## 2745      35-40       6
## 2746      18-30      10
## 2747      35-40       6
## 2748      35-40       6
## 2749        65+       4
## 2750      30-35       7
## 2751      40-50       5
## 2752      50-60       5
## 2753      35-40       6
## 2754      40-50       5
## 2755      35-40       6
## 2756      18-30      10
## 2757      18-30      10
## 2758      18-30      10
## 2759      18-30      10
## 2760      18-30      10
## 2761      18-30      10
## 2762      35-40       6
## 2763      18-30      10
## 2764      18-30      10
## 2765      40-50       5
## 2766      18-30      10
## 2767      30-35       7
## 2768      18-30      10
## 2769      18-30      10
## 2770      18-30      10
## 2771      18-30      10
## 2772      18-30      10
## 2773      50-60       5
## 2774      40-50       5
## 2775      18-30      10
## 2776      18-30      10
## 2777      18-30      10
## 2778      40-50       5
## 2779      18-30      10
## 2780      35-40       6
## 2781      18-30      10
## 2782      18-30      10
## 2783      18-30      10
## 2784      40-50       5
## 2785      18-30      10
## 2786      35-40       6
## 2787      18-30      10
## 2788      18-30      10
## 2789      18-30      10
## 2790      18-30      10
## 2791        65+       4
## 2792      18-30      10
## 2793      18-30      10
## 2794      30-35       7
## 2795      30-35       7
## 2796      50-60       5
## 2797      18-30      10
## 2798      35-40       6
## 2799      18-30      10
## 2800      40-50       5
## 2801      35-40       6
## 2802      18-30      10
## 2803      18-30      10
## 2804      40-50       5
## 2805      18-30      10
## 2806      30-35       7
## 2807      18-30      10
## 2808      18-30      10
## 2809      40-50       5
## 2810      30-35       7
## 2811      18-30      10
## 2812      18-30      10
## 2813      35-40       6
## 2814      18-30      10
## 2815      35-40       6
## 2816      18-30      10
## 2817      50-60       5
## 2818      30-35       7
## 2819      40-50       5
## 2820      30-35       7
## 2821      18-30      10
## 2822      40-50       5
## 2823      18-30      10
## 2824      40-50       5
## 2825      50-60       5
## 2826      18-30      10
## 2827      35-40       6
## 2828      18-30      10
## 2829      18-30      10
## 2830      40-50       5
## 2831      30-35       7
## 2832      18-30      10
## 2833      18-30      10
## 2834      18-30      10
## 2835      18-30      10
## 2836      18-30      10
## 2837      35-40       6
## 2838      18-30      10
## 2839        65+       4
## 2840      35-40       6
## 2841      40-50       5
## 2842      18-30      10
## 2843        65+       4
## 2844      18-30      10
## 2845      18-30      10
## 2846      35-40       6
## 2847      35-40       6
## 2848      40-50       5
## 2849      35-40       6
## 2850      50-60       5
## 2851      18-30      10
## 2852      18-30      10
## 2853      40-50       5
## 2854      30-35       7
## 2855      18-30      10
## 2856      18-30      10
## 2857      35-40       6
## 2858      18-30      10
## 2859      18-30      10
## 2860      18-30      10
## 2861      18-30      10
## 2862      40-50       5
## 2863      35-40       6
## 2864      18-30      10
## 2865      18-30      10
## 2866      50-60       5
## 2867      30-35       7
## 2868      40-50       5
## 2869      18-30      10
## 2870      18-30      10
## 2871      35-40       6
## 2872      18-30      10
## 2873      18-30      10
## 2874      18-30      10
## 2875      35-40       6
## 2876      18-30      10
## 2877      18-30      10
## 2878      18-30      10
## 2879      18-30      10
## 2880      30-35       7
## 2881      18-30      10
## 2882      18-30      10
## 2883      18-30      10
## 2884      18-30      10
## 2885      18-30      10
## 2886      18-30      10
## 2887      18-30      10
## 2888        65+       4
## 2889      50-60       5
## 2890      18-30      10
## 2891      18-30      10
## 2892      18-30      10
## 2893      18-30      10
## 2894      35-40       6
## 2895      35-40       6
## 2896      18-30      10
## 2897      18-30      10
## 2898      18-30      10
## 2899      35-40       6
## 2900      30-35       7
## 2901      18-30      10
## 2902      40-50       5
## 2903      18-30      10
## 2904      18-30      10
## 2905      18-30      10
## 2906        65+       4
## 2907      18-30      10
## 2908      18-30      10
## 2909      18-30      10
## 2910      18-30      10
## 2911      18-30      10
## 2912      18-30      10
## 2913      18-30      10
## 2914      30-35       7
## 2915      18-30      10
## 2916      18-30      10
## 2917      18-30      10
## 2918      30-35       7
## 2919      35-40       6
## 2920      18-30      10
## 2921      18-30      10
## 2922      18-30      10
## 2923      18-30      10
## 2924      18-30      10
## 2925      30-35       7
## 2926      18-30      10
## 2927      18-30      10
## 2928      40-50       5
## 2929      18-30      10
## 2930      30-35       7
## 2931      30-35       7
## 2932      35-40       6
## 2933      30-35       7
## 2934      40-50       5
## 2935      30-35       7
## 2936      18-30      10
## 2937      30-35       7
## 2938      18-30      10
## 2939      18-30      10
## 2940      18-30      10
## 2941      40-50       5
## 2942      40-50       5
## 2943      35-40       6
## 2944      40-50       5
## 2945      18-30      10
## 2946      40-50       5
## 2947      18-30      10
## 2948      40-50       5
## 2949      18-30      10
## 2950      18-30      10
## 2951      18-30      10
## 2952      18-30      10
## 2953      18-30      10
## 2954      40-50       5
## 2955      18-30      10
## 2956      40-50       5
## 2957      35-40       6
## 2958      30-35       7
## 2959      40-50       5
## 2960      18-30      10
## 2961      18-30      10
## 2962      18-30      10
## 2963      18-30      10
## 2964      30-35       7
## 2965      18-30      10
## 2966      18-30      10
## 2967      30-35       7
## 2968      30-35       7
## 2969      30-35       7
## 2970      30-35       7
## 2971      18-30      10
## 2972      18-30      10
## 2973      30-35       7
## 2974      18-30      10
## 2975      18-30      10
## 2976      18-30      10
## 2977      18-30      10
## 2978      18-30      10
## 2979      18-30      10
## 2980      18-30      10
## 2981      18-30      10
## 2982      30-35       7
## 2983      18-30      10
## 2984      30-35       7
## 2985      18-30      10
## 2986      30-35       7
## 2987      18-30      10
## 2988      18-30      10
## 2989      30-35       7
## 2990      30-35       7
## 2991      50-60       5
## 2992      35-40       6
## 2993      18-30      10
## 2994      35-40       6
## 2995      18-30      10
## 2996      50-60       5
## 2997      18-30      10
## 2998      30-35       7
## 2999      18-30      10
## 3000      18-30      10
## 3001      18-30      10
## 3002      18-30      10
## 3003      30-35       7
## 3004      18-30      10
## 3005      18-30      10
## 3006      18-30      10
## 3007      18-30      10
## 3008      18-30      10
## 3009      18-30      10
## 3010      30-35       7
## 3011      18-30      10
## 3012      18-30      10
## 3013      18-30      10
## 3014      30-35       7
## 3015      30-35       7
## 3016      18-30      10
## 3017      18-30      10
## 3018      40-50       5
## 3019      18-30      10
## 3020      30-35       7
## 3021      35-40       6
## 3022      30-35       7
## 3023      18-30      10
## 3024      18-30      10
## 3025      30-35       7
## 3026      40-50       5
## 3027      35-40       6
## 3028      30-35       7
## 3029      18-30      10
## 3030      30-35       7
## 3031      18-30      10
## 3032      18-30      10
## 3033      18-30      10
## 3034      30-35       7
## 3035      18-30      10
## 3036      40-50       5
## 3037      30-35       7
## 3038      18-30      10
## 3039      40-50       5
## 3040      18-30      10
## 3041      18-30      10
## 3042      35-40       6
## 3043      40-50       5
## 3044        65+       4
## 3045      50-60       5
## 3046      30-35       7
## 3047      18-30      10
## 3048      30-35       7
## 3049      30-35       7
## 3050      40-50       5
## 3051      30-35       7
## 3052      18-30      10
## 3053      35-40       6
## 3054      18-30      10
## 3055      18-30      10
## 3056      18-30      10
## 3057      30-35       7
## 3058      18-30      10
## 3059        65+       4
## 3060      18-30      10
## 3061      18-30      10
## 3062      18-30      10
## 3063      18-30      10
## 3064      18-30      10
## 3065      18-30      10
## 3066      18-30      10
## 3067      18-30      10
## 3068      30-35       7
## 3069      30-35       7
## 3070      30-35       7
## 3071      18-30      10
## 3072      30-35       7
## 3073      30-35       7
## 3074      18-30      10
## 3075      30-35       7
## 3076      18-30      10
## 3077      18-30      10
## 3078      40-50       5
## 3079      18-30      10
## 3080      35-40       6
## 3081      18-30      10
## 3082      18-30      10
## 3083        65+       4
## 3084      18-30      10
## 3085      18-30      10
## 3086      18-30      10
## 3087      18-30      10
## 3088      18-30      10
## 3089      50-60       5
## 3090      18-30      10
## 3091      18-30      10
## 3092      18-30      10
## 3093      30-35       7
## 3094      18-30      10
## 3095      30-35       7
## 3096      35-40       6
## 3097      35-40       6
## 3098      30-35       7
## 3099      18-30      10
## 3100      50-60       5
## 3101      18-30      10
## 3102      40-50       5
## 3103      35-40       6
## 3104      18-30      10
## 3105      35-40       6
## 3106      18-30      10
## 3107      18-30      10
## 3108      18-30      10
## 3109      40-50       5
## 3110      18-30      10
## 3111      18-30      10
## 3112      35-40       6
## 3113      35-40       6
## 3114      18-30      10
## 3115      30-35       7
## 3116      40-50       5
## 3117      40-50       5
## 3118      18-30      10
## 3119      18-30      10
## 3120      35-40       6
## 3121      18-30      10
## 3122      18-30      10
## 3123      30-35       7
## 3124      18-30      10
## 3125      18-30      10
## 3126      30-35       7
## 3127      35-40       6
## 3128      18-30      10
## 3129      18-30      10
## 3130      18-30      10
## 3131      18-30      10
## 3132      40-50       5
## 3133      30-35       7
## 3134      40-50       5
## 3135      18-30      10
## 3136      35-40       6
## 3137      18-30      10
## 3138      30-35       7
## 3139      18-30      10
## 3140      30-35       7
## 3141        65+       4
## 3142      40-50       5
## 3143      35-40       6
## 3144      18-30      10
## 3145      18-30      10
## 3146      18-30      10
## 3147      35-40       6
## 3148      18-30      10
## 3149      50-60       5
## 3150      30-35       7
## 3151      18-30      10
## 3152      35-40       6
## 3153      30-35       7
## 3154      40-50       5
## 3155      35-40       6
## 3156      35-40       6
## 3157      18-30      10
## 3158      35-40       6
## 3159      30-35       7
## 3160      18-30      10
## 3161      18-30      10
## 3162      18-30      10
## 3163      18-30      10
## 3164      18-30      10
## 3165      18-30      10
## 3166      35-40       6
## 3167      30-35       7
## 3168      30-35       7
## 3169      30-35       7
## 3170      30-35       7
## 3171      35-40       6
## 3172      30-35       7
## 3173      18-30      10
## 3174      40-50       5
## 3175      35-40       6
## 3176      30-35       7
## 3177      18-30      10
## 3178      30-35       7
## 3179      40-50       5
## 3180      30-35       7
## 3181      18-30      10
## 3182      18-30      10
## 3183      18-30      10
## 3184      18-30      10
## 3185      30-35       7
## 3186      40-50       5
## 3187      18-30      10
## 3188      18-30      10
## 3189      18-30      10
## 3190      35-40       6
## 3191      30-35       7
## 3192      35-40       6
## 3193      30-35       7
## 3194      40-50       5
## 3195      35-40       6
## 3196      18-30      10
## 3197      18-30      10
## 3198      18-30      10
## 3199      18-30      10
## 3200      30-35       7
## 3201      18-30      10
## 3202      18-30      10
## 3203      18-30      10
## 3204      35-40       6
## 3205      35-40       6
## 3206      40-50       5
## 3207      18-30      10
## 3208      40-50       5
## 3209      40-50       5
## 3210      18-30      10
## 3211      35-40       6
## 3212      18-30      10
## 3213      50-60       5
## 3214      50-60       5
## 3215      18-30      10
## 3216      30-35       7
## 3217      40-50       5
## 3218      18-30      10
## 3219      18-30      10
## 3220      18-30      10
## 3221      18-30      10
## 3222      18-30      10
## 3223      18-30      10
## 3224      40-50       5
## 3225      18-30      10
## 3226      40-50       5
## 3227      18-30      10
## 3228      40-50       5
## 3229      18-30      10
## 3230      30-35       7
## 3231      30-35       7
## 3232      30-35       7
## 3233        65+       4
## 3234      18-30      10
## 3235      30-35       7
## 3236      18-30      10
## 3237      18-30      10
## 3238      18-30      10
## 3239      50-60       5
## 3240      30-35       7
## 3241      18-30      10
## 3242      18-30      10
## 3243      40-50       5
## 3244      18-30      10
## 3245      18-30      10
## 3246      18-30      10
## 3247      18-30      10
## 3248      35-40       6
## 3249      18-30      10
## 3250      18-30      10
## 3251      30-35       7
## 3252      18-30      10
## 3253      18-30      10
## 3254      40-50       5
## 3255      30-35       7
## 3256      18-30      10
## 3257      18-30      10
## 3258      18-30      10
## 3259      18-30      10
## 3260      18-30      10
## 3261      18-30      10
## 3262      35-40       6
## 3263      18-30      10
## 3264      30-35       7
## 3265      18-30      10
## 3266      18-30      10
## 3267      18-30      10
## 3268      18-30      10
## 3269      18-30      10
## 3270      50-60       5
## 3271      18-30      10
## 3272      18-30      10
## 3273      18-30      10
## 3274      30-35       7
## 3275      18-30      10
## 3276      18-30      10
## 3277      50-60       5
## 3278      30-35       7
## 3279      35-40       6
## 3280      30-35       7
## 3281      18-30      10
## 3282      30-35       7
## 3283      40-50       5
## 3284      30-35       7
## 3285      30-35       7
## 3286      30-35       7
## 3287      30-35       7
## 3288      18-30      10
## 3289      40-50       5
## 3290      30-35       7
## 3291      18-30      10
## 3292      18-30      10
## 3293      18-30      10
## 3294      50-60       5
## 3295      18-30      10
## 3296      50-60       5
## 3297      30-35       7
## 3298      35-40       6
## 3299      30-35       7
## 3300      18-30      10
## 3301      18-30      10
## 3302      18-30      10
## 3303      50-60       5
## 3304      18-30      10
## 3305      18-30      10
## 3306      30-35       7
## 3307      30-35       7
## 3308      30-35       7
## 3309      18-30      10
## 3310      30-35       7
## 3311      30-35       7
## 3312      18-30      10
## 3313      18-30      10
## 3314      35-40       6
## 3315      18-30      10
## 3316      18-30      10
## 3317      18-30      10
## 3318      18-30      10
## 3319      18-30      10
## 3320      18-30      10
## 3321      35-40       6
## 3322      18-30      10
## 3323      18-30      10
## 3324      18-30      10
## 3325      30-35       7
## 3326      18-30      10
## 3327      18-30      10
## 3328      18-30      10
## 3329      18-30      10
## 3330      18-30      10
## 3331      18-30      10
## 3332      18-30      10
## 3333      18-30      10
## 3334      18-30      10
## 3335      30-35       7
## 3336      30-35       7
## 3337      18-30      10
## 3338      18-30      10
## 3339      18-30      10
## 3340      18-30      10
## 3341      18-30      10
## 3342      18-30      10
## 3343      18-30      10
## 3344      18-30      10
## 3345      18-30      10
## 3346      18-30      10
## 3347      18-30      10
## 3348      18-30      10
## 3349      18-30      10
## 3350      18-30      10
## 3351      18-30      10
## 3352      18-30      10
## 3353      18-30      10
## 3354      18-30      10
## 3355      18-30      10
## 3356      18-30      10
## 3357      18-30      10
## 3358      30-35       7
## 3359      18-30      10
## 3360      18-30      10
## 3361      18-30      10
## 3362      30-35       7
## 3363      18-30      10
## 3364      18-30      10
## 3365      18-30      10
## 3366      30-35       7
## 3367      18-30      10
## 3368      30-35       7
## 3369      18-30      10
## 3370      18-30      10
## 3371      18-30      10
## 3372      18-30      10
## 3373      18-30      10
## 3374      30-35       7
## 3375      18-30      10
## 3376      50-60       5
## 3377      18-30      10
## 3378      18-30      10
## 3379      40-50       5
## 3380      18-30      10
## 3381      18-30      10
## 3382      18-30      10
## 3383      18-30      10
## 3384      50-60       5
## 3385      35-40       6
## 3386      18-30      10
## 3387      18-30      10
## 3388      40-50       5
## 3389      18-30      10
## 3390      35-40       6
## 3391        65+       4
## 3392      18-30      10
## 3393      18-30      10
## 3394      18-30      10
## 3395      18-30      10
## 3396      18-30      10
## 3397      40-50       5
## 3398      18-30      10
## 3399      18-30      10
## 3400      18-30      10
## 3401      18-30      10
## 3402      35-40       6
## 3403      40-50       5
## 3404      18-30      10
## 3405      18-30      10
## 3406      18-30      10
## 3407      18-30      10
## 3408      18-30      10
## 3409      35-40       6
## 3410      18-30      10
## 3411      30-35       7
## 3412      18-30      10
## 3413      18-30      10
## 3414      35-40       6
## 3415        65+       4
## 3416      30-35       7
## 3417      18-30      10
## 3418      30-35       7
## 3419        65+       4
## 3420      40-50       5
## 3421      50-60       5
## 3422      30-35       7
## 3423      18-30      10
## 3424      40-50       5
## 3425      35-40       6
## 3426      18-30      10
## 3427      30-35       7
## 3428      18-30      10
## 3429      18-30      10
## 3430      30-35       7
## 3431      30-35       7
## 3432      30-35       7
## 3433      18-30      10
## 3434      18-30      10
## 3435      18-30      10
## 3436      35-40       6
## 3437      18-30      10
## 3438      30-35       7
## 3439      30-35       7
## 3440      40-50       5
## 3441      18-30      10
## 3442      30-35       7
## 3443      30-35       7
## 3444      18-30      10
## 3445      50-60       5
## 3446      30-35       7
## 3447      18-30      10
## 3448      18-30      10
## 3449      35-40       6
## 3450      18-30      10
## 3451      18-30      10
## 3452      30-35       7
## 3453      18-30      10
## 3454      40-50       5
## 3455      18-30      10
## 3456      18-30      10
## 3457      40-50       5
## 3458      30-35       7
## 3459      18-30      10
## 3460      40-50       5
## 3461      18-30      10
## 3462      18-30      10
## 3463      35-40       6
## 3464      18-30      10
## 3465      50-60       5
## 3466      18-30      10
## 3467      40-50       5
## 3468      35-40       6
## 3469      30-35       7
## 3470      50-60       5
## 3471      18-30      10
## 3472      18-30      10
## 3473      18-30      10
## 3474      40-50       5
## 3475      30-35       7
## 3476      18-30      10
## 3477      18-30      10
## 3478      30-35       7
## 3479      30-35       7
## 3480      35-40       6
## 3481      35-40       6
## 3482      18-30      10
## 3483      18-30      10
## 3484      40-50       5
## 3485      35-40       6
## 3486      30-35       7
## 3487      40-50       5
## 3488      30-35       7
## 3489      30-35       7
## 3490      30-35       7
## 3491      30-35       7
## 3492      40-50       5
## 3493      18-30      10
## 3494      35-40       6
## 3495      35-40       6
## 3496      30-35       7
## 3497      35-40       6
## 3498      30-35       7
## 3499      40-50       5
## 3500      18-30      10
## 3501      18-30      10
## 3502      35-40       6
## 3503      18-30      10
## 3504      18-30      10
## 3505      40-50       5
## 3506      18-30      10
## 3507      18-30      10
## 3508      50-60       5
## 3509      18-30      10
## 3510      18-30      10
## 3511      18-30      10
## 3512      35-40       6
## 3513      50-60       5
## 3514      18-30      10
## 3515      18-30      10
## 3516      18-30      10
## 3517      18-30      10
## 3518      18-30      10
## 3519      35-40       6
## 3520      18-30      10
## 3521      18-30      10
## 3522      35-40       6
## 3523      35-40       6
## 3524      18-30      10
## 3525      18-30      10
## 3526      30-35       7
## 3527      35-40       6
## 3528      30-35       7
## 3529        65+       4
## 3530      18-30      10
## 3531      18-30      10
## 3532      18-30      10
## 3533      30-35       7
## 3534      18-30      10
## 3535      18-30      10
## 3536      30-35       7
## 3537      18-30      10
## 3538      18-30      10
## 3539      35-40       6
## 3540      35-40       6
## 3541      18-30      10
## 3542      18-30      10
## 3543      18-30      10
## 3544      18-30      10
## 3545      18-30      10
## 3546      18-30      10
## 3547      35-40       6
## 3548      18-30      10
## 3549      30-35       7
## 3550      30-35       7
## 3551      18-30      10
## 3552      18-30      10
## 3553      18-30      10
## 3554      18-30      10
## 3555      30-35       7
## 3556      18-30      10
## 3557      18-30      10
## 3558        65+       4
## 3559      18-30      10
## 3560      18-30      10
## 3561      18-30      10
## 3562      18-30      10
## 3563      18-30      10
## 3564      18-30      10
## 3565      40-50       5
## 3566      18-30      10
## 3567      30-35       7
## 3568      40-50       5
## 3569      18-30      10
## 3570      18-30      10
## 3571      35-40       6
## 3572      18-30      10
## 3573      18-30      10
## 3574      35-40       6
## 3575      18-30      10
## 3576      35-40       6
## 3577      18-30      10
## 3578        65+       4
## 3579      18-30      10
## 3580      18-30      10
## 3581      18-30      10
## 3582      30-35       7
## 3583      30-35       7
## 3584      18-30      10
## 3585      35-40       6
## 3586      30-35       7
## 3587      40-50       5
## 3588      18-30      10
## 3589      18-30      10
## 3590      18-30      10
## 3591      18-30      10
## 3592      18-30      10
## 3593      18-30      10
## 3594      18-30      10
## 3595      18-30      10
## 3596      18-30      10
## 3597      30-35       7
## 3598      18-30      10
## 3599      30-35       7
## 3600      18-30      10
## 3601      18-30      10
## 3602      30-35       7
## 3603      18-30      10
## 3604      18-30      10
## 3605      18-30      10
## 3606      35-40       6
## 3607      30-35       7
## 3608      40-50       5
## 3609      40-50       5
## 3610      35-40       6
## 3611      18-30      10
## 3612      18-30      10
## 3613      18-30      10
## 3614      18-30      10
## 3615        65+       4
## 3616      18-30      10
## 3617      18-30      10
## 3618      30-35       7
## 3619      35-40       6
## 3620      18-30      10
## 3621      40-50       5
## 3622      18-30      10
## 3623      18-30      10
## 3624        65+       4
## 3625      50-60       5
## 3626      18-30      10
## 3627      40-50       5
## 3628      30-35       7
## 3629      50-60       5
## 3630      35-40       6
## 3631      18-30      10
## 3632      18-30      10
## 3633      18-30      10
## 3634      40-50       5
## 3635      40-50       5
## 3636      18-30      10
## 3637      40-50       5
## 3638      18-30      10
## 3639      18-30      10
## 3640      30-35       7
## 3641      18-30      10
## 3642      18-30      10
## 3643      18-30      10
## 3644      30-35       7
## 3645      18-30      10
## 3646      18-30      10
## 3647      18-30      10
## 3648      30-35       7
## 3649      18-30      10
## 3650      30-35       7
## 3651      40-50       5
## 3652      50-60       5
## 3653      18-30      10
## 3654      40-50       5
## 3655      18-30      10
## 3656      18-30      10
## 3657      40-50       5
## 3658      18-30      10
## 3659      50-60       5
## 3660      30-35       7
## 3661      50-60       5
## 3662      30-35       7
## 3663      18-30      10
## 3664      18-30      10
## 3665      18-30      10
## 3666      18-30      10
## 3667      18-30      10
## 3668      18-30      10
## 3669      18-30      10
## 3670      18-30      10
## 3671      18-30      10
## 3672      50-60       5
## 3673      18-30      10
## 3674      18-30      10
## 3675      18-30      10
## 3676      40-50       5
## 3677      18-30      10
## 3678      18-30      10
## 3679      40-50       5
## 3680      30-35       7
## 3681      35-40       6
## 3682      30-35       7
## 3683      30-35       7
## 3684      40-50       5
## 3685      40-50       5
## 3686      35-40       6
## 3687      18-30      10
## 3688      30-35       7
## 3689      18-30      10
## 3690      18-30      10
## 3691      30-35       7
## 3692      30-35       7
## 3693      18-30      10
## 3694      18-30      10
## 3695      50-60       5
## 3696      18-30      10
## 3697      30-35       7
## 3698      50-60       5
## 3699      18-30      10
## 3700      18-30      10
## 3701        65+       4
## 3702      18-30      10
## 3703      18-30      10
## 3704      40-50       5
## 3705      35-40       6
## 3706      40-50       5
## 3707      30-35       7
## 3708      18-30      10
## 3709      18-30      10
## 3710      30-35       7
## 3711      35-40       6
## 3712      18-30      10
## 3713      30-35       7
## 3714      18-30      10
## 3715      40-50       5
## 3716      18-30      10
## 3717      30-35       7
## 3718      35-40       6
## 3719      30-35       7
## 3720      18-30      10
## 3721      18-30      10
## 3722      18-30      10
## 3723      18-30      10
## 3724      18-30      10
## 3725      18-30      10
## 3726      18-30      10
## 3727      18-30      10
## 3728      18-30      10
## 3729      40-50       5
## 3730      40-50       5
## 3731      40-50       5
## 3732      18-30      10
## 3733      18-30      10
## 3734      18-30      10
## 3735      30-35       7
## 3736      18-30      10
## 3737      30-35       7
## 3738      18-30      10
## 3739      18-30      10
## 3740      18-30      10
## 3741      18-30      10
## 3742      18-30      10
## 3743      18-30      10
## 3744      18-30      10
## 3745      40-50       5
## 3746      18-30      10
## 3747      18-30      10
## 3748      40-50       5
## 3749      30-35       7
## 3750      18-30      10
## 3751      18-30      10
## 3752      18-30      10
## 3753      18-30      10
## 3754      30-35       7
## 3755      18-30      10
## 3756      18-30      10
## 3757      18-30      10
## 3758      40-50       5
## 3759      18-30      10
## 3760      18-30      10
## 3761      18-30      10
## 3762      18-30      10
## 3763      18-30      10
## 3764      18-30      10
## 3765      30-35       7
## 3766      18-30      10
## 3767      18-30      10
## 3768      30-35       7
## 3769      30-35       7
## 3770      30-35       7
## 3771      18-30      10
## 3772      30-35       7
## 3773      18-30      10
## 3774      18-30      10
## 3775      18-30      10
## 3776      30-35       7
## 3777      18-30      10
## 3778      18-30      10
## 3779      18-30      10
## 3780      18-30      10
## 3781      18-30      10
## 3782      18-30      10
## 3783      30-35       7
## 3784      18-30      10
## 3785      30-35       7
## 3786      18-30      10
## 3787      18-30      10
## 3788      30-35       7
## 3789      35-40       6
## 3790      18-30      10
## 3791      18-30      10
## 3792      40-50       5
## 3793      40-50       5
## 3794      35-40       6
## 3795      18-30      10
## 3796      18-30      10
## 3797      18-30      10
## 3798      30-35       7
## 3799      18-30      10
## 3800      35-40       6
## 3801      18-30      10
## 3802      30-35       7
## 3803      18-30      10
## 3804      30-35       7
## 3805      18-30      10
## 3806        65+       4
## 3807      18-30      10
## 3808      18-30      10
## 3809      18-30      10
## 3810      18-30      10
## 3811      18-30      10
## 3812      18-30      10
## 3813      18-30      10
## 3814      35-40       6
## 3815      18-30      10
## 3816      18-30      10
## 3817      18-30      10
## 3818      18-30      10
## 3819      18-30      10
## 3820      35-40       6
## 3821      40-50       5
## 3822      30-35       7
## 3823      35-40       6
## 3824      18-30      10
## 3825      18-30      10
## 3826      18-30      10
## 3827      18-30      10
## 3828      18-30      10
## 3829      18-30      10
## 3830      18-30      10
## 3831      18-30      10
## 3832      30-35       7
## 3833      18-30      10
## 3834      30-35       7
## 3835      40-50       5
## 3836      18-30      10
## 3837      18-30      10
## 3838      18-30      10
## 3839      40-50       5
## 3840      18-30      10
## 3841        65+       4
## 3842      30-35       7
## 3843      18-30      10
## 3844      18-30      10
## 3845      18-30      10
## 3846      18-30      10
## 3847      18-30      10
## 3848      18-30      10
## 3849      50-60       5
## 3850      30-35       7
## 3851      18-30      10
## 3852      18-30      10
## 3853      35-40       6
## 3854      18-30      10
## 3855      30-35       7
## 3856      30-35       7
## 3857      18-30      10
## 3858      18-30      10
## 3859      40-50       5
## 3860      30-35       7
## 3861      18-30      10
## 3862      30-35       7
## 3863      30-35       7
## 3864      18-30      10
## 3865      18-30      10
## 3866      30-35       7
## 3867      18-30      10
## 3868      18-30      10
## 3869      35-40       6
## 3870      30-35       7
## 3871      30-35       7
## 3872      30-35       7
## 3873      30-35       7
## 3874      50-60       5
## 3875      18-30      10
## 3876      18-30      10
## 3877      30-35       7
## 3878      18-30      10
## 3879      18-30      10
## 3880      18-30      10
## 3881      30-35       7
## 3882      35-40       6
## 3883      30-35       7
## 3884      18-30      10
## 3885      35-40       6
## 3886      40-50       5
## 3887      40-50       5
## 3888      18-30      10
## 3889      30-35       7
## 3890      18-30      10
## 3891      18-30      10
## 3892      35-40       6
## 3893      18-30      10
## 3894      35-40       6
## 3895      18-30      10
## 3896      18-30      10
## 3897      35-40       6
## 3898      18-30      10
## 3899      18-30      10
## 3900      18-30      10
## 3901      18-30      10
## 3902      30-35       7
## 3903      18-30      10
## 3904      18-30      10
## 3905      18-30      10
## 3906      30-35       7
## 3907      18-30      10
## 3908      18-30      10
## 3909      18-30      10
## 3910      18-30      10
## 3911      18-30      10
## 3912      18-30      10
## 3913      18-30      10
## 3914      18-30      10
## 3915      40-50       5
## 3916      35-40       6
## 3917      30-35       7
## 3918      18-30      10
## 3919      40-50       5
## 3920      40-50       5
## 3921      40-50       5
## 3922      30-35       7
## 3923      40-50       5
## 3924      30-35       7
## 3925      18-30      10
## 3926      40-50       5
## 3927      18-30      10
## 3928      30-35       7
## 3929      40-50       5
## 3930      30-35       7
## 3931      18-30      10
## 3932        65+       4
## 3933      18-30      10
## 3934      40-50       5
## 3935      30-35       7
## 3936      18-30      10
## 3937      40-50       5
## 3938      50-60       5
## 3939      50-60       5
## 3940      40-50       5
## 3941      30-35       7
## 3942      35-40       6
## 3943      35-40       6
## 3944      18-30      10
## 3945      18-30      10
## 3946      18-30      10
## 3947      18-30      10
## 3948      35-40       6
## 3949      18-30      10
## 3950      18-30      10
## 3951      18-30      10
## 3952      18-30      10
## 3953      35-40       6
## 3954      18-30      10
## 3955      30-35       7
## 3956      30-35       7
## 3957      40-50       5
## 3958      18-30      10
## 3959      35-40       6
## 3960      18-30      10
## 3961      18-30      10
## 3962      30-35       7
## 3963      18-30      10
## 3964      30-35       7
## 3965      30-35       7
## 3966      18-30      10
## 3967      18-30      10
## 3968      18-30      10
## 3969      18-30      10
## 3970      35-40       6
## 3971      35-40       6
## 3972      30-35       7
## 3973      30-35       7
## 3974      18-30      10
## 3975      18-30      10
## 3976      18-30      10
## 3977      35-40       6
## 3978      30-35       7
## 3979      18-30      10
## 3980      35-40       6
## 3981      18-30      10
## 3982      50-60       5
## 3983      30-35       7
## 3984      18-30      10
## 3985      18-30      10
## 3986      40-50       5
## 3987      30-35       7
## 3988      30-35       7
## 3989      18-30      10
## 3990      40-50       5
## 3991      18-30      10
## 3992      40-50       5
## 3993      30-35       7
## 3994      30-35       7
## 3995      18-30      10
## 3996      18-30      10
## 3997      18-30      10
## 3998      30-35       7
## 3999      30-35       7
## 4000      18-30      10
## 4001      40-50       5
## 4002        65+       4
## 4003      30-35       7
## 4004      40-50       5
## 4005      30-35       7
## 4006        65+       4
## 4007      18-30      10
## 4008      30-35       7
## 4009      18-30      10
## 4010      30-35       7
## 4011        65+       4
## 4012        65+       4
## 4013      18-30      10
## 4014      30-35       7
## 4015      35-40       6
## 4016      35-40       6
## 4017      18-30      10
## 4018      18-30      10
## 4019      18-30      10
## 4020      18-30      10
## 4021      50-60       5
## 4022      30-35       7
## 4023      18-30      10
## 4024      18-30      10
## 4025      40-50       5
## 4026      30-35       7
## 4027      18-30      10
## 4028      18-30      10
## 4029      18-30      10
## 4030      18-30      10
## 4031      30-35       7
## 4032      30-35       7
## 4033      18-30      10
## 4034      18-30      10
## 4035      18-30      10
## 4036        65+       4
## 4037      18-30      10
## 4038      40-50       5
## 4039      18-30      10
## 4040      18-30      10
## 4041      30-35       7
## 4042      40-50       5
## 4043        65+       4
## 4044      35-40       6
## 4045      40-50       5
## 4046      35-40       6
## 4047      18-30      10
## 4048      30-35       7
## 4049      18-30      10
## 4050      30-35       7
## 4051      18-30      10
## 4052      30-35       7
## 4053      18-30      10
## 4054      18-30      10
## 4055      18-30      10
## 4056      18-30      10
## 4057      18-30      10
## 4058      18-30      10
## 4059      18-30      10
## 4060      18-30      10
## 4061      18-30      10
## 4062      18-30      10
## 4063      30-35       7
## 4064      18-30      10
## 4065      30-35       7
## 4066      18-30      10
## 4067      18-30      10
## 4068      18-30      10
## 4069      18-30      10
## 4070      18-30      10
## 4071      35-40       6
## 4072      35-40       6
## 4073      18-30      10
## 4074      30-35       7
## 4075      18-30      10
## 4076      18-30      10
## 4077      18-30      10
## 4078      35-40       6
## 4079      18-30      10
## 4080      30-35       7
## 4081      18-30      10
## 4082      30-35       7
## 4083      18-30      10
## 4084      30-35       7
## 4085      35-40       6
## 4086      35-40       6
## 4087      30-35       7
## 4088      18-30      10
## 4089      18-30      10
## 4090      30-35       7
## 4091      30-35       7
## 4092      18-30      10
## 4093      18-30      10
## 4094      18-30      10
## 4095      40-50       5
## 4096      18-30      10
## 4097      30-35       7
## 4098      18-30      10
## 4099      30-35       7
## 4100      18-30      10
## 4101      30-35       7
## 4102      18-30      10
## 4103      18-30      10
## 4104      18-30      10
## 4105      30-35       7
## 4106      18-30      10
## 4107      30-35       7
## 4108      18-30      10
## 4109      30-35       7
## 4110      18-30      10
## 4111      18-30      10
## 4112      18-30      10
## 4113      18-30      10
## 4114      35-40       6
## 4115      35-40       6
## 4116      18-30      10
## 4117      18-30      10
## 4118      30-35       7
## 4119      30-35       7
## 4120      18-30      10
## 4121      18-30      10
## 4122      18-30      10
## 4123      40-50       5
## 4124      18-30      10
## 4125      18-30      10
## 4126      40-50       5
## 4127      18-30      10
## 4128      18-30      10
## 4129      18-30      10
## 4130      18-30      10
## 4131      18-30      10
## 4132      18-30      10
## 4133      18-30      10
## 4134      18-30      10
## 4135      30-35       7
## 4136      18-30      10
## 4137      18-30      10
## 4138      18-30      10
## 4139      18-30      10
## 4140        65+       4
## 4141      30-35       7
## 4142      18-30      10
## 4143      18-30      10
## 4144      18-30      10
## 4145      18-30      10
## 4146      18-30      10
## 4147      18-30      10
## 4148      18-30      10
## 4149      40-50       5
## 4150      35-40       6
## 4151      18-30      10
## 4152      18-30      10
## 4153      40-50       5
## 4154      18-30      10
## 4155      18-30      10
## 4156      35-40       6
## 4157      30-35       7
## 4158      30-35       7
## 4159      30-35       7
## 4160      50-60       5
## 4161      30-35       7
## 4162      35-40       6
## 4163      50-60       5
## 4164      35-40       6
## 4165      35-40       6
## 4166      30-35       7
## 4167      18-30      10
## 4168      18-30      10
## 4169      18-30      10
## 4170      18-30      10
## 4171      50-60       5
## 4172      35-40       6
## 4173      18-30      10
## 4174      40-50       5
## 4175      18-30      10
## 4176      35-40       6
## 4177      18-30      10
## 4178      18-30      10
## 4179      35-40       6
## 4180      18-30      10
## 4181      18-30      10
## 4182      18-30      10
## 4183      40-50       5
## 4184      30-35       7
## 4185      30-35       7
## 4186      18-30      10
## 4187      30-35       7
## 4188      50-60       5
## 4189      35-40       6
## 4190      30-35       7
## 4191      50-60       5
## 4192      30-35       7
## 4193      18-30      10
## 4194      30-35       7
## 4195      40-50       5
## 4196      18-30      10
## 4197      18-30      10
## 4198      30-35       7
## 4199      18-30      10
## 4200      18-30      10
## 4201      30-35       7
## 4202      30-35       7
## 4203      50-60       5
## 4204      40-50       5
## 4205      40-50       5
## 4206      18-30      10
## 4207      18-30      10
## 4208      30-35       7
## 4209      30-35       7
## 4210      40-50       5
## 4211      50-60       5
## 4212      18-30      10
## 4213      18-30      10
## 4214      18-30      10
## 4215      30-35       7
## 4216      18-30      10
## 4217      18-30      10
## 4218      18-30      10
## 4219      18-30      10
## 4220      35-40       6
## 4221      30-35       7
## 4222      30-35       7
## 4223      18-30      10
## 4224      18-30      10
## 4225      50-60       5
## 4226      18-30      10
## 4227      40-50       5
## 4228      30-35       7
## 4229      18-30      10
## 4230      30-35       7
## 4231      40-50       5
## 4232      35-40       6
## 4233      35-40       6
## 4234      40-50       5
## 4235      30-35       7
## 4236      40-50       5
## 4237      18-30      10
## 4238      18-30      10
## 4239      40-50       5
## 4240      18-30      10
## 4241      18-30      10
## 4242      18-30      10
## 4243      50-60       5
## 4244      50-60       5
## 4245      18-30      10
## 4246      40-50       5
## 4247      40-50       5
## 4248      30-35       7
## 4249      18-30      10
## 4250      50-60       5
## 4251      30-35       7
## 4252      40-50       5
## 4253      50-60       5
## 4254      40-50       5
## 4255      18-30      10
## 4256      18-30      10
## 4257      30-35       7
## 4258      30-35       7
## 4259      18-30      10
## 4260      50-60       5
## 4261        65+       4
## 4262      18-30      10
## 4263      18-30      10
## 4264      50-60       5
## 4265      18-30      10
## 4266      30-35       7
## 4267      35-40       6
## 4268      30-35       7
## 4269      50-60       5
## 4270      40-50       5
## 4271      40-50       5
## 4272      50-60       5
## 4273      18-30      10
## 4274      35-40       6
## 4275      18-30      10
## 4276      40-50       5
## 4277      50-60       5
## 4278      50-60       5
## 4279      30-35       7
## 4280      35-40       6
## 4281      18-30      10
## 4282      18-30      10
## 4283      50-60       5
## 4284      18-30      10
## 4285      18-30      10
## 4286      18-30      10
## 4287      50-60       5
## 4288      40-50       5
## 4289      18-30      10
## 4290      18-30      10
## 4291      18-30      10
## 4292      30-35       7
## 4293      30-35       7
## 4294      30-35       7
## 4295      18-30      10
## 4296      18-30      10
## 4297      18-30      10
## 4298      18-30      10
## 4299      18-30      10
## 4300      18-30      10
## 4301      18-30      10
## 4302      35-40       6
## 4303      18-30      10
## 4304      18-30      10
## 4305      35-40       6
## 4306      18-30      10
## 4307      35-40       6
## 4308      40-50       5
## 4309      18-30      10
## 4310      18-30      10
## 4311      18-30      10
## 4312      18-30      10
## 4313      30-35       7
## 4314      18-30      10
## 4315      18-30      10
## 4316      18-30      10
## 4317      18-30      10
## 4318      40-50       5
## 4319      30-35       7
## 4320      30-35       7
## 4321      40-50       5
## 4322      30-35       7
## 4323      30-35       7
## 4324      18-30      10
## 4325      18-30      10
## 4326      18-30      10
## 4327      18-30      10
## 4328        65+       4
## 4329      18-30      10
## 4330      18-30      10
## 4331      35-40       6
## 4332      18-30      10
## 4333      18-30      10
## 4334      18-30      10
## 4335      30-35       7
## 4336      18-30      10
## 4337      30-35       7
## 4338      30-35       7
## 4339      30-35       7
## 4340      30-35       7
## 4341      18-30      10
## 4342      18-30      10
## 4343      18-30      10
## 4344      30-35       7
## 4345      18-30      10
## 4346      18-30      10
## 4347      18-30      10
## 4348      18-30      10
## 4349      18-30      10
## 4350      18-30      10
## 4351      50-60       5
## 4352      18-30      10
## 4353      40-50       5
## 4354      18-30      10
## 4355      30-35       7
## 4356      30-35       7
## 4357      40-50       5
## 4358      30-35       7
## 4359      18-30      10
## 4360      30-35       7
## 4361      18-30      10
## 4362      18-30      10
## 4363      18-30      10
## 4364      30-35       7
## 4365      30-35       7
## 4366      18-30      10
## 4367      18-30      10
## 4368      40-50       5
## 4369      18-30      10
## 4370      18-30      10
## 4371      18-30      10
## 4372      18-30      10
## 4373      30-35       7
## 4374      18-30      10
## 4375      18-30      10
## 4376      30-35       7
## 4377      40-50       5
## 4378      18-30      10
## 4379      30-35       7
## 4380      18-30      10
## 4381      30-35       7
## 4382      18-30      10
## 4383      18-30      10
## 4384      18-30      10
## 4385      18-30      10
## 4386      18-30      10
## 4387      18-30      10
## 4388      35-40       6
## 4389      18-30      10
## 4390      18-30      10
## 4391      18-30      10
## 4392      18-30      10
## 4393      18-30      10
## 4394      30-35       7
## 4395      18-30      10
## 4396      18-30      10
## 4397      18-30      10
## 4398      18-30      10
## 4399      18-30      10
## 4400      18-30      10
## 4401      18-30      10
## 4402      18-30      10
## 4403      18-30      10
## 4404      18-30      10
## 4405      18-30      10
## 4406      40-50       5
## 4407      40-50       5
## 4408      18-30      10
## 4409      18-30      10
## 4410      18-30      10
## 4411      18-30      10
## 4412      18-30      10
## 4413      18-30      10
## 4414      18-30      10
## 4415      18-30      10
## 4416      18-30      10
## 4417      18-30      10
## 4418      18-30      10
## 4419      18-30      10
## 4420      30-35       7
## 4421      18-30      10
## 4422      18-30      10
## 4423      18-30      10
## 4424      18-30      10
## 4425      18-30      10
## 4426      18-30      10
## 4427      18-30      10
## 4428      18-30      10
## 4429      40-50       5
## 4430      40-50       5
## 4431      30-35       7
## 4432      18-30      10
## 4433      18-30      10
## 4434      18-30      10
## 4435      18-30      10
## 4436      18-30      10
## 4437      40-50       5
## 4438      35-40       6
## 4439      18-30      10
## 4440      35-40       6
## 4441      35-40       6
## 4442      30-35       7
## 4443      18-30      10
## 4444      18-30      10
## 4445      18-30      10
## 4446      30-35       7
## 4447      18-30      10
## 4448      18-30      10
## 4449      30-35       7
## 4450      18-30      10
## 4451      30-35       7
## 4452      18-30      10
## 4453      40-50       5
## 4454      18-30      10
## 4455      40-50       5
## 4456      18-30      10
## 4457      35-40       6
## 4458      30-35       7
## 4459      35-40       6
## 4460      18-30      10
## 4461      18-30      10
## 4462      18-30      10
## 4463      18-30      10
## 4464      18-30      10
## 4465      30-35       7
## 4466      35-40       6
## 4467      18-30      10
## 4468      30-35       7
## 4469      18-30      10
## 4470      18-30      10
## 4471      18-30      10
## 4472      40-50       5
## 4473      18-30      10
## 4474      18-30      10
## 4475      18-30      10
## 4476      40-50       5
## 4477      18-30      10
## 4478      18-30      10
## 4479      30-35       7
## 4480      18-30      10
## 4481      18-30      10
## 4482      18-30      10
## 4483      18-30      10
## 4484      18-30      10
## 4485      35-40       6
## 4486      18-30      10
## 4487      18-30      10
## 4488      18-30      10
## 4489      50-60       5
## 4490      40-50       5
## 4491      30-35       7
## 4492      40-50       5
## 4493      18-30      10
## 4494      40-50       5
## 4495      18-30      10
## 4496      40-50       5
## 4497      30-35       7
## 4498      35-40       6
## 4499      30-35       7
## 4500      18-30      10
## 4501      30-35       7
## 4502      18-30      10
## 4503      50-60       5
## 4504      35-40       6
## 4505      18-30      10
## 4506      18-30      10
## 4507      35-40       6
## 4508      18-30      10
## 4509      30-35       7
## 4510      18-30      10
## 4511      18-30      10
## 4512      18-30      10
## 4513      18-30      10
## 4514      18-30      10
## 4515      18-30      10
## 4516      18-30      10
## 4517      35-40       6
## 4518      40-50       5
## 4519      40-50       5
## 4520      18-30      10
## 4521      30-35       7
## 4522      18-30      10
## 4523      18-30      10
## 4524      40-50       5
## 4525      18-30      10
## 4526      30-35       7
## 4527      30-35       7
## 4528      30-35       7
## 4529      30-35       7
## 4530      35-40       6
## 4531      18-30      10
## 4532      18-30      10
## 4533      30-35       7
## 4534      30-35       7
## 4535      35-40       6
## 4536      18-30      10
## 4537      35-40       6
## 4538      18-30      10
## 4539      40-50       5
## 4540      18-30      10
## 4541      35-40       6
## 4542      18-30      10
## 4543      30-35       7
## 4544      50-60       5
## 4545      18-30      10
## 4546      18-30      10
## 4547      18-30      10
## 4548      30-35       7
## 4549      35-40       6
## 4550      40-50       5
## 4551      18-30      10
## 4552      18-30      10
## 4553      40-50       5
## 4554      18-30      10
## 4555      30-35       7
## 4556      18-30      10
## 4557      35-40       6
## 4558      40-50       5
## 4559      40-50       5
## 4560      30-35       7
## 4561      18-30      10
## 4562      18-30      10
## 4563      18-30      10
## 4564      18-30      10
## 4565      18-30      10
## 4566      18-30      10
## 4567      18-30      10
## 4568      18-30      10
## 4569      18-30      10
## 4570      18-30      10
## 4571      30-35       7
## 4572      18-30      10
## 4573      18-30      10
## 4574      18-30      10
## 4575      40-50       5
## 4576      35-40       6
## 4577      30-35       7
## 4578      50-60       5
## 4579      30-35       7
## 4580      30-35       7
## 4581      18-30      10
## 4582      35-40       6
## 4583      40-50       5
## 4584      18-30      10
## 4585      18-30      10
## 4586      18-30      10
## 4587      30-35       7
## 4588      30-35       7
## 4589      18-30      10
## 4590      18-30      10
## 4591      35-40       6
## 4592      40-50       5
## 4593        65+       4
## 4594      30-35       7
## 4595      30-35       7
## 4596      30-35       7
## 4597      18-30      10
## 4598      35-40       6
## 4599      18-30      10
## 4600      35-40       6
## 4601      35-40       6
## 4602      35-40       6
## 4603      18-30      10
## 4604      18-30      10
## 4605      18-30      10
## 4606      18-30      10
## 4607      50-60       5
## 4608      18-30      10
## 4609      18-30      10
## 4610      18-30      10
## 4611      18-30      10
## 4612      30-35       7
## 4613      18-30      10
## 4614      18-30      10
## 4615      18-30      10
## 4616      30-35       7
## 4617      30-35       7
## 4618      50-60       5
## 4619      30-35       7
## 4620      35-40       6
## 4621      18-30      10
## 4622      18-30      10
## 4623      35-40       6
## 4624      35-40       6
## 4625      18-30      10
## 4626      18-30      10
## 4627      50-60       5
## 4628      18-30      10
## 4629      50-60       5
## 4630      30-35       7
## 4631      18-30      10
## 4632      35-40       6
## 4633      18-30      10
## 4634      18-30      10
## 4635      18-30      10
## 4636      30-35       7
## 4637        65+       4
## 4638      18-30      10
## 4639      18-30      10
## 4640      18-30      10
## 4641      18-30      10
## 4642      18-30      10
## 4643      18-30      10
## 4644      18-30      10
## 4645      18-30      10
## 4646      35-40       6
## 4647      35-40       6
## 4648      18-30      10
## 4649      35-40       6
## 4650      30-35       7
## 4651      18-30      10
## 4652      40-50       5
## 4653      35-40       6
## 4654      18-30      10
## 4655      18-30      10
## 4656      30-35       7
## 4657      30-35       7
## 4658      18-30      10
## 4659      30-35       7
## 4660      35-40       6
## 4661      18-30      10
## 4662      18-30      10
## 4663      30-35       7
## 4664      18-30      10
## 4665      18-30      10
## 4666      50-60       5
## 4667      18-30      10
## 4668      18-30      10
## 4669      18-30      10
## 4670      30-35       7
## 4671      18-30      10
## 4672      18-30      10
## 4673      18-30      10
## 4674      18-30      10
## 4675      18-30      10
## 4676      18-30      10
## 4677      18-30      10
## 4678      18-30      10
## 4679      18-30      10
## 4680      40-50       5
## 4681      30-35       7
## 4682      18-30      10
## 4683        65+       4
## 4684      18-30      10
## 4685      18-30      10
## 4686      30-35       7
## 4687      18-30      10
## 4688      18-30      10
## 4689      35-40       6
## 4690      40-50       5
## 4691      35-40       6
## 4692      18-30      10
## 4693      18-30      10
## 4694      18-30      10
## 4695      18-30      10
## 4696      18-30      10
## 4697      18-30      10
## 4698      40-50       5
## 4699      40-50       5
## 4700      40-50       5
## 4701      30-35       7
## 4702      40-50       5
## 4703      40-50       5
## 4704      18-30      10
## 4705      18-30      10
## 4706      50-60       5
## 4707      50-60       5
## 4708      18-30      10
## 4709      18-30      10
## 4710      18-30      10
## 4711      18-30      10
## 4712      18-30      10
## 4713      30-35       7
## 4714      40-50       5
## 4715      18-30      10
## 4716        65+       4
## 4717      35-40       6
## 4718      30-35       7
## 4719      40-50       5
## 4720      18-30      10
## 4721      18-30      10
## 4722      30-35       7
## 4723      50-60       5
## 4724      18-30      10
## 4725      40-50       5
## 4726      18-30      10
## 4727      18-30      10
## 4728      18-30      10
## 4729      18-30      10
## 4730      18-30      10
## 4731      40-50       5
## 4732      30-35       7
## 4733      35-40       6
## 4734      18-30      10
## 4735      18-30      10
## 4736      35-40       6
## 4737      18-30      10
## 4738      30-35       7
## 4739      18-30      10
## 4740      50-60       5
## 4741      18-30      10
## 4742      40-50       5
## 4743      18-30      10
## 4744      50-60       5
## 4745      18-30      10
## 4746      18-30      10
## 4747      18-30      10
## 4748      18-30      10
## 4749      18-30      10
## 4750      18-30      10
## 4751      18-30      10
## 4752      18-30      10
## 4753      30-35       7
## 4754      18-30      10
## 4755      18-30      10
## 4756      18-30      10
## 4757      18-30      10
## 4758      30-35       7
## 4759      30-35       7
## 4760      35-40       6
## 4761      18-30      10
## 4762      18-30      10
## 4763      18-30      10
## 4764      18-30      10
## 4765      18-30      10
## 4766      18-30      10
## 4767      18-30      10
## 4768      18-30      10
## 4769      18-30      10
## 4770      35-40       6
## 4771      18-30      10
## 4772      18-30      10
## 4773      40-50       5
## 4774      18-30      10
## 4775      18-30      10
## 4776      18-30      10
## 4777      18-30      10
## 4778      50-60       5
## 4779      35-40       6
## 4780      18-30      10
## 4781      18-30      10
## 4782      30-35       7
## 4783      18-30      10
## 4784      18-30      10
## 4785      18-30      10
## 4786      30-35       7
## 4787      18-30      10
## 4788      40-50       5
## 4789      18-30      10
## 4790      40-50       5
## 4791      30-35       7
## 4792      18-30      10
## 4793      40-50       5
## 4794      18-30      10
## 4795      35-40       6
## 4796      35-40       6
## 4797      30-35       7
## 4798      35-40       6
## 4799      40-50       5
## 4800      18-30      10
## 4801      18-30      10
## 4802      18-30      10
## 4803      40-50       5
## 4804      35-40       6
## 4805      40-50       5
## 4806      18-30      10
## 4807      18-30      10
## 4808      18-30      10
## 4809      35-40       6
## 4810      35-40       6
## 4811      18-30      10
## 4812      18-30      10
## 4813      50-60       5
## 4814      18-30      10
## 4815      30-35       7
## 4816      30-35       7
## 4817      40-50       5
## 4818      30-35       7
## 4819      18-30      10
## 4820      18-30      10
## 4821      18-30      10
## 4822      30-35       7
## 4823      18-30      10
## 4824      18-30      10
## 4825      18-30      10
## 4826      18-30      10
## 4827      18-30      10
## 4828      18-30      10
## 4829      18-30      10
## 4830      30-35       7
## 4831      30-35       7
## 4832      30-35       7
## 4833      18-30      10
## 4834      18-30      10
## 4835      18-30      10
## 4836      30-35       7
## 4837      50-60       5
## 4838      50-60       5
## 4839      18-30      10
## 4840      30-35       7
## 4841      18-30      10
## 4842      18-30      10
## 4843      18-30      10
## 4844      18-30      10
## 4845      35-40       6
## 4846      30-35       7
## 4847      18-30      10
## 4848      30-35       7
## 4849      30-35       7
## 4850      18-30      10
## 4851      18-30      10
## 4852      18-30      10
## 4853      18-30      10
## 4854      18-30      10
## 4855      18-30      10
## 4856      30-35       7
## 4857      30-35       7
## 4858      18-30      10
## 4859      18-30      10
## 4860      18-30      10
## 4861      18-30      10
## 4862      18-30      10
## 4863      18-30      10
## 4864      18-30      10
## 4865      40-50       5
## 4866      18-30      10
## 4867      18-30      10
## 4868      35-40       6
## 4869      18-30      10
## 4870      18-30      10
## 4871      18-30      10
## 4872      18-30      10
## 4873      18-30      10
## 4874      18-30      10
## 4875      18-30      10
## 4876      18-30      10
## 4877      18-30      10
## 4878      18-30      10
## 4879      18-30      10
## 4880      40-50       5
## 4881        65+       4
## 4882      30-35       7
## 4883      40-50       5
## 4884      18-30      10
## 4885        65+       4
## 4886      18-30      10
## 4887      18-30      10
## 4888      18-30      10
## 4889      18-30      10
## 4890      35-40       6
## 4891      18-30      10
## 4892      18-30      10
## 4893      40-50       5
## 4894      18-30      10
## 4895      50-60       5
## 4896      18-30      10
## 4897      18-30      10
## 4898      18-30      10
## 4899      18-30      10
## 4900      30-35       7
## 4901      18-30      10
## 4902      30-35       7
## 4903        65+       4
## 4904      18-30      10
## 4905      18-30      10
## 4906      18-30      10
## 4907      35-40       6
## 4908      18-30      10
## 4909      18-30      10
## 4910      18-30      10
## 4911      18-30      10
## 4912      18-30      10
## 4913      18-30      10
## 4914      18-30      10
## 4915      30-35       7
## 4916      30-35       7
## 4917      40-50       5
## 4918      18-30      10
## 4919      30-35       7
## 4920      18-30      10
## 4921      18-30      10
## 4922      18-30      10
## 4923      50-60       5
## 4924      40-50       5
## 4925      18-30      10
## 4926      18-30      10
## 4927      18-30      10
## 4928      18-30      10
## 4929      18-30      10
## 4930      18-30      10
## 4931      18-30      10
## 4932      30-35       7
## 4933      30-35       7
## 4934      40-50       5
## 4935      18-30      10
## 4936      18-30      10
## 4937      18-30      10
## 4938      18-30      10
## 4939      18-30      10
## 4940      40-50       5
## 4941      18-30      10
## 4942      18-30      10
## 4943      40-50       5
## 4944      30-35       7
## 4945      18-30      10
## 4946      18-30      10
## 4947      18-30      10
## 4948      30-35       7
## 4949      18-30      10
## 4950      18-30      10
## 4951      18-30      10
## 4952      35-40       6
## 4953      18-30      10
## 4954      35-40       6
## 4955      30-35       7
## 4956      18-30      10
## 4957      18-30      10
## 4958      18-30      10
## 4959      30-35       7
## 4960      18-30      10
## 4961      30-35       7
## 4962      30-35       7
## 4963      18-30      10
## 4964      30-35       7
## 4965      18-30      10
## 4966      18-30      10
## 4967      30-35       7
## 4968      18-30      10
## 4969      18-30      10
## 4970      18-30      10
## 4971      18-30      10
## 4972      18-30      10
## 4973      30-35       7
## 4974      18-30      10
## 4975      18-30      10
## 4976      18-30      10
## 4977      30-35       7
## 4978      18-30      10
## 4979      18-30      10
## 4980      18-30      10
## 4981      18-30      10
## 4982      18-30      10
## 4983      18-30      10
## 4984      18-30      10
## 4985      50-60       5
## 4986      35-40       6
## 4987      18-30      10
## 4988      18-30      10
## 4989      18-30      10
## 4990      18-30      10
## 4991      18-30      10
## 4992      18-30      10
## 4993      40-50       5
## 4994      18-30      10
## 4995      18-30      10
## 4996      30-35       7
## 4997      18-30      10
## 4998      18-30      10
## 4999      18-30      10
## 5000      18-30      10
## 5001      40-50       5
## 5002      50-60       5
## 5003      40-50       5
## 5004      30-35       7
## 5005      18-30      10
## 5006      40-50       5
## 5007      18-30      10
## 5008      30-35       7
## 5009      18-30      10
## 5010      18-30      10
## 5011      30-35       7
## 5012      35-40       6
## 5013      18-30      10
## 5014      18-30      10
## 5015      18-30      10
## 5016      18-30      10
## 5017      18-30      10
## 5018      18-30      10
## 5019      18-30      10
## 5020      35-40       6
## 5021      18-30      10
## 5022      18-30      10
## 5023      40-50       5
## 5024      18-30      10
## 5025      18-30      10
## 5026      30-35       7
## 5027      18-30      10
## 5028      30-35       7
## 5029      18-30      10
## 5030      18-30      10
## 5031      30-35       7
## 5032      35-40       6
## 5033      18-30      10
## 5034      18-30      10
## 5035      18-30      10
## 5036      18-30      10
## 5037      18-30      10
## 5038      18-30      10
## 5039      30-35       7
## 5040      30-35       7
## 5041      18-30      10
## 5042      18-30      10
## 5043      18-30      10
## 5044      18-30      10
## 5045      40-50       5
## 5046      18-30      10
## 5047      30-35       7
## 5048      18-30      10
## 5049      18-30      10
## 5050      18-30      10
## 5051      18-30      10
## 5052      18-30      10
## 5053      30-35       7
## 5054      30-35       7
## 5055      35-40       6
## 5056      18-30      10
## 5057      35-40       6
## 5058      18-30      10
## 5059      18-30      10
## 5060      35-40       6
## 5061      18-30      10
## 5062      18-30      10
## 5063      35-40       6
## 5064      18-30      10
## 5065      30-35       7
## 5066      30-35       7
## 5067      30-35       7
## 5068      18-30      10
## 5069      18-30      10
## 5070      18-30      10
## 5071      18-30      10
## 5072      18-30      10
## 5073      18-30      10
## 5074      18-30      10
## 5075      18-30      10
## 5076      18-30      10
## 5077      18-30      10
## 5078      40-50       5
## 5079      18-30      10
## 5080      18-30      10
## 5081      18-30      10
## 5082      18-30      10
## 5083      18-30      10
## 5084      18-30      10
## 5085      40-50       5
## 5086      30-35       7
## 5087      18-30      10
## 5088      18-30      10
## 5089      40-50       5
## 5090      18-30      10
## 5091      30-35       7
## 5092      40-50       5
## 5093      30-35       7
## 5094      18-30      10
## 5095      30-35       7
## 5096      50-60       5
## 5097      50-60       5
## 5098      35-40       6
## 5099      18-30      10
## 5100      18-30      10
## 5101      18-30      10
## 5102      18-30      10
## 5103      30-35       7
## 5104      18-30      10
## 5105      35-40       6
## 5106      18-30      10
## 5107      18-30      10
## 5108      18-30      10
## 5109      18-30      10
## 5110      18-30      10
## 5111      18-30      10
## 5112      18-30      10
## 5113      18-30      10
## 5114      18-30      10
## 5115      40-50       5
## 5116      18-30      10
## 5117      18-30      10
## 5118      40-50       5
## 5119      30-35       7
## 5120      40-50       5
## 5121      40-50       5
## 5122      30-35       7
## 5123      18-30      10
## 5124      18-30      10
## 5125      50-60       5
## 5126      18-30      10
## 5127      18-30      10
## 5128      50-60       5
## 5129      18-30      10
## 5130      18-30      10
## 5131      18-30      10
## 5132      18-30      10
## 5133      50-60       5
## 5134      50-60       5
## 5135      18-30      10
## 5136      18-30      10
## 5137      18-30      10
## 5138      50-60       5
## 5139      18-30      10
## 5140      18-30      10
## 5141      18-30      10
## 5142      18-30      10
## 5143      18-30      10
## 5144      40-50       5
## 5145      18-30      10
## 5146      18-30      10
## 5147      35-40       6
## 5148      18-30      10
## 5149      50-60       5
## 5150      50-60       5
## 5151      18-30      10
## 5152      18-30      10
## 5153      18-30      10
## 5154      18-30      10
## 5155      18-30      10
## 5156      30-35       7
## 5157      18-30      10
## 5158      40-50       5
## 5159      18-30      10
## 5160      30-35       7
## 5161      18-30      10
## 5162      18-30      10
## 5163      18-30      10
## 5164      18-30      10
## 5165      18-30      10
## 5166      18-30      10
## 5167      18-30      10
## 5168      18-30      10
## 5169      18-30      10
## 5170      18-30      10
## 5171      18-30      10
## 5172      30-35       7
## 5173      18-30      10
## 5174      30-35       7
## 5175      18-30      10
## 5176      18-30      10
## 5177      30-35       7
## 5178      30-35       7
## 5179      35-40       6
## 5180      50-60       5
## 5181      18-30      10
## 5182      30-35       7
## 5183      50-60       5
## 5184      18-30      10
## 5185      30-35       7
## 5186      30-35       7
## 5187      35-40       6
## 5188      18-30      10
## 5189      35-40       6
## 5190      30-35       7
## 5191      40-50       5
## 5192      18-30      10
## 5193      18-30      10
## 5194      40-50       5
## 5195      35-40       6
## 5196      30-35       7
## 5197      18-30      10
## 5198      30-35       7
## 5199      30-35       7
## 5200      18-30      10
## 5201      30-35       7
## 5202      30-35       7
## 5203        65+       4
## 5204      18-30      10
## 5205      18-30      10
## 5206      18-30      10
## 5207      40-50       5
## 5208      18-30      10
## 5209      18-30      10
## 5210      30-35       7
## 5211      30-35       7
## 5212      18-30      10
## 5213      18-30      10
## 5214      18-30      10
## 5215      40-50       5
## 5216      18-30      10
## 5217      35-40       6
## 5218      30-35       7
## 5219      30-35       7
## 5220      18-30      10
## 5221      40-50       5
## 5222      18-30      10
## 5223      18-30      10
## 5224      35-40       6
## 5225      35-40       6
## 5226      18-30      10
## 5227      18-30      10
## 5228      40-50       5
## 5229      18-30      10
## 5230      18-30      10
## 5231      40-50       5
## 5232      40-50       5
## 5233      40-50       5
## 5234      18-30      10
## 5235      40-50       5
## 5236      18-30      10
## 5237      50-60       5
## 5238      30-35       7
## 5239      35-40       6
## 5240      40-50       5
## 5241      35-40       6
## 5242      18-30      10
## 5243      18-30      10
## 5244      18-30      10
## 5245      18-30      10
## 5246      18-30      10
## 5247      30-35       7
## 5248      18-30      10
## 5249      18-30      10
## 5250      18-30      10
## 5251      18-30      10
## 5252      18-30      10
## 5253      30-35       7
## 5254      18-30      10
## 5255      18-30      10
## 5256      18-30      10
## 5257      40-50       5
## 5258      18-30      10
## 5259        65+       4
## 5260        65+       4
## 5261      18-30      10
## 5262      40-50       5
## 5263      30-35       7
## 5264      30-35       7
## 5265      30-35       7
## 5266      30-35       7
## 5267      30-35       7
## 5268      30-35       7
## 5269      18-30      10
## 5270      18-30      10
## 5271      35-40       6
## 5272      18-30      10
## 5273      30-35       7
## 5274      40-50       5
## 5275      18-30      10
## 5276      18-30      10
## 5277      18-30      10
## 5278      30-35       7
## 5279      50-60       5
## 5280      18-30      10
## 5281      18-30      10
## 5282      18-30      10
## 5283      30-35       7
## 5284      40-50       5
## 5285      18-30      10
## 5286      30-35       7
## 5287      18-30      10
## 5288      18-30      10
## 5289      18-30      10
## 5290      18-30      10
## 5291      30-35       7
## 5292      35-40       6
## 5293      30-35       7
## 5294      18-30      10
## 5295      18-30      10
## 5296      50-60       5
## 5297      18-30      10
## 5298      30-35       7
## 5299      18-30      10
## 5300        65+       4
## 5301      50-60       5
## 5302      18-30      10
## 5303      50-60       5
## 5304      40-50       5
## 5305      30-35       7
## 5306      30-35       7
## 5307      30-35       7
## 5308        65+       4
## 5309      18-30      10
## 5310      18-30      10
## 5311      40-50       5
## 5312        65+       4
## 5313      35-40       6
## 5314      18-30      10
## 5315      18-30      10
## 5316      35-40       6
## 5317      18-30      10
## 5318      35-40       6
## 5319      30-35       7
## 5320      18-30      10
## 5321      40-50       5
## 5322      18-30      10
## 5323      18-30      10
## 5324        65+       4
## 5325      18-30      10
## 5326      30-35       7
## 5327      18-30      10
## 5328      18-30      10
## 5329      18-30      10
## 5330      18-30      10
## 5331      35-40       6
## 5332      18-30      10
## 5333      18-30      10
## 5334      30-35       7
## 5335      40-50       5
## 5336      18-30      10
## 5337      40-50       5
## 5338      35-40       6
## 5339      18-30      10
## 5340      18-30      10
## 5341      18-30      10
## 5342      18-30      10
## 5343      18-30      10
## 5344      18-30      10
## 5345      30-35       7
## 5346      18-30      10
## 5347      18-30      10
## 5348      18-30      10
## 5349      18-30      10
## 5350        65+       4
## 5351      18-30      10
## 5352      18-30      10
## 5353      18-30      10
## 5354      35-40       6
## 5355      35-40       6
## 5356      30-35       7
## 5357      40-50       5
## 5358      50-60       5
## 5359      40-50       5
## 5360      18-30      10
## 5361      18-30      10
## 5362      18-30      10
## 5363      18-30      10
## 5364      30-35       7
## 5365      30-35       7
## 5366      40-50       5
## 5367      18-30      10
## 5368      18-30      10
## 5369      18-30      10
## 5370      35-40       6
## 5371      18-30      10
## 5372      18-30      10
## 5373      30-35       7
## 5374      18-30      10
## 5375      30-35       7
## 5376      18-30      10
## 5377      18-30      10
## 5378      18-30      10
## 5379      40-50       5
## 5380      18-30      10
## 5381      35-40       6
## 5382      18-30      10
## 5383      18-30      10
## 5384      50-60       5
## 5385      18-30      10
## 5386      30-35       7
## 5387      50-60       5
## 5388      35-40       6
## 5389      18-30      10
## 5390      18-30      10
## 5391        65+       4
## 5392      40-50       5
## 5393      18-30      10
## 5394      50-60       5
## 5395      50-60       5
## 5396      30-35       7
## 5397      50-60       5
## 5398      50-60       5
## 5399      35-40       6
## 5400        65+       4
## 5401      18-30      10
## 5402        65+       4
## 5403      30-35       7
## 5404      18-30      10
## 5405      18-30      10
## 5406      18-30      10
## 5407      40-50       5
## 5408      35-40       6
## 5409      35-40       6
## 5410      35-40       6
## 5411      18-30      10
## 5412      40-50       5
## 5413      18-30      10
## 5414      18-30      10
## 5415      18-30      10
## 5416      50-60       5
## 5417      18-30      10
## 5418      18-30      10
## 5419      50-60       5
## 5420      18-30      10
## 5421      30-35       7
## 5422      18-30      10
## 5423      18-30      10
## 5424      30-35       7
## 5425      18-30      10
## 5426      18-30      10
## 5427      40-50       5
## 5428      40-50       5
## 5429      35-40       6
## 5430      18-30      10
## 5431      35-40       6
## 5432      50-60       5
## 5433      40-50       5
## 5434      30-35       7
## 5435      30-35       7
## 5436      40-50       5
## 5437      18-30      10
## 5438      40-50       5
## 5439      35-40       6
## 5440      18-30      10
## 5441      18-30      10
## 5442      18-30      10
## 5443      40-50       5
## 5444      18-30      10
## 5445      18-30      10
## 5446      50-60       5
## 5447      18-30      10
## 5448      50-60       5
## 5449      30-35       7
## 5450      18-30      10
## 5451      18-30      10
## 5452      18-30      10
## 5453      18-30      10
## 5454      18-30      10
## 5455      18-30      10
## 5456      50-60       5
## 5457      50-60       5
## 5458      18-30      10
## 5459      30-35       7
## 5460      18-30      10
## 5461      18-30      10
## 5462      18-30      10
## 5463      30-35       7
## 5464      50-60       5
## 5465      18-30      10
## 5466      18-30      10
## 5467      40-50       5
## 5468      35-40       6
## 5469      18-30      10
## 5470      35-40       6
## 5471      18-30      10
## 5472      18-30      10
## 5473      18-30      10
## 5474      40-50       5
## 5475      18-30      10
## 5476      18-30      10
## 5477      30-35       7
## 5478      18-30      10
## 5479      18-30      10
## 5480      18-30      10
## 5481      18-30      10
## 5482      35-40       6
## 5483      18-30      10
## 5484      18-30      10
## 5485      18-30      10
## 5486      30-35       7
## 5487      18-30      10
## 5488      18-30      10
## 5489      18-30      10
## 5490      40-50       5
## 5491      30-35       7
## 5492      18-30      10
## 5493      18-30      10
## 5494      18-30      10
## 5495      18-30      10
## 5496      18-30      10
## 5497      18-30      10
## 5498      30-35       7
## 5499      35-40       6
## 5500      40-50       5
## 5501      18-30      10
## 5502      18-30      10
## 5503      18-30      10
## 5504      18-30      10
## 5505      18-30      10
## 5506      18-30      10
## 5507      18-30      10
## 5508      30-35       7
## 5509      18-30      10
## 5510      18-30      10
## 5511      30-35       7
## 5512      18-30      10
## 5513      18-30      10
## 5514      40-50       5
## 5515      30-35       7
## 5516      40-50       5
## 5517      18-30      10
## 5518      18-30      10
## 5519        65+       4
## 5520      35-40       6
## 5521      30-35       7
## 5522      18-30      10
## 5523      30-35       7
## 5524      18-30      10
## 5525      18-30      10
## 5526      18-30      10
## 5527      40-50       5
## 5528      18-30      10
## 5529      18-30      10
## 5530      35-40       6
## 5531      18-30      10
## 5532      18-30      10
## 5533      18-30      10
## 5534      18-30      10
## 5535      35-40       6
## 5536      40-50       5
## 5537      40-50       5
## 5538      30-35       7
## 5539      18-30      10
## 5540      30-35       7
## 5541      18-30      10
## 5542      18-30      10
## 5543      35-40       6
## 5544      18-30      10
## 5545      30-35       7
## 5546      40-50       5
## 5547      18-30      10
## 5548      18-30      10
## 5549      18-30      10
## 5550      18-30      10
## 5551      30-35       7
## 5552      18-30      10
## 5553      35-40       6
## 5554      30-35       7
## 5555      35-40       6
## 5556      18-30      10
## 5557      18-30      10
## 5558      30-35       7
## 5559      18-30      10
## 5560      18-30      10
## 5561      18-30      10
## 5562      30-35       7
## 5563      30-35       7
## 5564      18-30      10
## 5565        65+       4
## 5566      40-50       5
## 5567      35-40       6
## 5568      30-35       7
## 5569      40-50       5
## 5570      40-50       5
## 5571      30-35       7
## 5572      18-30      10
## 5573      40-50       5
## 5574      40-50       5
## 5575      18-30      10
## 5576      18-30      10
## 5577      35-40       6
## 5578      18-30      10
## 5579      50-60       5
## 5580      30-35       7
## 5581      18-30      10
## 5582      40-50       5
## 5583      30-35       7
## 5584      18-30      10
## 5585      35-40       6
## 5586      18-30      10
## 5587      50-60       5
## 5588      18-30      10
## 5589      18-30      10
## 5590      18-30      10
## 5591      35-40       6
## 5592        65+       4
## 5593      18-30      10
## 5594      18-30      10
## 5595      35-40       6
## 5596      18-30      10
## 5597      40-50       5
## 5598        65+       4
## 5599      30-35       7
## 5600      30-35       7
## 5601      18-30      10
## 5602      35-40       6
## 5603      18-30      10
## 5604      40-50       5
## 5605      18-30      10
## 5606      18-30      10
## 5607      30-35       7
## 5608      18-30      10
## 5609      18-30      10
## 5610      18-30      10
## 5611      18-30      10
## 5612      18-30      10
## 5613      40-50       5
## 5614      50-60       5
## 5615      50-60       5
## 5616      18-30      10
## 5617      18-30      10
## 5618      35-40       6
## 5619      18-30      10
## 5620      30-35       7
## 5621      18-30      10
## 5622      50-60       5
## 5623      18-30      10
## 5624      35-40       6
## 5625      18-30      10
## 5626      30-35       7
## 5627      18-30      10
## 5628      18-30      10
## 5629      50-60       5
## 5630      18-30      10
## 5631      50-60       5
## 5632      40-50       5
## 5633      50-60       5
## 5634      18-30      10
## 5635      18-30      10
## 5636      30-35       7
## 5637      35-40       6
## 5638      18-30      10
## 5639      30-35       7
## 5640      30-35       7
## 5641      18-30      10
## 5642      18-30      10
## 5643      18-30      10
## 5644      30-35       7
## 5645      40-50       5
## 5646      30-35       7
## 5647      18-30      10
## 5648      18-30      10
## 5649      35-40       6
## 5650      40-50       5
## 5651      18-30      10
## 5652      18-30      10
## 5653      18-30      10
## 5654      30-35       7
## 5655      40-50       5
## 5656        65+       4
## 5657      18-30      10
## 5658      18-30      10
## 5659      18-30      10
## 5660      40-50       5
## 5661      18-30      10
## 5662      18-30      10
## 5663      30-35       7
## 5664      30-35       7
## 5665      18-30      10
## 5666      40-50       5
## 5667      50-60       5
## 5668      30-35       7
## 5669      18-30      10
## 5670      18-30      10
## 5671      40-50       5
## 5672      18-30      10
## 5673      18-30      10
## 5674      18-30      10
## 5675      40-50       5
## 5676      18-30      10
## 5677      30-35       7
## 5678      18-30      10
## 5679      35-40       6
## 5680      18-30      10
## 5681      18-30      10
## 5682      18-30      10
## 5683      35-40       6
## 5684      40-50       5
## 5685      30-35       7
## 5686      18-30      10
## 5687      30-35       7
## 5688      30-35       7
## 5689      18-30      10
## 5690      30-35       7
## 5691      18-30      10
## 5692      30-35       7
## 5693      18-30      10
## 5694      18-30      10
## 5695      18-30      10
## 5696      18-30      10
## 5697      18-30      10
## 5698      18-30      10
## 5699      40-50       5
## 5700      18-30      10
## 5701      18-30      10
## 5702      50-60       5
## 5703      50-60       5
## 5704      18-30      10
## 5705        65+       4
## 5706      35-40       6
## 5707      30-35       7
## 5708      30-35       7
## 5709      18-30      10
## 5710      40-50       5
## 5711      18-30      10
## 5712      18-30      10
## 5713      35-40       6
## 5714      18-30      10
## 5715      50-60       5
## 5716      18-30      10
## 5717      18-30      10
## 5718      18-30      10
## 5719      18-30      10
## 5720      18-30      10
## 5721      18-30      10
## 5722      40-50       5
## 5723      18-30      10
## 5724      18-30      10
## 5725      18-30      10
## 5726      18-30      10
## 5727      18-30      10
## 5728      18-30      10
## 5729      30-35       7
## 5730      18-30      10
## 5731      18-30      10
## 5732      35-40       6
## 5733      18-30      10
## 5734      30-35       7
## 5735      35-40       6
## 5736      18-30      10
## 5737      40-50       5
## 5738      35-40       6
## 5739      18-30      10
## 5740      18-30      10
## 5741      18-30      10
## 5742      18-30      10
## 5743      18-30      10
## 5744      18-30      10
## 5745      18-30      10
## 5746      35-40       6
## 5747      18-30      10
## 5748      18-30      10
## 5749      18-30      10
## 5750      18-30      10
## 5751      35-40       6
## 5752      30-35       7
## 5753      18-30      10
## 5754      18-30      10
## 5755      18-30      10
## 5756      30-35       7
## 5757      35-40       6
## 5758      40-50       5
## 5759      18-30      10
## 5760      18-30      10
## 5761      18-30      10
## 5762      35-40       6
## 5763      18-30      10
## 5764      30-35       7
## 5765      18-30      10
## 5766      18-30      10
## 5767      35-40       6
## 5768      35-40       6
## 5769      35-40       6
## 5770      50-60       5
## 5771      35-40       6
## 5772      18-30      10
## 5773      40-50       5
## 5774      35-40       6
## 5775      40-50       5
## 5776      50-60       5
## 5777      30-35       7
## 5778      18-30      10
## 5779      40-50       5
## 5780      40-50       5
## 5781      18-30      10
## 5782      30-35       7
## 5783      40-50       5
## 5784      35-40       6
## 5785      35-40       6
## 5786      50-60       5
## 5787      35-40       6
## 5788      18-30      10
## 5789      30-35       7
## 5790        65+       4
## 5791      30-35       7
## 5792      18-30      10
## 5793      18-30      10
## 5794      35-40       6
## 5795      18-30      10
## 5796      18-30      10
## 5797      18-30      10
## 5798      35-40       6
## 5799      35-40       6
## 5800      18-30      10
## 5801      18-30      10
## 5802      18-30      10
## 5803      40-50       5
## 5804      30-35       7
## 5805      40-50       5
## 5806      30-35       7
## 5807      18-30      10
## 5808      18-30      10
## 5809      30-35       7
## 5810      18-30      10
## 5811      30-35       7
## 5812      30-35       7
## 5813      35-40       6
## 5814      18-30      10
## 5815      30-35       7
## 5816      18-30      10
## 5817      18-30      10
## 5818      18-30      10
## 5819      18-30      10
## 5820      18-30      10
## 5821      40-50       5
## 5822      18-30      10
## 5823      18-30      10
## 5824      18-30      10
## 5825      18-30      10
## 5826      18-30      10
## 5827      18-30      10
## 5828      18-30      10
## 5829      18-30      10
## 5830      40-50       5
## 5831      30-35       7
## 5832      18-30      10
## 5833      18-30      10
## 5834      18-30      10
## 5835      18-30      10
## 5836      30-35       7
## 5837      30-35       7
## 5838      35-40       6
## 5839      35-40       6
## 5840      18-30      10
## 5841      18-30      10
## 5842      18-30      10
## 5843      18-30      10
## 5844      30-35       7
## 5845      50-60       5
## 5846      30-35       7
## 5847      35-40       6
## 5848      40-50       5
## 5849      18-30      10
## 5850      35-40       6
## 5851      18-30      10
## 5852      18-30      10
## 5853      30-35       7
## 5854      40-50       5
## 5855      35-40       6
## 5856      30-35       7
## 5857      18-30      10
## 5858      50-60       5
## 5859      18-30      10
## 5860      30-35       7
## 5861      18-30      10
## 5862      40-50       5
## 5863        65+       4
## 5864      30-35       7
## 5865      18-30      10
## 5866      18-30      10
## 5867      30-35       7
## 5868      18-30      10
## 5869      18-30      10
## 5870      18-30      10
## 5871      18-30      10
## 5872      30-35       7
## 5873      18-30      10
## 5874      40-50       5
## 5875      50-60       5
## 5876      18-30      10
## 5877      30-35       7
## 5878      18-30      10
## 5879      35-40       6
## 5880      30-35       7
## 5881      18-30      10
## 5882      50-60       5
## 5883      30-35       7
## 5884      18-30      10
## 5885      30-35       7
## 5886      18-30      10
## 5887      18-30      10
## 5888      18-30      10
## 5889      35-40       6
## 5890      18-30      10
## 5891      18-30      10
## 5892      18-30      10
## 5893      18-30      10
## 5894      30-35       7
## 5895      18-30      10
## 5896      30-35       7
## 5897      18-30      10
## 5898      18-30      10
## 5899      18-30      10
## 5900      18-30      10
## 5901      18-30      10
## 5902      18-30      10
## 5903      18-30      10
## 5904      18-30      10
## 5905      30-35       7
## 5906      35-40       6
## 5907      18-30      10
## 5908      18-30      10
## 5909      18-30      10
## 5910      18-30      10
## 5911      18-30      10
## 5912      30-35       7
## 5913      35-40       6
## 5914      30-35       7
## 5915      30-35       7
## 5916      30-35       7
## 5917      18-30      10
## 5918      30-35       7
## 5919      18-30      10
## 5920      40-50       5
## 5921      18-30      10
## 5922      18-30      10
## 5923      35-40       6
## 5924      18-30      10
## 5925      35-40       6
## 5926      30-35       7
## 5927      18-30      10
## 5928      30-35       7
## 5929      18-30      10
## 5930      18-30      10
## 5931      30-35       7
## 5932      35-40       6
## 5933      18-30      10
## 5934      18-30      10
## 5935      35-40       6
## 5936      40-50       5
## 5937      18-30      10
## 5938      18-30      10
## 5939      30-35       7
## 5940      50-60       5
## 5941      40-50       5
## 5942      40-50       5
## 5943      18-30      10
## 5944      35-40       6
## 5945      30-35       7
## 5946      40-50       5
## 5947      35-40       6
## 5948      18-30      10
## 5949      18-30      10
## 5950      18-30      10
## 5951      40-50       5
## 5952      18-30      10
## 5953      18-30      10
## 5954      18-30      10
## 5955      18-30      10
## 5956      30-35       7
## 5957      30-35       7
## 5958      35-40       6
## 5959      35-40       6
## 5960      18-30      10
## 5961      35-40       6
## 5962      18-30      10
## 5963      50-60       5
## 5964      35-40       6
## 5965      18-30      10
## 5966      18-30      10
## 5967      18-30      10
## 5968      18-30      10
## 5969      18-30      10
## 5970      40-50       5
## 5971      30-35       7
## 5972      30-35       7
## 5973      30-35       7
## 5974      18-30      10
## 5975      18-30      10
## 5976      30-35       7
## 5977      35-40       6
## 5978      40-50       5
## 5979      18-30      10
## 5980      18-30      10
## 5981      18-30      10
## 5982      18-30      10
## 5983      18-30      10
## 5984      40-50       5
## 5985      30-35       7
## 5986      18-30      10
## 5987      18-30      10
## 5988      30-35       7
## 5989      18-30      10
## 5990      18-30      10
## 5991      40-50       5
## 5992      30-35       7
## 5993      18-30      10
## 5994      30-35       7
## 5995      18-30      10
## 5996      18-30      10
## 5997      18-30      10
## 5998      50-60       5
## 5999      18-30      10
## 6000      40-50       5
## 6001      40-50       5
## 6002      30-35       7
## 6003      18-30      10
## 6004      40-50       5
## 6005      35-40       6
## 6006      30-35       7
## 6007      50-60       5
## 6008      30-35       7
## 6009      18-30      10
## 6010      50-60       5
## 6011      50-60       5
## 6012      40-50       5
## 6013      18-30      10
## 6014      18-30      10
## 6015      40-50       5
## 6016      50-60       5
## 6017      35-40       6
## 6018      50-60       5
## 6019      35-40       6
## 6020        65+       4
## 6021      35-40       6
## 6022      40-50       5
## 6023      18-30      10
## 6024      18-30      10
## 6025      18-30      10
## 6026      18-30      10
## 6027      18-30      10
## 6028      18-30      10
## 6029      30-35       7
## 6030      18-30      10
## 6031      40-50       5
## 6032      30-35       7
## 6033      50-60       5
## 6034      18-30      10
## 6035      18-30      10
## 6036      40-50       5
## 6037      18-30      10
## 6038      35-40       6
## 6039      18-30      10
## 6040      30-35       7
## 6041      50-60       5
## 6042      35-40       6
## 6043      18-30      10
## 6044      40-50       5
## 6045      30-35       7
## 6046      40-50       5
## 6047      30-35       7
## 6048      18-30      10
## 6049      18-30      10
## 6050      40-50       5
## 6051      18-30      10
## 6052      18-30      10
## 6053      18-30      10
## 6054      18-30      10
## 6055      50-60       5
## 6056      18-30      10
## 6057      35-40       6
## 6058      18-30      10
## 6059      18-30      10
## 6060      40-50       5
## 6061      30-35       7
## 6062      18-30      10
## 6063      18-30      10
## 6064      40-50       5
## 6065      40-50       5
## 6066      40-50       5
## 6067      35-40       6
## 6068      18-30      10
## 6069      18-30      10
## 6070      35-40       6
## 6071      18-30      10
## 6072      18-30      10
## 6073      30-35       7
## 6074      18-30      10
## 6075      18-30      10
## 6076      18-30      10
## 6077      35-40       6
## 6078      40-50       5
## 6079      35-40       6
## 6080      30-35       7
## 6081      18-30      10
## 6082      18-30      10
## 6083      18-30      10
## 6084      18-30      10
## 6085      30-35       7
## 6086      18-30      10
## 6087      40-50       5
## 6088      35-40       6
## 6089      35-40       6
## 6090      18-30      10
## 6091        65+       4
## 6092      35-40       6
## 6093      35-40       6
## 6094      50-60       5
## 6095      30-35       7
## 6096      35-40       6
## 6097      35-40       6
## 6098      18-30      10
## 6099      18-30      10
## 6100      18-30      10
## 6101      18-30      10
## 6102      30-35       7
## 6103      18-30      10
## 6104      35-40       6
## 6105      35-40       6
## 6106      18-30      10
## 6107      18-30      10
## 6108      30-35       7
## 6109      18-30      10
## 6110      18-30      10
## 6111      18-30      10
## 6112      18-30      10
## 6113      35-40       6
## 6114      18-30      10
## 6115      30-35       7
## 6116      18-30      10
## 6117      30-35       7
## 6118      35-40       6
## 6119      40-50       5
## 6120      18-30      10
## 6121      18-30      10
## 6122      40-50       5
## 6123      50-60       5
## 6124      18-30      10
## 6125      35-40       6
## 6126      30-35       7
## 6127      18-30      10
## 6128      18-30      10
## 6129      18-30      10
## 6130      18-30      10
## 6131      30-35       7
## 6132      18-30      10
## 6133      18-30      10
## 6134      50-60       5
## 6135      30-35       7
## 6136      30-35       7
## 6137      18-30      10
## 6138      18-30      10
## 6139        65+       4
## 6140      50-60       5
## 6141      40-50       5
## 6142      35-40       6
## 6143      35-40       6
## 6144      40-50       5
## 6145      18-30      10
## 6146      18-30      10
## 6147      40-50       5
## 6148      18-30      10
## 6149      18-30      10
## 6150      30-35       7
## 6151      30-35       7
## 6152      35-40       6
## 6153      35-40       6
## 6154      18-30      10
## 6155      18-30      10
## 6156      30-35       7
## 6157      18-30      10
## 6158      18-30      10
## 6159      35-40       6
## 6160      18-30      10
## 6161      35-40       6
## 6162      18-30      10
## 6163      35-40       6
## 6164      35-40       6
## 6165      18-30      10
## 6166      18-30      10
## 6167      30-35       7
## 6168      35-40       6
## 6169      18-30      10
## 6170      18-30      10
## 6171      18-30      10
## 6172      18-30      10
## 6173      30-35       7
## 6174      18-30      10
## 6175      18-30      10
## 6176      30-35       7
## 6177      18-30      10
## 6178      30-35       7
## 6179      18-30      10
## 6180      18-30      10
## 6181      35-40       6
## 6182      18-30      10
## 6183      30-35       7
## 6184      18-30      10
## 6185      30-35       7
## 6186      18-30      10
## 6187      18-30      10
## 6188      18-30      10
## 6189      35-40       6
## 6190      18-30      10
## 6191      30-35       7
## 6192      50-60       5
## 6193      35-40       6
## 6194      18-30      10
## 6195      30-35       7
## 6196      18-30      10
## 6197      18-30      10
## 6198      30-35       7
## 6199      18-30      10
## 6200      18-30      10
## 6201      18-30      10
## 6202      30-35       7
## 6203      40-50       5
## 6204      18-30      10
## 6205      30-35       7
## 6206      18-30      10
## 6207      18-30      10
## 6208      18-30      10
## 6209      18-30      10
## 6210      30-35       7
## 6211      18-30      10
## 6212      35-40       6
## 6213      18-30      10
## 6214      18-30      10
## 6215      18-30      10
## 6216      40-50       5
## 6217      30-35       7
## 6218      30-35       7
## 6219      35-40       6
## 6220      40-50       5
## 6221      40-50       5
## 6222      18-30      10
## 6223      50-60       5
## 6224      18-30      10
## 6225      18-30      10
## 6226      18-30      10
## 6227      30-35       7
## 6228      18-30      10
## 6229      35-40       6
## 6230      18-30      10
## 6231      35-40       6
## 6232      30-35       7
## 6233      18-30      10
## 6234      50-60       5
## 6235      18-30      10
## 6236      18-30      10
## 6237      18-30      10
## 6238      50-60       5
## 6239      50-60       5
## 6240      18-30      10
## 6241      30-35       7
## 6242      18-30      10
## 6243      40-50       5
## 6244      40-50       5
## 6245      18-30      10
## 6246      30-35       7
## 6247      40-50       5
## 6248      30-35       7
## 6249      40-50       5
## 6250      35-40       6
## 6251      18-30      10
## 6252      40-50       5
## 6253      18-30      10
## 6254      18-30      10
## 6255      40-50       5
## 6256      40-50       5
## 6257      40-50       5
## 6258      35-40       6
## 6259        65+       4
## 6260      18-30      10
## 6261      18-30      10
## 6262      30-35       7
## 6263      40-50       5
## 6264      40-50       5
## 6265      30-35       7
## 6266      30-35       7
## 6267      35-40       6
## 6268      50-60       5
## 6269      30-35       7
## 6270      40-50       5
## 6271      18-30      10
## 6272      18-30      10
## 6273      40-50       5
## 6274      30-35       7
## 6275      18-30      10
## 6276      30-35       7
## 6277      18-30      10
## 6278      35-40       6
## 6279      18-30      10
## 6280      35-40       6
## 6281      18-30      10
## 6282        65+       4
## 6283        65+       4
## 6284      18-30      10
## 6285      18-30      10
## 6286      18-30      10
## 6287      18-30      10
## 6288      18-30      10
## 6289      18-30      10
## 6290      18-30      10
## 6291      18-30      10
## 6292      18-30      10
## 6293      18-30      10
## 6294      18-30      10
## 6295      40-50       5
## 6296      35-40       6
## 6297      35-40       6
## 6298      50-60       5
## 6299      18-30      10
## 6300        65+       4
## 6301      30-35       7
## 6302      50-60       5
## 6303      18-30      10
## 6304      18-30      10
## 6305      18-30      10
## 6306        65+       4
## 6307      18-30      10
## 6308      18-30      10
## 6309      18-30      10
## 6310      30-35       7
## 6311      18-30      10
## 6312      30-35       7
## 6313      18-30      10
## 6314      18-30      10
## 6315      40-50       5
## 6316      30-35       7
## 6317      35-40       6
## 6318      40-50       5
## 6319      50-60       5
## 6320      18-30      10
## 6321      18-30      10
## 6322      40-50       5
## 6323      30-35       7
## 6324      18-30      10
## 6325      18-30      10
## 6326      40-50       5
## 6327      30-35       7
## 6328      40-50       5
## 6329      40-50       5
## 6330      35-40       6
## 6331      18-30      10
## 6332      40-50       5
## 6333      30-35       7
## 6334      30-35       7
## 6335      30-35       7
## 6336      40-50       5
## 6337        65+       4
## 6338      18-30      10
## 6339      30-35       7
## 6340      18-30      10
## 6341      35-40       6
## 6342      40-50       5
## 6343      40-50       5
## 6344      35-40       6
## 6345      30-35       7
## 6346      18-30      10
## 6347      40-50       5
## 6348      40-50       5
## 6349      18-30      10
## 6350      50-60       5
## 6351      18-30      10
## 6352      18-30      10
## 6353      18-30      10
## 6354      30-35       7
## 6355      30-35       7
## 6356      35-40       6
## 6357      18-30      10
## 6358      18-30      10
## 6359      18-30      10
## 6360      40-50       5
## 6361      30-35       7
## 6362      18-30      10
## 6363      35-40       6
## 6364      30-35       7
## 6365      30-35       7
## 6366      50-60       5
## 6367      18-30      10
## 6368      30-35       7
## 6369      18-30      10
## 6370      30-35       7
## 6371      18-30      10
## 6372      35-40       6
## 6373      18-30      10
## 6374      18-30      10
## 6375      30-35       7
## 6376      40-50       5
## 6377      18-30      10
## 6378      18-30      10
## 6379      18-30      10
## 6380      50-60       5
## 6381      18-30      10
## 6382      50-60       5
## 6383      35-40       6
## 6384      18-30      10
## 6385      30-35       7
## 6386      18-30      10
## 6387      40-50       5
## 6388      18-30      10
## 6389      18-30      10
## 6390      35-40       6
## 6391      18-30      10
## 6392      18-30      10
## 6393      40-50       5
## 6394      18-30      10
## 6395      35-40       6
## 6396      18-30      10
## 6397      18-30      10
## 6398      18-30      10
## 6399      40-50       5
## 6400      18-30      10
## 6401      30-35       7
## 6402      35-40       6
## 6403      18-30      10
## 6404      18-30      10
## 6405      18-30      10
## 6406      18-30      10
## 6407      18-30      10
## 6408      18-30      10
## 6409      35-40       6
## 6410      18-30      10
## 6411      18-30      10
## 6412      30-35       7
## 6413      18-30      10
## 6414      35-40       6
## 6415      40-50       5
## 6416      40-50       5
## 6417      35-40       6
## 6418      30-35       7
## 6419      18-30      10
## 6420      30-35       7
## 6421      18-30      10
## 6422      18-30      10
## 6423      18-30      10
## 6424        65+       4
## 6425      30-35       7
## 6426      40-50       5
## 6427      18-30      10
## 6428      40-50       5
## 6429      18-30      10
## 6430      30-35       7
## 6431      18-30      10
## 6432      40-50       5
## 6433      30-35       7
## 6434      30-35       7
## 6435      35-40       6
## 6436      35-40       6
## 6437      30-35       7
## 6438      18-30      10
## 6439      18-30      10
## 6440      40-50       5
## 6441      18-30      10
## 6442      30-35       7
## 6443      18-30      10
## 6444      30-35       7
## 6445      18-30      10
## 6446      35-40       6
## 6447      18-30      10
## 6448      18-30      10
## 6449        65+       4
## 6450      18-30      10
## 6451      35-40       6
## 6452      40-50       5
## 6453      50-60       5
## 6454      50-60       5
## 6455      18-30      10
## 6456      18-30      10
## 6457      18-30      10
## 6458      30-35       7
## 6459      18-30      10
## 6460      18-30      10
## 6461      50-60       5
## 6462      35-40       6
## 6463      40-50       5
## 6464      18-30      10
## 6465      18-30      10
## 6466      18-30      10
## 6467      40-50       5
## 6468      30-35       7
## 6469      35-40       6
## 6470      18-30      10
## 6471      35-40       6
## 6472      18-30      10
## 6473      18-30      10
## 6474      18-30      10
## 6475      18-30      10
## 6476      50-60       5
## 6477      18-30      10
## 6478      30-35       7
## 6479      18-30      10
## 6480      30-35       7
## 6481      30-35       7
## 6482      18-30      10
## 6483      30-35       7
## 6484      30-35       7
## 6485      18-30      10
## 6486      40-50       5
## 6487      30-35       7
## 6488      18-30      10
## 6489      40-50       5
## 6490      18-30      10
## 6491      18-30      10
## 6492      40-50       5
## 6493      18-30      10
## 6494      18-30      10
## 6495      18-30      10
## 6496      40-50       5
## 6497      18-30      10
## 6498      30-35       7
## 6499      18-30      10
## 6500      18-30      10
## 6501      35-40       6
## 6502      50-60       5
## 6503      30-35       7
## 6504      18-30      10
## 6505      18-30      10
## 6506      18-30      10
## 6507      50-60       5
## 6508      30-35       7
## 6509      40-50       5
## 6510      40-50       5
## 6511      18-30      10
## 6512      18-30      10
## 6513      50-60       5
## 6514      18-30      10
## 6515      18-30      10
## 6516      30-35       7
## 6517      40-50       5
## 6518      40-50       5
## 6519      18-30      10
## 6520      18-30      10
## 6521      18-30      10
## 6522      18-30      10
## 6523      18-30      10
## 6524      18-30      10
## 6525      40-50       5
## 6526      50-60       5
## 6527      35-40       6
## 6528      40-50       5
## 6529      30-35       7
## 6530      30-35       7
## 6531      18-30      10
## 6532      18-30      10
## 6533      18-30      10
## 6534      35-40       6
## 6535      18-30      10
## 6536      30-35       7
## 6537      18-30      10
## 6538      50-60       5
## 6539      30-35       7
## 6540      30-35       7
## 6541      18-30      10
## 6542      18-30      10
## 6543      18-30      10
## 6544      18-30      10
## 6545      50-60       5
## 6546      35-40       6
## 6547      50-60       5
## 6548      35-40       6
## 6549      40-50       5
## 6550      18-30      10
## 6551      18-30      10
## 6552      18-30      10
## 6553      18-30      10
## 6554      18-30      10
## 6555      18-30      10
## 6556      18-30      10
## 6557      30-35       7
## 6558      30-35       7
## 6559      40-50       5
## 6560      18-30      10
## 6561      30-35       7
## 6562      30-35       7
## 6563      18-30      10
## 6564      18-30      10
## 6565      18-30      10
## 6566      18-30      10
## 6567      18-30      10
## 6568      18-30      10
## 6569      18-30      10
## 6570      40-50       5
## 6571      35-40       6
## 6572      40-50       5
## 6573      18-30      10
## 6574      18-30      10
## 6575      30-35       7
## 6576      18-30      10
## 6577      18-30      10
## 6578      35-40       6
## 6579      18-30      10
## 6580      18-30      10
## 6581      40-50       5
## 6582      18-30      10
## 6583      50-60       5
## 6584      35-40       6
## 6585      18-30      10
## 6586      18-30      10
## 6587      18-30      10
## 6588      18-30      10
## 6589      18-30      10
## 6590      30-35       7
## 6591      50-60       5
## 6592      40-50       5
## 6593      18-30      10
## 6594      18-30      10
## 6595      18-30      10
## 6596      18-30      10
## 6597      35-40       6
## 6598      18-30      10
## 6599      18-30      10
## 6600      35-40       6
## 6601      30-35       7
## 6602      18-30      10
## 6603      18-30      10
## 6604      30-35       7
## 6605      30-35       7
## 6606      40-50       5
## 6607      35-40       6
## 6608      18-30      10
## 6609      18-30      10
## 6610      18-30      10
## 6611      40-50       5
## 6612      30-35       7
## 6613      18-30      10
## 6614      40-50       5
## 6615      50-60       5
## 6616      18-30      10
## 6617      18-30      10
## 6618      50-60       5
## 6619      18-30      10
## 6620      18-30      10
## 6621      30-35       7
## 6622      18-30      10
## 6623        65+       4
## 6624      18-30      10
## 6625      18-30      10
## 6626      30-35       7
## 6627      18-30      10
## 6628      18-30      10
## 6629      35-40       6
## 6630      40-50       5
## 6631      18-30      10
## 6632      18-30      10
## 6633      18-30      10
## 6634      18-30      10
## 6635      50-60       5
## 6636      18-30      10
## 6637      18-30      10
## 6638      35-40       6
## 6639      18-30      10
## 6640      50-60       5
## 6641      30-35       7
## 6642      40-50       5
## 6643      40-50       5
## 6644      30-35       7
## 6645      18-30      10
## 6646        65+       4
## 6647      18-30      10
## 6648      18-30      10
## 6649      18-30      10
## 6650      18-30      10
## 6651      18-30      10
## 6652      40-50       5
## 6653      40-50       5
## 6654      30-35       7
## 6655      18-30      10
## 6656      30-35       7
## 6657      30-35       7
## 6658      18-30      10
## 6659      30-35       7
## 6660      35-40       6
## 6661      35-40       6
## 6662      30-35       7
## 6663      18-30      10
## 6664      35-40       6
## 6665      18-30      10
## 6666      18-30      10
## 6667      40-50       5
## 6668        65+       4
## 6669      35-40       6
## 6670      18-30      10
## 6671      18-30      10
## 6672      40-50       5
## 6673      30-35       7
## 6674      18-30      10
## 6675      30-35       7
## 6676      18-30      10
## 6677      30-35       7
## 6678      18-30      10
## 6679      35-40       6
## 6680      40-50       5
## 6681      35-40       6
## 6682      18-30      10
## 6683      30-35       7
## 6684      35-40       6
## 6685      35-40       6
## 6686      18-30      10
## 6687      18-30      10
## 6688      40-50       5
## 6689      40-50       5
## 6690      50-60       5
## 6691      30-35       7
## 6692      40-50       5
## 6693      18-30      10
## 6694      35-40       6
## 6695      40-50       5
## 6696      18-30      10
## 6697      40-50       5
## 6698      40-50       5
## 6699      18-30      10
## 6700      40-50       5
## 6701      35-40       6
## 6702      40-50       5
## 6703      18-30      10
## 6704      18-30      10
## 6705      30-35       7
## 6706      18-30      10
## 6707      18-30      10
## 6708      18-30      10
## 6709      35-40       6
## 6710      18-30      10
## 6711      18-30      10
## 6712      18-30      10
## 6713      30-35       7
## 6714      18-30      10
## 6715      18-30      10
## 6716      18-30      10
## 6717      30-35       7
## 6718      18-30      10
## 6719      18-30      10
## 6720      35-40       6
## 6721      40-50       5
## 6722      18-30      10
## 6723      30-35       7
## 6724      35-40       6
## 6725        65+       4
## 6726      18-30      10
## 6727      18-30      10
## 6728      18-30      10
## 6729      18-30      10
## 6730      18-30      10
## 6731      40-50       5
## 6732      35-40       6
## 6733      18-30      10
## 6734      18-30      10
## 6735      18-30      10
## 6736      18-30      10
## 6737      18-30      10
## 6738      30-35       7
## 6739      18-30      10
## 6740      18-30      10
## 6741      30-35       7
## 6742      18-30      10
## 6743      30-35       7
## 6744      18-30      10
## 6745      35-40       6
## 6746      18-30      10
## 6747      35-40       6
## 6748      18-30      10
## 6749      18-30      10
## 6750      30-35       7
## 6751      18-30      10
## 6752      30-35       7
## 6753      18-30      10
## 6754      40-50       5
## 6755      18-30      10
## 6756      18-30      10
## 6757      18-30      10
## 6758      18-30      10
## 6759      18-30      10
## 6760      18-30      10
## 6761      40-50       5
## 6762      18-30      10
## 6763      18-30      10
## 6764      18-30      10
## 6765      18-30      10
## 6766      30-35       7
## 6767      40-50       5
## 6768      18-30      10
## 6769      18-30      10
## 6770      18-30      10
## 6771      18-30      10
## 6772      35-40       6
## 6773      18-30      10
## 6774      18-30      10
## 6775      18-30      10
## 6776      18-30      10
## 6777      40-50       5
## 6778      18-30      10
## 6779      18-30      10
## 6780      40-50       5
## 6781      18-30      10
## 6782      18-30      10
## 6783      18-30      10
## 6784      18-30      10
## 6785      18-30      10
## 6786      18-30      10
## 6787      18-30      10
## 6788      40-50       5
## 6789      30-35       7
## 6790      18-30      10
## 6791      18-30      10
## 6792      30-35       7
## 6793      40-50       5
## 6794      18-30      10
## 6795      35-40       6
## 6796      30-35       7
## 6797      30-35       7
## 6798      18-30      10
## 6799      18-30      10
## 6800      30-35       7
## 6801      18-30      10
## 6802      35-40       6
## 6803      18-30      10
## 6804      40-50       5
## 6805      30-35       7
## 6806      18-30      10
## 6807      35-40       6
## 6808      18-30      10
## 6809      35-40       6
## 6810      40-50       5
## 6811      30-35       7
## 6812      30-35       7
## 6813      18-30      10
## 6814      40-50       5
## 6815      18-30      10
## 6816      35-40       6
## 6817      18-30      10
## 6818      18-30      10
## 6819      18-30      10
## 6820      18-30      10
## 6821      18-30      10
## 6822      18-30      10
## 6823      18-30      10
## 6824      18-30      10
## 6825      18-30      10
## 6826      40-50       5
## 6827      18-30      10
## 6828      30-35       7
## 6829      18-30      10
## 6830      30-35       7
## 6831      30-35       7
## 6832      18-30      10
## 6833      18-30      10
## 6834      18-30      10
## 6835      18-30      10
## 6836      18-30      10
## 6837      18-30      10
## 6838      18-30      10
## 6839      18-30      10
## 6840      18-30      10
## 6841      50-60       5
## 6842      18-30      10
## 6843      18-30      10
## 6844      35-40       6
## 6845      18-30      10
## 6846      18-30      10
## 6847      18-30      10
## 6848      18-30      10
## 6849      18-30      10
## 6850      18-30      10
## 6851      18-30      10
## 6852      18-30      10
## 6853      18-30      10
## 6854      40-50       5
## 6855      35-40       6
## 6856      30-35       7
## 6857      40-50       5
## 6858      18-30      10
## 6859      35-40       6
## 6860      30-35       7
## 6861      35-40       6
## 6862      30-35       7
## 6863      18-30      10
## 6864      35-40       6
## 6865      30-35       7
## 6866      30-35       7
## 6867      30-35       7
## 6868      18-30      10
## 6869      18-30      10
## 6870      50-60       5
## 6871      18-30      10
## 6872      18-30      10
## 6873      18-30      10
## 6874      30-35       7
## 6875      35-40       6
## 6876      18-30      10
## 6877      18-30      10
## 6878      40-50       5
## 6879      18-30      10
## 6880      18-30      10
## 6881      18-30      10
## 6882      30-35       7
## 6883      18-30      10
## 6884      18-30      10
## 6885      30-35       7
## 6886      40-50       5
## 6887      18-30      10
## 6888      30-35       7
## 6889      18-30      10
## 6890      18-30      10
## 6891      18-30      10
## 6892      18-30      10
## 6893      40-50       5
## 6894      30-35       7
## 6895      18-30      10
## 6896      18-30      10
## 6897      18-30      10
## 6898      18-30      10
## 6899      18-30      10
## 6900      18-30      10
## 6901      18-30      10
## 6902      40-50       5
## 6903      18-30      10
## 6904      40-50       5
## 6905      35-40       6
## 6906      18-30      10
## 6907      18-30      10
## 6908      18-30      10
## 6909      30-35       7
## 6910      18-30      10
## 6911      18-30      10
## 6912      18-30      10
## 6913      18-30      10
## 6914      18-30      10
## 6915      18-30      10
## 6916      18-30      10
## 6917      35-40       6
## 6918      30-35       7
## 6919      18-30      10
## 6920      18-30      10
## 6921      18-30      10
## 6922      18-30      10
## 6923      18-30      10
## 6924      50-60       5
## 6925      40-50       5
## 6926      40-50       5
## 6927      18-30      10
## 6928      50-60       5
## 6929      30-35       7
## 6930      18-30      10
## 6931      18-30      10
## 6932      35-40       6
## 6933      30-35       7
## 6934      35-40       6
## 6935      18-30      10
## 6936      35-40       6
## 6937      50-60       5
## 6938      30-35       7
## 6939      30-35       7
## 6940      30-35       7
## 6941      18-30      10
## 6942      30-35       7
## 6943      30-35       7
## 6944      30-35       7
## 6945      40-50       5
## 6946      18-30      10
## 6947      30-35       7
## 6948      35-40       6
## 6949      30-35       7
## 6950      18-30      10
## 6951      30-35       7
## 6952      18-30      10
## 6953      18-30      10
## 6954      40-50       5
## 6955      40-50       5
## 6956      40-50       5
## 6957      18-30      10
## 6958      18-30      10
## 6959      40-50       5
## 6960      18-30      10
## 6961      30-35       7
## 6962      35-40       6
## 6963      30-35       7
## 6964      18-30      10
## 6965      35-40       6
## 6966      30-35       7
## 6967      40-50       5
## 6968      18-30      10
## 6969      18-30      10
## 6970      18-30      10
## 6971      40-50       5
## 6972      35-40       6
## 6973      18-30      10
## 6974      35-40       6
## 6975      30-35       7
## 6976      30-35       7
## 6977      18-30      10
## 6978      18-30      10
## 6979      18-30      10
## 6980      30-35       7
## 6981      40-50       5
## 6982      18-30      10
## 6983      18-30      10
## 6984      18-30      10
## 6985      18-30      10
## 6986      18-30      10
## 6987      35-40       6
## 6988      18-30      10
## 6989      35-40       6
## 6990      30-35       7
## 6991      18-30      10
## 6992      18-30      10
## 6993      18-30      10
## 6994        65+       4
## 6995      30-35       7
## 6996      18-30      10
## 6997      35-40       6
## 6998      18-30      10
## 6999      18-30      10
## 7000      40-50       5
## 7001      40-50       5
## 7002      40-50       5
## 7003      18-30      10
## 7004      30-35       7
## 7005      18-30      10
## 7006      18-30      10
## 7007      18-30      10
## 7008      18-30      10
## 7009        65+       4
## 7010      30-35       7
## 7011      40-50       5
## 7012      30-35       7
## 7013      50-60       5
## 7014      35-40       6
## 7015      18-30      10
## 7016      18-30      10
## 7017      18-30      10
## 7018      35-40       6
## 7019      30-35       7
## 7020      30-35       7
## 7021      18-30      10
## 7022      35-40       6
## 7023      35-40       6
## 7024      18-30      10
## 7025      30-35       7
## 7026      30-35       7
## 7027      18-30      10
## 7028      18-30      10
## 7029      18-30      10
## 7030      40-50       5
## 7031      35-40       6
## 7032      18-30      10
## 7033      30-35       7
## 7034      30-35       7
## 7035      18-30      10
## 7036      18-30      10
## 7037      18-30      10
## 7038      18-30      10
## 7039      35-40       6
## 7040      18-30      10
## 7041      18-30      10
## 7042      18-30      10
## 7043      18-30      10
## 7044      18-30      10
## 7045      35-40       6
## 7046      35-40       6
## 7047      18-30      10
## 7048      50-60       5
## 7049      18-30      10
## 7050      50-60       5
## 7051      30-35       7
## 7052      40-50       5
## 7053      30-35       7
## 7054      18-30      10
## 7055      18-30      10
## 7056      40-50       5
## 7057      30-35       7
## 7058      18-30      10
## 7059      18-30      10
## 7060      18-30      10
## 7061      18-30      10
## 7062      18-30      10
## 7063      50-60       5
## 7064      50-60       5
## 7065      18-30      10
## 7066      18-30      10
## 7067      18-30      10
## 7068      18-30      10
## 7069      18-30      10
## 7070      40-50       5
## 7071      40-50       5
## 7072      18-30      10
## 7073      18-30      10
## 7074      18-30      10
## 7075      18-30      10
## 7076      18-30      10
## 7077      18-30      10
## 7078      18-30      10
## 7079      18-30      10
## 7080      40-50       5
## 7081      50-60       5
## 7082      40-50       5
## 7083      18-30      10
## 7084      30-35       7
## 7085      18-30      10
## 7086      30-35       7
## 7087      18-30      10
## 7088      30-35       7
## 7089      18-30      10
## 7090      40-50       5
## 7091      18-30      10
## 7092      18-30      10
## 7093      30-35       7
## 7094      30-35       7
## 7095      18-30      10
## 7096      18-30      10
## 7097      35-40       6
## 7098      18-30      10
## 7099      18-30      10
## 7100      18-30      10
## 7101      35-40       6
## 7102      18-30      10
## 7103      18-30      10
## 7104      30-35       7
## 7105      18-30      10
## 7106      40-50       5
## 7107      18-30      10
## 7108      18-30      10
## 7109      40-50       5
## 7110      50-60       5
## 7111      40-50       5
## 7112      40-50       5
## 7113      50-60       5
## 7114      50-60       5
## 7115      35-40       6
## 7116      18-30      10
## 7117      18-30      10
## 7118      35-40       6
## 7119      30-35       7
## 7120      30-35       7
## 7121      30-35       7
## 7122      18-30      10
## 7123      18-30      10
## 7124      18-30      10
## 7125      18-30      10
## 7126      40-50       5
## 7127      18-30      10
## 7128      18-30      10
## 7129      30-35       7
## 7130      18-30      10
## 7131      40-50       5
## 7132      18-30      10
## 7133      40-50       5
## 7134      40-50       5
## 7135      18-30      10
## 7136      30-35       7
## 7137      50-60       5
## 7138      30-35       7
## 7139      50-60       5
## 7140      30-35       7
## 7141      18-30      10
## 7142      30-35       7
## 7143      40-50       5
## 7144      18-30      10
## 7145      40-50       5
## 7146      18-30      10
## 7147      18-30      10
## 7148      18-30      10
## 7149      18-30      10
## 7150      18-30      10
## 7151      40-50       5
## 7152      40-50       5
## 7153      18-30      10
## 7154      35-40       6
## 7155      40-50       5
## 7156      40-50       5
## 7157      30-35       7
## 7158      30-35       7
## 7159      50-60       5
## 7160        65+       4
## 7161      18-30      10
## 7162      18-30      10
## 7163      18-30      10
## 7164      18-30      10
## 7165      40-50       5
## 7166        65+       4
## 7167      35-40       6
## 7168      18-30      10
## 7169      18-30      10
## 7170      18-30      10
## 7171      18-30      10
## 7172      30-35       7
## 7173        65+       4
## 7174      30-35       7
## 7175      18-30      10
## 7176      18-30      10
## 7177      35-40       6
## 7178      40-50       5
## 7179      30-35       7
## 7180      18-30      10
## 7181      30-35       7
## 7182      18-30      10
## 7183      18-30      10
## 7184      30-35       7
## 7185      30-35       7
## 7186      35-40       6
## 7187      35-40       6
## 7188      30-35       7
## 7189      30-35       7
## 7190      18-30      10
## 7191      40-50       5
## 7192      35-40       6
## 7193      30-35       7
## 7194      40-50       5
## 7195      18-30      10
## 7196      35-40       6
## 7197      18-30      10
## 7198      40-50       5
## 7199      35-40       6
## 7200      18-30      10
## 7201      30-35       7
## 7202      18-30      10
## 7203      30-35       7
## 7204      50-60       5
## 7205      40-50       5
## 7206      30-35       7
## 7207      30-35       7
## 7208      35-40       6
## 7209      18-30      10
## 7210      50-60       5
## 7211      35-40       6
## 7212      18-30      10
## 7213      50-60       5
## 7214      18-30      10
## 7215      50-60       5
## 7216      18-30      10
## 7217      40-50       5
## 7218      30-35       7
## 7219      35-40       6
## 7220      40-50       5
## 7221      50-60       5
## 7222      40-50       5
## 7223      30-35       7
## 7224      18-30      10
## 7225      40-50       5
## 7226      18-30      10
## 7227      40-50       5
## 7228      40-50       5
## 7229      18-30      10
## 7230      18-30      10
## 7231      30-35       7
## 7232      30-35       7
## 7233      30-35       7
## 7234      18-30      10
## 7235      30-35       7
## 7236      18-30      10
## 7237      18-30      10
## 7238      18-30      10
## 7239      18-30      10
## 7240      18-30      10
## 7241      30-35       7
## 7242      18-30      10
## 7243      18-30      10
## 7244      35-40       6
## 7245      18-30      10
## 7246      30-35       7
## 7247      50-60       5
## 7248      18-30      10
## 7249      18-30      10
## 7250      18-30      10
## 7251      50-60       5
## 7252      30-35       7
## 7253      35-40       6
## 7254      18-30      10
## 7255      18-30      10
## 7256      18-30      10
## 7257      18-30      10
## 7258      18-30      10
## 7259      18-30      10
## 7260      18-30      10
## 7261      30-35       7
## 7262      30-35       7
## 7263      18-30      10
## 7264      18-30      10
## 7265      18-30      10
## 7266      18-30      10
## 7267      18-30      10
## 7268      18-30      10
## 7269      30-35       7
## 7270      18-30      10
## 7271      30-35       7
## 7272      35-40       6
## 7273      18-30      10
## 7274      18-30      10
## 7275      18-30      10
## 7276      18-30      10
## 7277      18-30      10
## 7278      50-60       5
## 7279      18-30      10
## 7280      18-30      10
## 7281      18-30      10
## 7282      18-30      10
## 7283      18-30      10
## 7284      30-35       7
## 7285      35-40       6
## 7286      18-30      10
## 7287      18-30      10
## 7288      18-30      10
## 7289      18-30      10
## 7290      40-50       5
## 7291      18-30      10
## 7292      18-30      10
## 7293      35-40       6
## 7294      30-35       7
## 7295      35-40       6
## 7296      18-30      10
## 7297      30-35       7
## 7298      18-30      10
## 7299      18-30      10
## 7300      18-30      10
## 7301      18-30      10
## 7302      18-30      10
## 7303      35-40       6
## 7304        65+       4
## 7305      18-30      10
## 7306      50-60       5
## 7307      18-30      10
## 7308      18-30      10
## 7309      18-30      10
## 7310      18-30      10
## 7311      18-30      10
## 7312      30-35       7
## 7313      18-30      10
## 7314      18-30      10
## 7315      18-30      10
## 7316      40-50       5
## 7317      18-30      10
## 7318      18-30      10
## 7319      18-30      10
## 7320      30-35       7
## 7321        65+       4
## 7322        65+       4
## 7323      40-50       5
## 7324      30-35       7
## 7325      35-40       6
## 7326      18-30      10
## 7327      50-60       5
## 7328      30-35       7
## 7329      18-30      10
## 7330      18-30      10
## 7331      18-30      10
## 7332      18-30      10
## 7333      18-30      10
## 7334      35-40       6
## 7335      18-30      10
## 7336      40-50       5
## 7337      18-30      10
## 7338      18-30      10
## 7339      35-40       6
## 7340      30-35       7
## 7341      18-30      10
## 7342      35-40       6
## 7343      18-30      10
## 7344      18-30      10
## 7345        65+       4
## 7346      18-30      10
## 7347      18-30      10
## 7348      18-30      10
## 7349        65+       4
## 7350      50-60       5
## 7351      18-30      10
## 7352      30-35       7
## 7353      18-30      10
## 7354        65+       4
## 7355      18-30      10
## 7356      35-40       6
## 7357        65+       4
## 7358      35-40       6
## 7359      18-30      10
## 7360      18-30      10
## 7361      18-30      10
## 7362      40-50       5
## 7363      18-30      10
## 7364      18-30      10
## 7365      30-35       7
## 7366      35-40       6
## 7367        65+       4
## 7368      40-50       5
## 7369      18-30      10
## 7370      30-35       7
## 7371      18-30      10
## 7372        65+       4
## 7373      40-50       5
## 7374      18-30      10
## 7375      18-30      10
## 7376      50-60       5
## 7377      40-50       5
## 7378      40-50       5
## 7379      18-30      10
## 7380      40-50       5
## 7381      18-30      10
## 7382      40-50       5
## 7383      18-30      10
## 7384      18-30      10
## 7385      50-60       5
## 7386      18-30      10
## 7387      18-30      10
## 7388      30-35       7
## 7389      35-40       6
## 7390      18-30      10
## 7391      18-30      10
## 7392      30-35       7
## 7393      40-50       5
## 7394      18-30      10
## 7395      18-30      10
## 7396      40-50       5
## 7397      18-30      10
## 7398      40-50       5
## 7399      30-35       7
## 7400      18-30      10
## 7401      18-30      10
## 7402      18-30      10
## 7403      30-35       7
## 7404        65+       4
## 7405      40-50       5
## 7406      18-30      10
## 7407      50-60       5
## 7408      35-40       6
## 7409      18-30      10
## 7410      35-40       6
## 7411      40-50       5
## 7412      30-35       7
## 7413      35-40       6
## 7414      30-35       7
## 7415      18-30      10
## 7416      18-30      10
## 7417      35-40       6
## 7418      18-30      10
## 7419      18-30      10
## 7420      18-30      10
## 7421      40-50       5
## 7422      18-30      10
## 7423      35-40       6
## 7424      35-40       6
## 7425      35-40       6
## 7426      35-40       6
## 7427      35-40       6
## 7428      35-40       6
## 7429      30-35       7
## 7430      18-30      10
## 7431      30-35       7
## 7432      50-60       5
## 7433      18-30      10
## 7434      30-35       7
## 7435      18-30      10
## 7436      18-30      10
## 7437      18-30      10
## 7438      18-30      10
## 7439      18-30      10
## 7440      18-30      10
## 7441      40-50       5
## 7442      35-40       6
## 7443      50-60       5
## 7444      18-30      10
## 7445      30-35       7
## 7446      30-35       7
## 7447      18-30      10
## 7448      40-50       5
## 7449      18-30      10
## 7450      35-40       6
## 7451      40-50       5
## 7452      40-50       5
## 7453      30-35       7
## 7454      18-30      10
## 7455      18-30      10
## 7456      18-30      10
## 7457      30-35       7
## 7458      18-30      10
## 7459      18-30      10
## 7460      18-30      10
## 7461      18-30      10
## 7462      18-30      10
## 7463      30-35       7
## 7464      40-50       5
## 7465        65+       4
## 7466      30-35       7
## 7467      30-35       7
## 7468      50-60       5
## 7469      18-30      10
## 7470      35-40       6
## 7471      18-30      10
## 7472      30-35       7
## 7473      18-30      10
## 7474      18-30      10
## 7475      40-50       5
## 7476      18-30      10
## 7477      18-30      10
## 7478      30-35       7
## 7479        65+       4
## 7480      18-30      10
## 7481      35-40       6
## 7482      40-50       5
## 7483      40-50       5
## 7484      35-40       6
## 7485      35-40       6
## 7486      30-35       7
## 7487      40-50       5
## 7488      30-35       7
## 7489      30-35       7
## 7490      35-40       6
## 7491      40-50       5
## 7492      30-35       7
## 7493      18-30      10
## 7494      30-35       7
## 7495      18-30      10
## 7496      40-50       5
## 7497      18-30      10
## 7498      30-35       7
## 7499      50-60       5
## 7500      18-30      10
## 7501      18-30      10
## 7502      18-30      10
## 7503      35-40       6
## 7504      35-40       6
## 7505      18-30      10
## 7506      18-30      10
## 7507      18-30      10
## 7508      30-35       7
## 7509      50-60       5
## 7510      18-30      10
## 7511      35-40       6
## 7512      18-30      10
## 7513      35-40       6
## 7514      30-35       7
## 7515      18-30      10
## 7516      18-30      10
## 7517      18-30      10
## 7518      18-30      10
## 7519      40-50       5
## 7520      18-30      10
## 7521      18-30      10
## 7522      18-30      10
## 7523      35-40       6
## 7524      30-35       7
## 7525      18-30      10
## 7526      18-30      10
## 7527      18-30      10
## 7528      30-35       7
## 7529      18-30      10
## 7530      30-35       7
## 7531      18-30      10
## 7532      30-35       7
## 7533      18-30      10
## 7534      30-35       7
## 7535      18-30      10
## 7536      30-35       7
## 7537      18-30      10
## 7538      30-35       7
## 7539      18-30      10
## 7540      30-35       7
## 7541      18-30      10
## 7542      18-30      10
## 7543      18-30      10
## 7544      18-30      10
## 7545      18-30      10
## 7546      18-30      10
## 7547      18-30      10
## 7548      18-30      10
## 7549      18-30      10
## 7550      30-35       7
## 7551      50-60       5
## 7552      18-30      10
## 7553      18-30      10
## 7554      18-30      10
## 7555      18-30      10
## 7556      40-50       5
## 7557      18-30      10
## 7558      18-30      10
## 7559      18-30      10
## 7560      30-35       7
## 7561        65+       4
## 7562      18-30      10
## 7563      18-30      10
## 7564      18-30      10
## 7565      18-30      10
## 7566      18-30      10
## 7567      18-30      10
## 7568      30-35       7
## 7569      30-35       7
## 7570      18-30      10
## 7571      18-30      10
## 7572      18-30      10
## 7573      35-40       6
## 7574      18-30      10
## 7575      40-50       5
## 7576      18-30      10
## 7577      18-30      10
## 7578      30-35       7
## 7579      35-40       6
## 7580      40-50       5
## 7581      30-35       7
## 7582      35-40       6
## 7583      35-40       6
## 7584      35-40       6
## 7585      35-40       6
## 7586      40-50       5
## 7587      18-30      10
## 7588      40-50       5
## 7589      40-50       5
## 7590      50-60       5
## 7591      18-30      10
## 7592      40-50       5
## 7593      18-30      10
## 7594      18-30      10
## 7595      18-30      10
## 7596      18-30      10
## 7597      50-60       5
## 7598      30-35       7
## 7599      18-30      10
## 7600      18-30      10
## 7601      18-30      10
## 7602      30-35       7
## 7603      18-30      10
## 7604      18-30      10
## 7605      40-50       5
## 7606      18-30      10
## 7607      30-35       7
## 7608      18-30      10
## 7609      18-30      10
## 7610      50-60       5
## 7611      18-30      10
## 7612      18-30      10
## 7613      35-40       6
## 7614      18-30      10
## 7615      30-35       7
## 7616      18-30      10
## 7617      18-30      10
## 7618      18-30      10
## 7619      18-30      10
## 7620      30-35       7
## 7621      18-30      10
## 7622      35-40       6
## 7623      35-40       6
## 7624      35-40       6
## 7625      18-30      10
## 7626      40-50       5
## 7627      40-50       5
## 7628      18-30      10
## 7629      50-60       5
## 7630      18-30      10
## 7631      18-30      10
## 7632      18-30      10
## 7633      40-50       5
## 7634      18-30      10
## 7635      30-35       7
## 7636      18-30      10
## 7637      18-30      10
## 7638      18-30      10
## 7639      30-35       7
## 7640      18-30      10
## 7641      18-30      10
## 7642      35-40       6
## 7643      35-40       6
## 7644      30-35       7
## 7645      40-50       5
## 7646      40-50       5
## 7647      30-35       7
## 7648      18-30      10
## 7649      30-35       7
## 7650      18-30      10
## 7651      30-35       7
## 7652      30-35       7
## 7653      18-30      10
## 7654      18-30      10
## 7655      35-40       6
## 7656      30-35       7
## 7657      35-40       6
## 7658      18-30      10
## 7659      35-40       6
## 7660      30-35       7
## 7661      30-35       7
## 7662      30-35       7
## 7663      18-30      10
## 7664      18-30      10
## 7665      18-30      10
## 7666      18-30      10
## 7667      18-30      10
## 7668      18-30      10
## 7669      40-50       5
## 7670      35-40       6
## 7671      18-30      10
## 7672      40-50       5
## 7673      18-30      10
## 7674      18-30      10
## 7675      18-30      10
## 7676      30-35       7
## 7677      50-60       5
## 7678      30-35       7
## 7679      50-60       5
## 7680      30-35       7
## 7681      30-35       7
## 7682      18-30      10
## 7683      30-35       7
## 7684      40-50       5
## 7685      30-35       7
## 7686      18-30      10
## 7687      18-30      10
## 7688      30-35       7
## 7689      18-30      10
## 7690      18-30      10
## 7691      18-30      10
## 7692      30-35       7
## 7693      18-30      10
## 7694      18-30      10
## 7695      18-30      10
## 7696      30-35       7
## 7697      30-35       7
## 7698      30-35       7
## 7699      40-50       5
## 7700      18-30      10
## 7701      40-50       5
## 7702      35-40       6
## 7703      40-50       5
## 7704      18-30      10
## 7705      30-35       7
## 7706      35-40       6
## 7707      18-30      10
## 7708      18-30      10
## 7709      35-40       6
## 7710      30-35       7
## 7711      18-30      10
## 7712      18-30      10
## 7713      18-30      10
## 7714      30-35       7
## 7715      18-30      10
## 7716      18-30      10
## 7717      18-30      10
## 7718      30-35       7
## 7719      18-30      10
## 7720      30-35       7
## 7721      18-30      10
## 7722      18-30      10
## 7723      40-50       5
## 7724      18-30      10
## 7725      18-30      10
## 7726      30-35       7
## 7727      18-30      10
## 7728      18-30      10
## 7729      18-30      10
## 7730      18-30      10
## 7731      18-30      10
## 7732      35-40       6
## 7733      18-30      10
## 7734      18-30      10
## 7735      18-30      10
## 7736      18-30      10
## 7737      18-30      10
## 7738      18-30      10
## 7739      18-30      10
## 7740      30-35       7
## 7741      40-50       5
## 7742      40-50       5
## 7743      18-30      10
## 7744      30-35       7
## 7745      50-60       5
## 7746      30-35       7
## 7747      18-30      10
## 7748      18-30      10
## 7749      18-30      10
## 7750      18-30      10
## 7751      18-30      10
## 7752      30-35       7
## 7753      18-30      10
## 7754      40-50       5
## 7755      18-30      10
## 7756      18-30      10
## 7757      18-30      10
## 7758      35-40       6
## 7759      40-50       5
## 7760      18-30      10
## 7761      18-30      10
## 7762      18-30      10
## 7763      18-30      10
## 7764      35-40       6
## 7765      40-50       5
## 7766      18-30      10
## 7767      18-30      10
## 7768      18-30      10
## 7769      40-50       5
## 7770      40-50       5
## 7771      18-30      10
## 7772      40-50       5
## 7773      18-30      10
## 7774      30-35       7
## 7775      30-35       7
## 7776      30-35       7
## 7777      18-30      10
## 7778      18-30      10
## 7779      30-35       7
## 7780      18-30      10
## 7781      30-35       7
## 7782      35-40       6
## 7783      30-35       7
## 7784      30-35       7
## 7785      50-60       5
## 7786      18-30      10
## 7787      18-30      10
## 7788      18-30      10
## 7789      18-30      10
## 7790      18-30      10
## 7791      18-30      10
## 7792      30-35       7
## 7793      40-50       5
## 7794      18-30      10
## 7795      30-35       7
## 7796      18-30      10
## 7797      18-30      10
## 7798      18-30      10
## 7799      18-30      10
## 7800      18-30      10
## 7801      35-40       6
## 7802      30-35       7
## 7803      30-35       7
## 7804      18-30      10
## 7805      18-30      10
## 7806      18-30      10
## 7807      30-35       7
## 7808      30-35       7
## 7809      18-30      10
## 7810      18-30      10
## 7811      30-35       7
## 7812      18-30      10
## 7813      30-35       7
## 7814      18-30      10
## 7815      18-30      10
## 7816      30-35       7
## 7817      30-35       7
## 7818      18-30      10
## 7819      18-30      10
## 7820      40-50       5
## 7821      30-35       7
## 7822      35-40       6
## 7823      18-30      10
## 7824      18-30      10
## 7825      18-30      10
## 7826      50-60       5
## 7827      18-30      10
## 7828      18-30      10
## 7829      18-30      10
## 7830      18-30      10
## 7831      18-30      10
## 7832      30-35       7
## 7833      18-30      10
## 7834      35-40       6
## 7835      18-30      10
## 7836        65+       4
## 7837      18-30      10
## 7838      18-30      10
## 7839      35-40       6
## 7840      18-30      10
## 7841      50-60       5
## 7842      18-30      10
## 7843      18-30      10
## 7844      50-60       5
## 7845      35-40       6
## 7846      40-50       5
## 7847      35-40       6
## 7848      40-50       5
## 7849      30-35       7
## 7850      40-50       5
## 7851      40-50       5
## 7852      18-30      10
## 7853      18-30      10
## 7854      30-35       7
## 7855      35-40       6
## 7856      18-30      10
## 7857      40-50       5
## 7858      40-50       5
## 7859      18-30      10
## 7860      18-30      10
## 7861      18-30      10
## 7862      18-30      10
## 7863      35-40       6
## 7864      18-30      10
## 7865      18-30      10
## 7866      18-30      10
## 7867      18-30      10
## 7868      40-50       5
## 7869      18-30      10
## 7870      18-30      10
## 7871      30-35       7
## 7872      18-30      10
## 7873      30-35       7
## 7874      18-30      10
## 7875      40-50       5
## 7876      30-35       7
## 7877      50-60       5
## 7878      35-40       6
## 7879      30-35       7
## 7880      18-30      10
## 7881        65+       4
## 7882      35-40       6
## 7883      40-50       5
## 7884      50-60       5
## 7885      30-35       7
## 7886      18-30      10
## 7887      18-30      10
## 7888      18-30      10
## 7889      35-40       6
## 7890      18-30      10
## 7891      18-30      10
## 7892      18-30      10
## 7893      50-60       5
## 7894      18-30      10
## 7895      18-30      10
## 7896      40-50       5
## 7897      30-35       7
## 7898      50-60       5
## 7899      18-30      10
## 7900      18-30      10
## 7901      18-30      10
## 7902      18-30      10
## 7903      18-30      10
## 7904      30-35       7
## 7905      18-30      10
## 7906      18-30      10
## 7907      18-30      10
## 7908      18-30      10
## 7909      18-30      10
## 7910      18-30      10
## 7911      18-30      10
## 7912      40-50       5
## 7913      35-40       6
## 7914      18-30      10
## 7915      30-35       7
## 7916      18-30      10
## 7917      30-35       7
## 7918      18-30      10
## 7919      40-50       5
## 7920      18-30      10
## 7921      18-30      10
## 7922      30-35       7
## 7923      40-50       5
## 7924      30-35       7
## 7925      35-40       6
## 7926      18-30      10
## 7927      18-30      10
## 7928      18-30      10
## 7929      18-30      10
## 7930      18-30      10
## 7931      18-30      10
## 7932      18-30      10
## 7933        65+       4
## 7934      18-30      10
## 7935      18-30      10
## 7936      30-35       7
## 7937      18-30      10
## 7938      40-50       5
## 7939      18-30      10
## 7940      30-35       7
## 7941      18-30      10
## 7942      18-30      10
## 7943      18-30      10
## 7944      18-30      10
## 7945      30-35       7
## 7946      40-50       5
## 7947      30-35       7
## 7948      18-30      10
## 7949      18-30      10
## 7950      30-35       7
## 7951      18-30      10
## 7952      18-30      10
## 7953      50-60       5
## 7954      18-30      10
## 7955      18-30      10
## 7956      18-30      10
## 7957      18-30      10
## 7958      30-35       7
## 7959      30-35       7
## 7960      40-50       5
## 7961      40-50       5
## 7962      18-30      10
## 7963      18-30      10
## 7964      40-50       5
## 7965      40-50       5
## 7966      18-30      10
## 7967      18-30      10
## 7968      18-30      10
## 7969      18-30      10
## 7970      30-35       7
## 7971      30-35       7
## 7972      35-40       6
## 7973      18-30      10
## 7974      18-30      10
## 7975      18-30      10
## 7976      18-30      10
## 7977      18-30      10
## 7978      30-35       7
## 7979      18-30      10
## 7980      30-35       7
## 7981      35-40       6
## 7982      35-40       6
## 7983      18-30      10
## 7984      18-30      10
## 7985      18-30      10
## 7986      18-30      10
## 7987      18-30      10
## 7988      35-40       6
## 7989      18-30      10
## 7990      35-40       6
## 7991      18-30      10
## 7992      18-30      10
## 7993      18-30      10
## 7994      18-30      10
## 7995      30-35       7
## 7996      40-50       5
## 7997      18-30      10
## 7998      30-35       7
## 7999      18-30      10
## 8000        65+       4
## 8001      30-35       7
## 8002      40-50       5
## 8003      18-30      10
## 8004      18-30      10
## 8005      18-30      10
## 8006      35-40       6
## 8007      18-30      10
## 8008      18-30      10
## 8009      35-40       6
## 8010      18-30      10
## 8011      18-30      10
## 8012      35-40       6
## 8013      40-50       5
## 8014      18-30      10
## 8015      18-30      10
## 8016      18-30      10
## 8017      30-35       7
## 8018      35-40       6
## 8019      18-30      10
## 8020      18-30      10
## 8021      40-50       5
## 8022      30-35       7
## 8023      18-30      10
## 8024      40-50       5
## 8025      18-30      10
## 8026      30-35       7
## 8027      40-50       5
## 8028      18-30      10
## 8029      18-30      10
## 8030      18-30      10
## 8031      18-30      10
## 8032      18-30      10
## 8033      50-60       5
## 8034      35-40       6
## 8035      18-30      10
## 8036      18-30      10
## 8037      18-30      10
## 8038      35-40       6
## 8039      50-60       5
## 8040      18-30      10
## 8041      40-50       5
## 8042      18-30      10
## 8043      30-35       7
## 8044      30-35       7
## 8045      35-40       6
## 8046      40-50       5
## 8047      18-30      10
## 8048      35-40       6
## 8049      18-30      10
## 8050      18-30      10
## 8051      40-50       5
## 8052      18-30      10
## 8053      40-50       5
## 8054      18-30      10
## 8055      18-30      10
## 8056      18-30      10
## 8057      18-30      10
## 8058      18-30      10
## 8059      18-30      10
## 8060      35-40       6
## 8061      18-30      10
## 8062      18-30      10
## 8063      18-30      10
## 8064      30-35       7
## 8065      30-35       7
## 8066      18-30      10
## 8067      18-30      10
## 8068      40-50       5
## 8069      40-50       5
## 8070      40-50       5
## 8071      50-60       5
## 8072      40-50       5
## 8073      18-30      10
## 8074      30-35       7
## 8075      30-35       7
## 8076      18-30      10
## 8077      18-30      10
## 8078      18-30      10
## 8079      18-30      10
## 8080      50-60       5
## 8081      30-35       7
## 8082      18-30      10
## 8083      40-50       5
## 8084      35-40       6
## 8085      18-30      10
## 8086        65+       4
## 8087      18-30      10
## 8088      18-30      10
## 8089      35-40       6
## 8090      50-60       5
## 8091      18-30      10
## 8092      18-30      10
## 8093      18-30      10
## 8094      18-30      10
## 8095      18-30      10
## 8096      18-30      10
## 8097      18-30      10
## 8098      18-30      10
## 8099      18-30      10
## 8100      18-30      10
## 8101      18-30      10
## 8102      18-30      10
## 8103      18-30      10
## 8104      30-35       7
## 8105      18-30      10
## 8106      18-30      10
## 8107      18-30      10
## 8108      18-30      10
## 8109      18-30      10
## 8110      18-30      10
## 8111      18-30      10
## 8112      18-30      10
## 8113      18-30      10
## 8114      35-40       6
## 8115      18-30      10
## 8116      18-30      10
## 8117      18-30      10
## 8118      18-30      10
## 8119      30-35       7
## 8120      18-30      10
## 8121      30-35       7
## 8122      18-30      10
## 8123      18-30      10
## 8124      30-35       7
## 8125      30-35       7
## 8126      30-35       7
## 8127      35-40       6
## 8128      30-35       7
## 8129      18-30      10
## 8130      40-50       5
## 8131      18-30      10
## 8132      30-35       7
## 8133      18-30      10
## 8134      18-30      10
## 8135      18-30      10
## 8136      50-60       5
## 8137      40-50       5
## 8138      40-50       5
## 8139      40-50       5
## 8140      18-30      10
## 8141      40-50       5
## 8142      35-40       6
## 8143      18-30      10
## 8144      40-50       5
## 8145      18-30      10
## 8146        65+       4
## 8147      30-35       7
## 8148      30-35       7
## 8149      18-30      10
## 8150      30-35       7
## 8151      35-40       6
## 8152      18-30      10
## 8153      18-30      10
## 8154      18-30      10
## 8155      18-30      10
## 8156      18-30      10
## 8157      18-30      10
## 8158      30-35       7
## 8159      18-30      10
## 8160      30-35       7
## 8161      30-35       7
## 8162      35-40       6
## 8163      18-30      10
## 8164      30-35       7
## 8165      35-40       6
## 8166      50-60       5
## 8167      40-50       5
## 8168      18-30      10
## 8169      40-50       5
## 8170      30-35       7
## 8171      18-30      10
## 8172      18-30      10
## 8173      18-30      10
## 8174      40-50       5
## 8175      18-30      10
## 8176      50-60       5
## 8177      30-35       7
## 8178      30-35       7
## 8179      40-50       5
## 8180      30-35       7
## 8181      18-30      10
## 8182      30-35       7
## 8183      35-40       6
## 8184      18-30      10
## 8185      30-35       7
## 8186      18-30      10
## 8187      35-40       6
## 8188      35-40       6
## 8189      35-40       6
## 8190      18-30      10
## 8191      18-30      10
## 8192      30-35       7
## 8193      30-35       7
## 8194      18-30      10
## 8195      18-30      10
## 8196      18-30      10
## 8197      40-50       5
## 8198      40-50       5
## 8199      40-50       5
## 8200      35-40       6
## 8201      18-30      10
## 8202      30-35       7
## 8203      40-50       5
## 8204      30-35       7
## 8205      18-30      10
## 8206      40-50       5
## 8207      30-35       7
## 8208      18-30      10
## 8209      35-40       6
## 8210      40-50       5
## 8211      40-50       5
## 8212      40-50       5
## 8213      30-35       7
## 8214      18-30      10
## 8215      18-30      10
## 8216      18-30      10
## 8217      18-30      10
## 8218      35-40       6
## 8219      30-35       7
## 8220      18-30      10
## 8221      35-40       6
## 8222      35-40       6
## 8223      18-30      10
## 8224      18-30      10
## 8225      18-30      10
## 8226      18-30      10
## 8227      18-30      10
## 8228      35-40       6
## 8229      35-40       6
## 8230      40-50       5
## 8231      18-30      10
## 8232      30-35       7
## 8233      50-60       5
## 8234      18-30      10
## 8235      40-50       5
## 8236      18-30      10
## 8237      18-30      10
## 8238      18-30      10
## 8239      35-40       6
## 8240      18-30      10
## 8241      30-35       7
## 8242      18-30      10
## 8243      18-30      10
## 8244      18-30      10
## 8245      30-35       7
## 8246      18-30      10
## 8247      18-30      10
## 8248      18-30      10
## 8249      30-35       7
## 8250      18-30      10
## 8251      18-30      10
## 8252      18-30      10
## 8253      18-30      10
## 8254      18-30      10
## 8255      35-40       6
## 8256      18-30      10
## 8257      18-30      10
## 8258      18-30      10
## 8259      35-40       6
## 8260      18-30      10
## 8261      50-60       5
## 8262      18-30      10
## 8263      18-30      10
## 8264      18-30      10
## 8265      30-35       7
## 8266      18-30      10
## 8267      18-30      10
## 8268      40-50       5
## 8269      30-35       7
## 8270      40-50       5
## 8271      18-30      10
## 8272      18-30      10
## 8273      18-30      10
## 8274      18-30      10
## 8275      18-30      10
## 8276      35-40       6
## 8277      30-35       7
## 8278      18-30      10
## 8279      18-30      10
## 8280      35-40       6
## 8281      30-35       7
## 8282      30-35       7
## 8283      18-30      10
## 8284      18-30      10
## 8285      18-30      10
## 8286      18-30      10
## 8287      18-30      10
## 8288      18-30      10
## 8289      18-30      10
## 8290      18-30      10
## 8291      18-30      10
## 8292      18-30      10
## 8293      18-30      10
## 8294      18-30      10
## 8295      18-30      10
## 8296      18-30      10
## 8297      30-35       7
## 8298      18-30      10
## 8299      50-60       5
## 8300      18-30      10
## 8301      35-40       6
## 8302      30-35       7
## 8303      30-35       7
## 8304      35-40       6
## 8305      18-30      10
## 8306      18-30      10
## 8307      18-30      10
## 8308      18-30      10
## 8309      30-35       7
## 8310      30-35       7
## 8311      18-30      10
## 8312      30-35       7
## 8313      18-30      10
## 8314      30-35       7
## 8315      18-30      10
## 8316      18-30      10
## 8317      18-30      10
## 8318      18-30      10
## 8319      35-40       6
## 8320      30-35       7
## 8321      40-50       5
## 8322      18-30      10
## 8323      40-50       5
## 8324      18-30      10
## 8325      30-35       7
## 8326      40-50       5
## 8327      18-30      10
## 8328      18-30      10
## 8329      40-50       5
## 8330      30-35       7
## 8331      18-30      10
## 8332      30-35       7
## 8333      50-60       5
## 8334      18-30      10
## 8335      30-35       7
## 8336      18-30      10
## 8337      18-30      10
## 8338      40-50       5
## 8339      18-30      10
## 8340      30-35       7
## 8341      18-30      10
## 8342      40-50       5
## 8343      18-30      10
## 8344      18-30      10
## 8345      18-30      10
## 8346      40-50       5
## 8347      18-30      10
## 8348      18-30      10
## 8349      18-30      10
## 8350      30-35       7
## 8351      18-30      10
## 8352      30-35       7
## 8353      40-50       5
## 8354      30-35       7
## 8355      30-35       7
## 8356      40-50       5
## 8357      18-30      10
## 8358      18-30      10
## 8359        65+       4
## 8360      50-60       5
## 8361      40-50       5
## 8362      18-30      10
## 8363      18-30      10
## 8364      30-35       7
## 8365      18-30      10
## 8366      18-30      10
## 8367      18-30      10
## 8368      18-30      10
## 8369      18-30      10
## 8370      18-30      10
## 8371      35-40       6
## 8372      18-30      10
## 8373      18-30      10
## 8374      50-60       5
## 8375      18-30      10
## 8376      50-60       5
## 8377      30-35       7
## 8378      30-35       7
## 8379      18-30      10
## 8380      35-40       6
## 8381      35-40       6
## 8382      18-30      10
## 8383      35-40       6
## 8384      50-60       5
## 8385      50-60       5
## 8386      50-60       5
## 8387      18-30      10
## 8388      18-30      10
## 8389      50-60       5
## 8390      30-35       7
## 8391      40-50       5
## 8392      18-30      10
## 8393      50-60       5
## 8394      18-30      10
## 8395      40-50       5
## 8396      18-30      10
## 8397      18-30      10
## 8398      18-30      10
## 8399      50-60       5
## 8400      50-60       5
## 8401      30-35       7
## 8402      35-40       6
## 8403      18-30      10
## 8404      40-50       5
## 8405      35-40       6
## 8406      18-30      10
## 8407      30-35       7
## 8408      18-30      10
## 8409      30-35       7
## 8410        65+       4
## 8411      18-30      10
## 8412      18-30      10
## 8413      35-40       6
## 8414      18-30      10
## 8415      40-50       5
## 8416      35-40       6
## 8417      50-60       5
## 8418      35-40       6
## 8419      18-30      10
## 8420      30-35       7
## 8421      30-35       7
## 8422      18-30      10
## 8423      40-50       5
## 8424      18-30      10
## 8425      35-40       6
## 8426      18-30      10
## 8427      18-30      10
## 8428      35-40       6
## 8429      30-35       7
## 8430      18-30      10
## 8431      18-30      10
## 8432      18-30      10
## 8433      18-30      10
## 8434      30-35       7
## 8435      18-30      10
## 8436      30-35       7
## 8437      18-30      10
## 8438      18-30      10
## 8439      40-50       5
## 8440      18-30      10
## 8441      18-30      10
## 8442      18-30      10
## 8443      30-35       7
## 8444      18-30      10
## 8445      18-30      10
## 8446      18-30      10
## 8447      18-30      10
## 8448      40-50       5
## 8449      18-30      10
## 8450      18-30      10
## 8451      30-35       7
## 8452      40-50       5
## 8453      35-40       6
## 8454      30-35       7
## 8455      18-30      10
## 8456      30-35       7
## 8457      18-30      10
## 8458      30-35       7
## 8459      30-35       7
## 8460      30-35       7
## 8461      18-30      10
## 8462      18-30      10
## 8463      30-35       7
## 8464      30-35       7
## 8465      30-35       7
## 8466      18-30      10
## 8467      40-50       5
## 8468      35-40       6
## 8469      18-30      10
## 8470      18-30      10
## 8471      18-30      10
## 8472      30-35       7
## 8473      40-50       5
## 8474      35-40       6
## 8475      18-30      10
## 8476      30-35       7
## 8477      40-50       5
## 8478      35-40       6
## 8479      35-40       6
## 8480      18-30      10
## 8481      30-35       7
## 8482      18-30      10
## 8483      35-40       6
## 8484      35-40       6
## 8485      50-60       5
## 8486      50-60       5
## 8487      18-30      10
## 8488      18-30      10
## 8489      35-40       6
## 8490      18-30      10
## 8491      18-30      10
## 8492      30-35       7
## 8493      30-35       7
## 8494      30-35       7
## 8495      18-30      10
## 8496      18-30      10
## 8497      30-35       7
## 8498      40-50       5
## 8499      18-30      10
## 8500      18-30      10
## 8501      18-30      10
## 8502      18-30      10
## 8503      18-30      10
## 8504      35-40       6
## 8505      18-30      10
## 8506      18-30      10
## 8507      30-35       7
## 8508      18-30      10
## 8509      18-30      10
## 8510      35-40       6
## 8511      18-30      10
## 8512      18-30      10
## 8513      18-30      10
## 8514      18-30      10
## 8515      18-30      10
## 8516      35-40       6
## 8517      35-40       6
## 8518      35-40       6
## 8519      18-30      10
## 8520      18-30      10
## 8521      30-35       7
## 8522      18-30      10
## 8523      40-50       5
## 8524      18-30      10
## 8525      50-60       5
## 8526      18-30      10
## 8527      18-30      10
## 8528      18-30      10
## 8529      18-30      10
## 8530      50-60       5
## 8531      30-35       7
## 8532      50-60       5
## 8533      35-40       6
## 8534      50-60       5
## 8535      18-30      10
## 8536      18-30      10
## 8537      18-30      10
## 8538      30-35       7
## 8539      18-30      10
## 8540      18-30      10
## 8541      40-50       5
## 8542      35-40       6
## 8543      18-30      10
## 8544      18-30      10
## 8545      18-30      10
## 8546      35-40       6
## 8547      18-30      10
## 8548      35-40       6
## 8549      30-35       7
## 8550      40-50       5
## 8551      40-50       5
## 8552      18-30      10
## 8553      35-40       6
## 8554      35-40       6
## 8555      40-50       5
## 8556      30-35       7
## 8557      18-30      10
## 8558      30-35       7
## 8559      18-30      10
## 8560      18-30      10
## 8561        65+       4
## 8562      18-30      10
## 8563      18-30      10
## 8564      18-30      10
## 8565      18-30      10
## 8566      18-30      10
## 8567      18-30      10
## 8568      18-30      10
## 8569      30-35       7
## 8570      18-30      10
## 8571      30-35       7
## 8572      30-35       7
## 8573      30-35       7
## 8574      40-50       5
## 8575      18-30      10
## 8576      18-30      10
## 8577      18-30      10
## 8578      18-30      10
## 8579      18-30      10
## 8580      35-40       6
## 8581      18-30      10
## 8582      30-35       7
## 8583      30-35       7
## 8584      30-35       7
## 8585      18-30      10
## 8586      18-30      10
## 8587      35-40       6
## 8588      30-35       7
## 8589      40-50       5
## 8590      30-35       7
## 8591      18-30      10
## 8592      18-30      10
## 8593      35-40       6
## 8594      35-40       6
## 8595      35-40       6
## 8596      40-50       5
## 8597      35-40       6
## 8598      35-40       6
## 8599      30-35       7
## 8600      18-30      10
## 8601      35-40       6
## 8602      18-30      10
## 8603      30-35       7
## 8604      40-50       5
## 8605      35-40       6
## 8606      50-60       5
## 8607      18-30      10
## 8608      40-50       5
## 8609      18-30      10
## 8610      18-30      10
## 8611      18-30      10
## 8612      30-35       7
## 8613      35-40       6
## 8614      40-50       5
## 8615      30-35       7
## 8616      35-40       6
## 8617      18-30      10
## 8618      18-30      10
## 8619      18-30      10
## 8620      18-30      10
## 8621      30-35       7
## 8622      18-30      10
## 8623      18-30      10
## 8624      35-40       6
## 8625      18-30      10
## 8626      30-35       7
## 8627      18-30      10
## 8628      18-30      10
## 8629      35-40       6
## 8630      18-30      10
## 8631      18-30      10
## 8632      18-30      10
## 8633      40-50       5
## 8634      18-30      10
## 8635      18-30      10
## 8636      18-30      10
## 8637      18-30      10
## 8638      30-35       7
## 8639      30-35       7
## 8640      18-30      10
## 8641      30-35       7
## 8642      30-35       7
## 8643      35-40       6
## 8644      30-35       7
## 8645      18-30      10
## 8646      40-50       5
## 8647      35-40       6
## 8648      30-35       7
## 8649      40-50       5
## 8650      35-40       6
## 8651      30-35       7
## 8652      18-30      10
## 8653      18-30      10
## 8654      18-30      10
## 8655      18-30      10
## 8656      40-50       5
## 8657      40-50       5
## 8658      18-30      10
## 8659      30-35       7
## 8660      18-30      10
## 8661      40-50       5
## 8662      40-50       5
## 8663      18-30      10
## 8664      30-35       7
## 8665      30-35       7
## 8666      35-40       6
## 8667      40-50       5
## 8668      50-60       5
## 8669      18-30      10
## 8670      35-40       6
## 8671      18-30      10
## 8672      18-30      10
## 8673      18-30      10
## 8674      50-60       5
## 8675      18-30      10
## 8676      50-60       5
## 8677      18-30      10
## 8678      40-50       5
## 8679        65+       4
## 8680      18-30      10
## 8681      40-50       5
## 8682      18-30      10
## 8683      30-35       7
## 8684      35-40       6
## 8685      30-35       7
## 8686      40-50       5
## 8687      18-30      10
## 8688        65+       4
## 8689      18-30      10
## 8690      18-30      10
## 8691        65+       4
## 8692      18-30      10
## 8693      18-30      10
## 8694      30-35       7
## 8695      40-50       5
## 8696      18-30      10
## 8697      30-35       7
## 8698      40-50       5
## 8699      18-30      10
## 8700      18-30      10
## 8701      18-30      10
## 8702      35-40       6
## 8703      40-50       5
## 8704      35-40       6
## 8705      35-40       6
## 8706      30-35       7
## 8707      18-30      10
## 8708      18-30      10
## 8709      30-35       7
## 8710      30-35       7
## 8711      18-30      10
## 8712      30-35       7
## 8713      18-30      10
## 8714      18-30      10
## 8715      18-30      10
## 8716        65+       4
## 8717      18-30      10
## 8718      30-35       7
## 8719      18-30      10
## 8720      35-40       6
## 8721      18-30      10
## 8722      40-50       5
## 8723      35-40       6
## 8724      18-30      10
## 8725      18-30      10
## 8726      35-40       6
## 8727      50-60       5
## 8728      35-40       6
## 8729      35-40       6
## 8730      30-35       7
## 8731      40-50       5
## 8732      18-30      10
## 8733      18-30      10
## 8734      18-30      10
## 8735      18-30      10
## 8736      18-30      10
## 8737      18-30      10
## 8738      18-30      10
## 8739      18-30      10
## 8740      18-30      10
## 8741      18-30      10
## 8742      18-30      10
## 8743      50-60       5
## 8744      18-30      10
## 8745      50-60       5
## 8746      18-30      10
## 8747      18-30      10
## 8748      18-30      10
## 8749      18-30      10
## 8750      18-30      10
## 8751      18-30      10
## 8752      18-30      10
## 8753      18-30      10
## 8754      18-30      10
## 8755      18-30      10
## 8756      40-50       5
## 8757      40-50       5
## 8758      40-50       5
## 8759      18-30      10
## 8760      18-30      10
## 8761      40-50       5
## 8762      30-35       7
## 8763      18-30      10
## 8764      18-30      10
## 8765      18-30      10
## 8766      18-30      10
## 8767      30-35       7
## 8768      18-30      10
## 8769      18-30      10
## 8770      40-50       5
## 8771      18-30      10
## 8772      18-30      10
## 8773      40-50       5
## 8774      18-30      10
## 8775      18-30      10
## 8776      18-30      10
## 8777      18-30      10
## 8778      18-30      10
## 8779      18-30      10
## 8780      30-35       7
## 8781      30-35       7
## 8782      40-50       5
## 8783      30-35       7
## 8784      18-30      10
## 8785      40-50       5
## 8786      18-30      10
## 8787      35-40       6
## 8788      18-30      10
## 8789      18-30      10
## 8790      18-30      10
## 8791      18-30      10
## 8792      30-35       7
## 8793      18-30      10
## 8794      18-30      10
## 8795      30-35       7
## 8796      18-30      10
## 8797      18-30      10
## 8798      18-30      10
## 8799      40-50       5
## 8800      40-50       5
## 8801      30-35       7
## 8802      40-50       5
## 8803      40-50       5
## 8804      18-30      10
## 8805      35-40       6
## 8806      18-30      10
## 8807      35-40       6
## 8808      35-40       6
## 8809      18-30      10
## 8810      18-30      10
## 8811      30-35       7
## 8812      40-50       5
## 8813      18-30      10
## 8814      30-35       7
## 8815      18-30      10
## 8816      18-30      10
## 8817      18-30      10
## 8818      18-30      10
## 8819      35-40       6
## 8820      18-30      10
## 8821      30-35       7
## 8822      40-50       5
## 8823      18-30      10
## 8824      18-30      10
## 8825      18-30      10
## 8826      35-40       6
## 8827      18-30      10
## 8828      18-30      10
## 8829      18-30      10
## 8830      18-30      10
## 8831      50-60       5
## 8832      18-30      10
## 8833      18-30      10
## 8834      18-30      10
## 8835      18-30      10
## 8836      18-30      10
## 8837      18-30      10
## 8838      18-30      10
## 8839      18-30      10
## 8840      40-50       5
## 8841      40-50       5
## 8842      18-30      10
## 8843      18-30      10
## 8844      18-30      10
## 8845      50-60       5
## 8846      30-35       7
## 8847      18-30      10
## 8848      18-30      10
## 8849      30-35       7
## 8850      18-30      10
## 8851      18-30      10
## 8852      18-30      10
## 8853      18-30      10
## 8854      18-30      10
## 8855      18-30      10
## 8856      40-50       5
## 8857      18-30      10
## 8858      50-60       5
## 8859      18-30      10
## 8860      35-40       6
## 8861      18-30      10
## 8862      18-30      10
## 8863      40-50       5
## 8864      40-50       5
## 8865      40-50       5
## 8866      18-30      10
## 8867      30-35       7
## 8868      18-30      10
## 8869      18-30      10
## 8870      18-30      10
## 8871      40-50       5
## 8872      18-30      10
## 8873      18-30      10
## 8874      18-30      10
## 8875      18-30      10
## 8876      18-30      10
## 8877      18-30      10
## 8878      18-30      10
## 8879      40-50       5
## 8880      35-40       6
## 8881      18-30      10
## 8882      18-30      10
## 8883      50-60       5
## 8884      18-30      10
## 8885      18-30      10
## 8886      18-30      10
## 8887      30-35       7
## 8888      18-30      10
## 8889      35-40       6
## 8890      40-50       5
## 8891      18-30      10
## 8892      18-30      10
## 8893      18-30      10
## 8894      18-30      10
## 8895      30-35       7
## 8896      18-30      10
## 8897      35-40       6
## 8898      18-30      10
## 8899      18-30      10
## 8900      18-30      10
## 8901      30-35       7
## 8902      18-30      10
## 8903      18-30      10
## 8904        65+       4
## 8905      18-30      10
## 8906      40-50       5
## 8907      30-35       7
## 8908      18-30      10
## 8909      30-35       7
## 8910      50-60       5
## 8911      35-40       6
## 8912      18-30      10
## 8913      30-35       7
## 8914      40-50       5
## 8915      18-30      10
## 8916      30-35       7
## 8917      18-30      10
## 8918      40-50       5
## 8919      18-30      10
## 8920      18-30      10
## 8921      18-30      10
## 8922      30-35       7
## 8923      18-30      10
## 8924      35-40       6
## 8925      18-30      10
## 8926      30-35       7
## 8927      18-30      10
## 8928      18-30      10
## 8929      18-30      10
## 8930      18-30      10
## 8931      18-30      10
## 8932      30-35       7
## 8933      18-30      10
## 8934      18-30      10
## 8935      18-30      10
## 8936      18-30      10
## 8937      18-30      10
## 8938      18-30      10
## 8939      18-30      10
## 8940      18-30      10
## 8941      35-40       6
## 8942      18-30      10
## 8943      35-40       6
## 8944      18-30      10
## 8945      18-30      10
## 8946      35-40       6
## 8947      30-35       7
## 8948      18-30      10
## 8949      18-30      10
## 8950      18-30      10
## 8951      18-30      10
## 8952      18-30      10
## 8953      30-35       7
## 8954      18-30      10
## 8955      18-30      10
## 8956      18-30      10
## 8957      30-35       7
## 8958      30-35       7
## 8959      18-30      10
## 8960      18-30      10
## 8961      40-50       5
## 8962      40-50       5
## 8963      18-30      10
## 8964      18-30      10
## 8965      18-30      10
## 8966      18-30      10
## 8967      18-30      10
## 8968      18-30      10
## 8969      18-30      10
## 8970      35-40       6
## 8971      18-30      10
## 8972      30-35       7
## 8973      30-35       7
## 8974      35-40       6
## 8975      18-30      10
## 8976      18-30      10
## 8977      35-40       6
## 8978      35-40       6
## 8979      18-30      10
## 8980      18-30      10
## 8981      18-30      10
## 8982      35-40       6
## 8983      50-60       5
## 8984      18-30      10
## 8985      35-40       6
## 8986      18-30      10
## 8987      18-30      10
## 8988      30-35       7
## 8989      18-30      10
## 8990      18-30      10
## 8991      30-35       7
## 8992      18-30      10
## 8993      18-30      10
## 8994      18-30      10
## 8995      30-35       7
## 8996      40-50       5
## 8997      30-35       7
## 8998      18-30      10
## 8999      18-30      10
## 9000      18-30      10
## 9001      18-30      10
## 9002      18-30      10
## 9003      30-35       7
## 9004      18-30      10
## 9005      18-30      10
## 9006      18-30      10
## 9007      18-30      10
## 9008      18-30      10
## 9009      18-30      10
## 9010      18-30      10
## 9011      18-30      10
## 9012      18-30      10
## 9013      30-35       7
## 9014      30-35       7
## 9015      18-30      10
## 9016      18-30      10
## 9017      18-30      10
## 9018      30-35       7
## 9019      18-30      10
## 9020      18-30      10
## 9021      18-30      10
## 9022      18-30      10
## 9023      18-30      10
## 9024      18-30      10
## 9025      18-30      10
## 9026      18-30      10
## 9027      18-30      10
## 9028      35-40       6
## 9029      18-30      10
## 9030      35-40       6
## 9031      35-40       6
## 9032      18-30      10
## 9033      50-60       5
## 9034      18-30      10
## 9035      18-30      10
## 9036      40-50       5
## 9037      30-35       7
## 9038      50-60       5
## 9039      40-50       5
## 9040      35-40       6
## 9041      30-35       7
## 9042      18-30      10
## 9043      30-35       7
## 9044      18-30      10
## 9045      18-30      10
## 9046      18-30      10
## 9047      18-30      10
## 9048      35-40       6
## 9049      35-40       6
## 9050      18-30      10
## 9051      30-35       7
## 9052      18-30      10
## 9053      18-30      10
## 9054      30-35       7
## 9055      18-30      10
## 9056      35-40       6
## 9057      30-35       7
## 9058      18-30      10
## 9059      30-35       7
## 9060      18-30      10
## 9061      18-30      10
## 9062      18-30      10
## 9063      18-30      10
## 9064      18-30      10
## 9065      18-30      10
## 9066      30-35       7
## 9067      30-35       7
## 9068      18-30      10
## 9069      40-50       5
## 9070      18-30      10
## 9071      18-30      10
## 9072      18-30      10
## 9073      18-30      10
## 9074      30-35       7
## 9075      18-30      10
## 9076      40-50       5
## 9077      18-30      10
## 9078      50-60       5
## 9079      18-30      10
## 9080      40-50       5
## 9081      18-30      10
## 9082      18-30      10
## 9083      40-50       5
## 9084      18-30      10
## 9085      18-30      10
## 9086      18-30      10
## 9087      18-30      10
## 9088      18-30      10
## 9089      18-30      10
## 9090      18-30      10
## 9091      18-30      10
## 9092      50-60       5
## 9093      18-30      10
## 9094      18-30      10
## 9095      18-30      10
## 9096      35-40       6
## 9097      18-30      10
## 9098      18-30      10
## 9099      50-60       5
## 9100      18-30      10
## 9101      18-30      10
## 9102      35-40       6
## 9103      18-30      10
## 9104      18-30      10
## 9105      40-50       5
## 9106      18-30      10
## 9107      35-40       6
## 9108      18-30      10
## 9109      18-30      10
## 9110      35-40       6
## 9111      30-35       7
## 9112      35-40       6
## 9113      18-30      10
## 9114      18-30      10
## 9115      18-30      10
## 9116      30-35       7
## 9117      18-30      10
## 9118      18-30      10
## 9119      30-35       7
## 9120      30-35       7
## 9121      18-30      10
## 9122      18-30      10
## 9123      18-30      10
## 9124      18-30      10
## 9125      30-35       7
## 9126      18-30      10
## 9127      50-60       5
## 9128      35-40       6
## 9129        65+       4
## 9130      18-30      10
## 9131      30-35       7
## 9132      35-40       6
## 9133      18-30      10
## 9134      50-60       5
## 9135      30-35       7
## 9136      50-60       5
## 9137      18-30      10
## 9138      40-50       5
## 9139      18-30      10
## 9140      18-30      10
## 9141      30-35       7
## 9142      18-30      10
## 9143      18-30      10
## 9144      18-30      10
## 9145      18-30      10
## 9146      30-35       7
## 9147      35-40       6
## 9148      30-35       7
## 9149      18-30      10
## 9150      18-30      10
## 9151      30-35       7
## 9152      18-30      10
## 9153      30-35       7
## 9154      35-40       6
## 9155      30-35       7
## 9156      18-30      10
## 9157      18-30      10
## 9158      30-35       7
## 9159      30-35       7
## 9160      30-35       7
## 9161      18-30      10
## 9162      40-50       5
## 9163      18-30      10
## 9164      30-35       7
## 9165      30-35       7
## 9166      35-40       6
## 9167      40-50       5
## 9168      35-40       6
## 9169      18-30      10
## 9170      40-50       5
## 9171      18-30      10
## 9172      50-60       5
## 9173      40-50       5
## 9174        65+       4
## 9175        65+       4
## 9176      40-50       5
## 9177      18-30      10
## 9178      40-50       5
## 9179      30-35       7
## 9180      35-40       6
## 9181      18-30      10
## 9182      18-30      10
## 9183      30-35       7
## 9184      35-40       6
## 9185      30-35       7
## 9186      18-30      10
## 9187      30-35       7
## 9188      35-40       6
## 9189      18-30      10
## 9190      18-30      10
## 9191      30-35       7
## 9192      18-30      10
## 9193      18-30      10
## 9194      30-35       7
## 9195      18-30      10
## 9196      18-30      10
## 9197      50-60       5
## 9198      50-60       5
## 9199      30-35       7
## 9200      30-35       7
## 9201      18-30      10
## 9202      35-40       6
## 9203      35-40       6
## 9204      30-35       7
## 9205      18-30      10
## 9206      18-30      10
## 9207      40-50       5
## 9208      18-30      10
## 9209      18-30      10
## 9210      50-60       5
## 9211      18-30      10
## 9212      18-30      10
## 9213        65+       4
## 9214      35-40       6
## 9215      18-30      10
## 9216      18-30      10
## 9217      18-30      10
## 9218        65+       4
## 9219      18-30      10
## 9220      30-35       7
## 9221        65+       4
## 9222      35-40       6
## 9223      40-50       5
## 9224      18-30      10
## 9225      35-40       6
## 9226      18-30      10
## 9227      30-35       7
## 9228      30-35       7
## 9229      30-35       7
## 9230      40-50       5
## 9231      18-30      10
## 9232      30-35       7
## 9233      50-60       5
## 9234      18-30      10
## 9235      18-30      10
## 9236      18-30      10
## 9237      18-30      10
## 9238      18-30      10
## 9239      18-30      10
## 9240      18-30      10
## 9241      30-35       7
## 9242      30-35       7
## 9243      18-30      10
## 9244      50-60       5
## 9245      35-40       6
## 9246      18-30      10
## 9247      50-60       5
## 9248      40-50       5
## 9249      30-35       7
## 9250      18-30      10
## 9251      50-60       5
## 9252      35-40       6
## 9253      30-35       7
## 9254      18-30      10
## 9255      30-35       7
## 9256      30-35       7
## 9257      40-50       5
## 9258      18-30      10
## 9259      18-30      10
## 9260      18-30      10
## 9261      18-30      10
## 9262      18-30      10
## 9263      18-30      10
## 9264      18-30      10
## 9265      18-30      10
## 9266      18-30      10
## 9267      18-30      10
## 9268      18-30      10
## 9269      18-30      10
## 9270      40-50       5
## 9271      18-30      10
## 9272      18-30      10
## 9273      35-40       6
## 9274      30-35       7
## 9275        65+       4
## 9276      18-30      10
## 9277      40-50       5
## 9278      35-40       6
## 9279      18-30      10
## 9280      18-30      10
## 9281        65+       4
## 9282      35-40       6
## 9283      40-50       5
## 9284      30-35       7
## 9285      30-35       7
## 9286      18-30      10
## 9287      50-60       5
## 9288      35-40       6
## 9289      30-35       7
## 9290      40-50       5
## 9291      30-35       7
## 9292      30-35       7
## 9293      18-30      10
## 9294      35-40       6
## 9295      30-35       7
## 9296      18-30      10
## 9297      18-30      10
## 9298      18-30      10
## 9299      18-30      10
## 9300      50-60       5
## 9301      18-30      10
## 9302      30-35       7
## 9303      40-50       5
## 9304      18-30      10
## 9305      50-60       5
## 9306      18-30      10
## 9307      35-40       6
## 9308      40-50       5
## 9309      40-50       5
## 9310      18-30      10
## 9311      30-35       7
## 9312      35-40       6
## 9313      30-35       7
## 9314      18-30      10
## 9315      30-35       7
## 9316      18-30      10
## 9317      18-30      10
## 9318      40-50       5
## 9319      18-30      10
## 9320      40-50       5
## 9321      18-30      10
## 9322      18-30      10
## 9323      18-30      10
## 9324      18-30      10
## 9325      50-60       5
## 9326      18-30      10
## 9327      18-30      10
## 9328      18-30      10
## 9329      18-30      10
## 9330      18-30      10
## 9331      40-50       5
## 9332      50-60       5
## 9333      18-30      10
## 9334      30-35       7
## 9335      18-30      10
## 9336      30-35       7
## 9337      35-40       6
## 9338      18-30      10
## 9339      35-40       6
## 9340      18-30      10
## 9341      18-30      10
## 9342      30-35       7
## 9343      35-40       6
## 9344      50-60       5
## 9345      18-30      10
## 9346      40-50       5
## 9347      18-30      10
## 9348      35-40       6
## 9349      18-30      10
## 9350      18-30      10
## 9351      18-30      10
## 9352      30-35       7
## 9353      18-30      10
## 9354      18-30      10
## 9355      30-35       7
## 9356      18-30      10
## 9357      18-30      10
## 9358      50-60       5
## 9359      18-30      10
## 9360      18-30      10
## 9361      35-40       6
## 9362      18-30      10
## 9363        65+       4
## 9364      18-30      10
## 9365      40-50       5
## 9366      18-30      10
## 9367      30-35       7
## 9368      40-50       5
## 9369      35-40       6
## 9370      18-30      10
## 9371      18-30      10
## 9372      18-30      10
## 9373      30-35       7
## 9374      18-30      10
## 9375      50-60       5
## 9376      50-60       5
## 9377      40-50       5
## 9378      50-60       5
## 9379      18-30      10
## 9380      18-30      10
## 9381      18-30      10
## 9382      18-30      10
## 9383      18-30      10
## 9384      35-40       6
## 9385      18-30      10
## 9386      18-30      10
## 9387      30-35       7
## 9388      18-30      10
## 9389      40-50       5
## 9390      18-30      10
## 9391      18-30      10
## 9392      18-30      10
## 9393      40-50       5
## 9394        65+       4
## 9395      18-30      10
## 9396      18-30      10
## 9397      18-30      10
## 9398      18-30      10
## 9399      30-35       7
## 9400      40-50       5
## 9401      18-30      10
## 9402      35-40       6
## 9403      30-35       7
## 9404      18-30      10
## 9405      18-30      10
## 9406      40-50       5
## 9407      18-30      10
## 9408      18-30      10
## 9409      18-30      10
## 9410      35-40       6
## 9411      30-35       7
## 9412      18-30      10
## 9413      18-30      10
## 9414      18-30      10
## 9415      18-30      10
## 9416      18-30      10
## 9417      35-40       6
## 9418      18-30      10
## 9419      18-30      10
## 9420        65+       4
## 9421      18-30      10
## 9422      18-30      10
## 9423      18-30      10
## 9424      35-40       6
## 9425      40-50       5
## 9426      35-40       6
## 9427      30-35       7
## 9428      18-30      10
## 9429      35-40       6
## 9430      40-50       5
## 9431      35-40       6
## 9432      35-40       6
## 9433      18-30      10
## 9434      30-35       7
## 9435      30-35       7
## 9436      18-30      10
## 9437      40-50       5
## 9438      18-30      10
## 9439      18-30      10
## 9440      18-30      10
## 9441      40-50       5
## 9442      18-30      10
## 9443      18-30      10
## 9444      40-50       5
## 9445      30-35       7
## 9446      30-35       7
## 9447      18-30      10
## 9448      18-30      10
## 9449      30-35       7
## 9450      30-35       7
## 9451      18-30      10
## 9452      30-35       7
## 9453      18-30      10
## 9454      18-30      10
## 9455      30-35       7
## 9456      18-30      10
## 9457      35-40       6
## 9458      18-30      10
## 9459      18-30      10
## 9460      18-30      10
## 9461      18-30      10
## 9462      30-35       7
## 9463      30-35       7
## 9464        65+       4
## 9465      30-35       7
## 9466      18-30      10
## 9467      18-30      10
## 9468      18-30      10
## 9469      18-30      10
## 9470      18-30      10
## 9471      18-30      10
## 9472      18-30      10
## 9473      18-30      10
## 9474      18-30      10
## 9475      30-35       7
## 9476        65+       4
## 9477      18-30      10
## 9478      50-60       5
## 9479      35-40       6
## 9480      18-30      10
## 9481      50-60       5
## 9482      18-30      10
## 9483      18-30      10
## 9484      18-30      10
## 9485      18-30      10
## 9486      30-35       7
## 9487      30-35       7
## 9488      50-60       5
## 9489      18-30      10
## 9490      40-50       5
## 9491      18-30      10
## 9492      30-35       7
## 9493      18-30      10
## 9494      30-35       7
## 9495      18-30      10
## 9496      35-40       6
## 9497      18-30      10
## 9498      18-30      10
## 9499      18-30      10
## 9500      18-30      10
## 9501      18-30      10
## 9502      18-30      10
## 9503      30-35       7
## 9504      30-35       7
## 9505      35-40       6
## 9506      30-35       7
## 9507      40-50       5
## 9508      40-50       5
## 9509        65+       4
## 9510      18-30      10
## 9511      30-35       7
## 9512      30-35       7
## 9513      18-30      10
## 9514      40-50       5
## 9515      40-50       5
## 9516      18-30      10
## 9517      18-30      10
## 9518      30-35       7
## 9519      18-30      10
## 9520      18-30      10
## 9521      30-35       7
## 9522      18-30      10
## 9523      18-30      10
## 9524      18-30      10
## 9525      18-30      10
## 9526      18-30      10
## 9527      35-40       6
## 9528        65+       4
## 9529      30-35       7
## 9530      18-30      10
## 9531      30-35       7
## 9532      18-30      10
## 9533      18-30      10
## 9534      18-30      10
## 9535      30-35       7
## 9536      40-50       5
## 9537      18-30      10
## 9538      18-30      10
## 9539      50-60       5
## 9540      35-40       6
## 9541      30-35       7
## 9542      35-40       6
## 9543      18-30      10
## 9544      40-50       5
## 9545      40-50       5
## 9546      18-30      10
## 9547      30-35       7
## 9548      18-30      10
## 9549      30-35       7
## 9550      40-50       5
## 9551      18-30      10
## 9552      18-30      10
## 9553      18-30      10
## 9554      35-40       6
## 9555      40-50       5
## 9556      50-60       5
## 9557      18-30      10
## 9558      18-30      10
## 9559      40-50       5
## 9560      18-30      10
## 9561      18-30      10
## 9562      40-50       5
## 9563      18-30      10
## 9564      18-30      10
## 9565      18-30      10
## 9566      18-30      10
## 9567      40-50       5
## 9568      30-35       7
## 9569        65+       4
## 9570      50-60       5
## 9571      18-30      10
## 9572      18-30      10
## 9573      18-30      10
## 9574      30-35       7
## 9575      18-30      10
## 9576      18-30      10
## 9577      18-30      10
## 9578      18-30      10
## 9579      30-35       7
## 9580      40-50       5
## 9581      18-30      10
## 9582      18-30      10
## 9583      40-50       5
## 9584      40-50       5
## 9585      18-30      10
## 9586      18-30      10
## 9587      18-30      10
## 9588      18-30      10
## 9589      18-30      10
## 9590      30-35       7
## 9591      18-30      10
## 9592      30-35       7
## 9593      18-30      10
## 9594      18-30      10
## 9595      35-40       6
## 9596      18-30      10
## 9597      18-30      10
## 9598      35-40       6
## 9599      35-40       6
## 9600      18-30      10
## 9601      30-35       7
## 9602      35-40       6
## 9603      30-35       7
## 9604      30-35       7
## 9605      50-60       5
## 9606      18-30      10
## 9607      18-30      10
## 9608      18-30      10
## 9609      30-35       7
## 9610      35-40       6
## 9611      18-30      10
## 9612      40-50       5
## 9613      30-35       7
## 9614      18-30      10
## 9615      35-40       6
## 9616      18-30      10
## 9617      18-30      10
## 9618      18-30      10
## 9619        65+       4
## 9620      18-30      10
## 9621      40-50       5
## 9622      18-30      10
## 9623      40-50       5
## 9624      18-30      10
## 9625      40-50       5
## 9626      18-30      10
## 9627      30-35       7
## 9628      30-35       7
## 9629      18-30      10
## 9630      30-35       7
## 9631      18-30      10
## 9632      18-30      10
## 9633      35-40       6
## 9634      18-30      10
## 9635      18-30      10
## 9636      18-30      10
## 9637      30-35       7
## 9638      18-30      10
## 9639      30-35       7
## 9640      18-30      10
## 9641      18-30      10
## 9642      30-35       7
## 9643      30-35       7
## 9644      18-30      10
## 9645      18-30      10
## 9646      30-35       7
## 9647      18-30      10
## 9648      18-30      10
## 9649      30-35       7
## 9650      18-30      10
## 9651      30-35       7
## 9652      30-35       7
## 9653      18-30      10
## 9654      18-30      10
## 9655      30-35       7
## 9656      40-50       5
## 9657      30-35       7
## 9658      30-35       7
## 9659      18-30      10
## 9660      18-30      10
## 9661      40-50       5
## 9662      18-30      10
## 9663      18-30      10
## 9664      30-35       7
## 9665      30-35       7
## 9666      30-35       7
## 9667      40-50       5
## 9668      18-30      10
## 9669      35-40       6
## 9670      18-30      10
## 9671        65+       4
## 9672      18-30      10
## 9673      18-30      10
## 9674      30-35       7
## 9675      18-30      10
## 9676      18-30      10
## 9677      18-30      10
## 9678      18-30      10
## 9679      18-30      10
## 9680      18-30      10
## 9681      30-35       7
## 9682      50-60       5
## 9683      40-50       5
## 9684        65+       4
## 9685      30-35       7
## 9686      18-30      10
## 9687      18-30      10
## 9688      35-40       6
## 9689      35-40       6
## 9690      40-50       5
## 9691      35-40       6
## 9692      18-30      10
## 9693      50-60       5
## 9694      50-60       5
## 9695      18-30      10
## 9696      40-50       5
## 9697      18-30      10
## 9698      30-35       7
## 9699      18-30      10
## 9700      30-35       7
## 9701      18-30      10
## 9702      18-30      10
## 9703      18-30      10
## 9704      18-30      10
## 9705      40-50       5
## 9706      18-30      10
## 9707      18-30      10
## 9708      18-30      10
## 9709      30-35       7
## 9710      18-30      10
## 9711      35-40       6
## 9712      35-40       6
## 9713      35-40       6
## 9714      35-40       6
## 9715      40-50       5
## 9716      18-30      10
## 9717      30-35       7
## 9718      35-40       6
## 9719      18-30      10
## 9720      30-35       7
## 9721        65+       4
## 9722      18-30      10
## 9723      35-40       6
## 9724      18-30      10
## 9725      30-35       7
## 9726      40-50       5
## 9727      18-30      10
## 9728      18-30      10
## 9729      35-40       6
## 9730      18-30      10
## 9731      30-35       7
## 9732      35-40       6
## 9733      18-30      10
## 9734      18-30      10
## 9735      40-50       5
## 9736      35-40       6
## 9737      18-30      10
## 9738      40-50       5
## 9739      18-30      10
## 9740      18-30      10
## 9741      30-35       7
## 9742      18-30      10
## 9743      18-30      10
## 9744        65+       4
## 9745      30-35       7
## 9746      18-30      10
## 9747      35-40       6
## 9748      50-60       5
## 9749      18-30      10
## 9750      50-60       5
## 9751      18-30      10
## 9752      40-50       5
## 9753      40-50       5
## 9754      30-35       7
## 9755      18-30      10
## 9756      30-35       7
## 9757      18-30      10
## 9758      18-30      10
## 9759      30-35       7
## 9760      18-30      10
## 9761      40-50       5
## 9762      35-40       6
## 9763      18-30      10
## 9764      35-40       6
## 9765      18-30      10
## 9766      18-30      10
## 9767      18-30      10
## 9768      18-30      10
## 9769      18-30      10
## 9770      30-35       7
## 9771      40-50       5
## 9772      18-30      10
## 9773      18-30      10
## 9774      18-30      10
## 9775      40-50       5
## 9776      30-35       7
## 9777      18-30      10
## 9778      35-40       6
## 9779        65+       4
## 9780      18-30      10
## 9781      18-30      10
## 9782      30-35       7
## 9783      18-30      10
## 9784      18-30      10
## 9785      18-30      10
## 9786      30-35       7
## 9787      18-30      10
## 9788      18-30      10
## 9789      18-30      10
## 9790      35-40       6
## 9791      18-30      10
## 9792      18-30      10
## 9793      18-30      10
## 9794      35-40       6
## 9795      18-30      10
## 9796      30-35       7
## 9797      30-35       7
## 9798      18-30      10
## 9799      18-30      10
## 9800      18-30      10
## 9801      40-50       5
## 9802      18-30      10
## 9803      18-30      10
## 9804      30-35       7
## 9805      18-30      10
## 9806      18-30      10
## 9807      18-30      10
## 9808      35-40       6
## 9809      40-50       5
## 9810      18-30      10
## 9811      18-30      10
## 9812        65+       4
## 9813        65+       4
## 9814      18-30      10
## 9815      30-35       7
## 9816      18-30      10
## 9817      18-30      10
## 9818      40-50       5
## 9819      40-50       5
## 9820      30-35       7
## 9821      18-30      10
## 9822      30-35       7
## 9823      30-35       7
## 9824      18-30      10
## 9825      18-30      10
## 9826      35-40       6
## 9827      18-30      10
## 9828      40-50       5
## 9829      18-30      10
## 9830      18-30      10
## 9831      35-40       6
## 9832      18-30      10
## 9833      30-35       7
## 9834      30-35       7
## 9835      40-50       5
## 9836      18-30      10
## 9837      18-30      10
## 9838      18-30      10
## 9839      18-30      10
## 9840      18-30      10
## 9841      35-40       6
## 9842      35-40       6
## 9843      18-30      10
## 9844      18-30      10
## 9845      18-30      10
## 9846      30-35       7
## 9847      18-30      10
## 9848      18-30      10
## 9849      30-35       7
## 9850      40-50       5
## 9851      18-30      10
## 9852      18-30      10
## 9853      40-50       5
## 9854      18-30      10
## 9855      30-35       7
## 9856      18-30      10
## 9857      40-50       5
## 9858      35-40       6
## 9859      30-35       7
## 9860      30-35       7
## 9861      18-30      10
## 9862      30-35       7
## 9863      18-30      10
## 9864      30-35       7
## 9865      18-30      10
## 9866      30-35       7
## 9867      30-35       7
## 9868      18-30      10
## 9869      18-30      10
## 9870      30-35       7
## 9871      18-30      10
## 9872      18-30      10
## 9873      30-35       7
## 9874      18-30      10
## 9875      18-30      10
## 9876      18-30      10
## 9877      18-30      10
## 9878      18-30      10
## 9879      18-30      10
## 9880      18-30      10
## 9881      18-30      10
## 9882      18-30      10
## 9883      18-30      10
## 9884      40-50       5
## 9885      18-30      10
## 9886      35-40       6
## 9887      18-30      10
## 9888      18-30      10
## 9889      35-40       6
## 9890      18-30      10
## 9891      35-40       6
## 9892      18-30      10
## 9893      18-30      10
## 9894      18-30      10
## 9895      35-40       6
## 9896      40-50       5
## 9897      18-30      10
## 9898      30-35       7
## 9899      18-30      10
## 9900      30-35       7
## 9901      40-50       5
## 9902      18-30      10
## 9903      18-30      10
## 9904      30-35       7
## 9905      30-35       7
## 9906      18-30      10
## 9907      18-30      10
## 9908      30-35       7
## 9909      18-30      10
## 9910      18-30      10
## 9911      18-30      10
## 9912      18-30      10
## 9913      18-30      10
## 9914      50-60       5
## 9915      40-50       5
## 9916      18-30      10
## 9917      35-40       6
## 9918      18-30      10
## 9919      35-40       6
## 9920      18-30      10
## 9921      30-35       7
## 9922      18-30      10
## 9923      35-40       6
## 9924      18-30      10
## 9925      18-30      10
## 9926      18-30      10
## 9927      40-50       5
## 9928      18-30      10
## 9929      30-35       7
## 9930      40-50       5
## 9931      40-50       5
## 9932      18-30      10
## 9933      40-50       5
## 9934      18-30      10
## 9935      30-35       7
## 9936      35-40       6
## 9937      18-30      10
## 9938      35-40       6
## 9939      18-30      10
## 9940      18-30      10
## 9941      18-30      10
## 9942      30-35       7
## 9943      18-30      10
## 9944      18-30      10
## 9945      18-30      10
## 9946      18-30      10
## 9947      40-50       5
## 9948      18-30      10
## 9949      50-60       5
## 9950      35-40       6
## 9951      40-50       5
## 9952      30-35       7
## 9953      18-30      10
## 9954      50-60       5
## 9955      35-40       6
## 9956      18-30      10
## 9957      18-30      10
## 9958      40-50       5
## 9959      40-50       5
## 9960      30-35       7
## 9961      40-50       5
## 9962      35-40       6
## 9963      18-30      10
## 9964      40-50       5
## 9965      18-30      10
## 9966      18-30      10
## 9967      18-30      10
## 9968      18-30      10
## 9969      18-30      10
## 9970      18-30      10
## 9971      18-30      10
## 9972      18-30      10
## 9973      30-35       7
## 9974      30-35       7
## 9975      18-30      10
## 9976      50-60       5
## 9977      18-30      10
## 9978      18-30      10
## 9979      18-30      10
## 9980      18-30      10
## 9981      18-30      10
## 9982      18-30      10
## 9983      18-30      10
## 9984      30-35       7
## 9985      18-30      10
## 9986      18-30      10
## 9987      50-60       5
## 9988      18-30      10
## 9989      18-30      10
## 9990      18-30      10
## 9991      30-35       7
## 9992      18-30      10
## 9993      35-40       6
## 9994      35-40       6
## 9995      18-30      10
## 9996      18-30      10
## 9997      18-30      10
## 9998      18-30      10
## 9999      40-50       5
## 10000     18-30      10
## 10001     50-60       5
## 10002     18-30      10
## 10003     35-40       6
## 10004     18-30      10
## 10005     18-30      10
## 10006     18-30      10
## 10007     18-30      10
## 10008     30-35       7
## 10009     35-40       6
## 10010     30-35       7
## 10011     18-30      10
## 10012     50-60       5
## 10013     18-30      10
## 10014     40-50       5
## 10015     18-30      10
## 10016     18-30      10
## 10017     35-40       6
## 10018     18-30      10
## 10019     35-40       6
## 10020     18-30      10
## 10021     18-30      10
## 10022     35-40       6
## 10023     18-30      10
## 10024     18-30      10
## 10025     35-40       6
## 10026     18-30      10
## 10027     30-35       7
## 10028     35-40       6
## 10029     35-40       6
## 10030     18-30      10
## 10031     18-30      10
## 10032     18-30      10
## 10033     18-30      10
## 10034     18-30      10
## 10035     50-60       5
## 10036     18-30      10
## 10037     18-30      10
## 10038     40-50       5
## 10039     30-35       7
## 10040     18-30      10
## 10041     18-30      10
## 10042     18-30      10
## 10043     35-40       6
## 10044     35-40       6
## 10045     40-50       5
## 10046     18-30      10
## 10047     18-30      10
## 10048     50-60       5
## 10049     40-50       5
## 10050     50-60       5
## 10051     18-30      10
## 10052     35-40       6
## 10053     30-35       7
## 10054     40-50       5
## 10055     18-30      10
## 10056     18-30      10
## 10057     18-30      10
## 10058     18-30      10
## 10059     18-30      10
## 10060     50-60       5
## 10061     30-35       7
## 10062     40-50       5
## 10063     18-30      10
## 10064     40-50       5
## 10065     18-30      10
## 10066     30-35       7
## 10067     18-30      10
## 10068     30-35       7
## 10069     18-30      10
## 10070     35-40       6
## 10071     30-35       7
## 10072     30-35       7
## 10073     18-30      10
## 10074     18-30      10
## 10075     40-50       5
## 10076     18-30      10
## 10077     18-30      10
## 10078     40-50       5
## 10079     18-30      10
## 10080     40-50       5
## 10081     18-30      10
## 10082     18-30      10
## 10083     50-60       5
## 10084     18-30      10
## 10085     35-40       6
## 10086     18-30      10
## 10087     18-30      10
## 10088     18-30      10
## 10089     30-35       7
## 10090     18-30      10
## 10091     30-35       7
## 10092     30-35       7
## 10093     50-60       5
## 10094     40-50       5
## 10095     30-35       7
## 10096     18-30      10
## 10097     40-50       5
## 10098     40-50       5
## 10099     18-30      10
## 10100     40-50       5
## 10101     40-50       5
## 10102     30-35       7
## 10103     18-30      10
## 10104     18-30      10
## 10105     35-40       6
## 10106     18-30      10
## 10107     40-50       5
## 10108     30-35       7
## 10109     30-35       7
## 10110     18-30      10
## 10111     18-30      10
## 10112     18-30      10
## 10113       65+       4
## 10114     18-30      10
## 10115     18-30      10
## 10116     18-30      10
## 10117     18-30      10
## 10118     18-30      10
## 10119     18-30      10
## 10120     18-30      10
## 10121     18-30      10
## 10122     18-30      10
## 10123     35-40       6
## 10124     18-30      10
## 10125     18-30      10
## 10126     50-60       5
## 10127     30-35       7
## 10128     18-30      10
## 10129     30-35       7
## 10130     18-30      10
## 10131     30-35       7
## 10132     35-40       6
## 10133     40-50       5
## 10134     18-30      10
## 10135     30-35       7
## 10136     35-40       6
## 10137     30-35       7
## 10138     30-35       7
## 10139     30-35       7
## 10140     35-40       6
## 10141     18-30      10
## 10142       65+       4
## 10143     30-35       7
## 10144       65+       4
## 10145     18-30      10
## 10146     35-40       6
## 10147     50-60       5
## 10148     18-30      10
## 10149     30-35       7
## 10150     40-50       5
## 10151     50-60       5
## 10152     35-40       6
## 10153     18-30      10
## 10154     18-30      10
## 10155     50-60       5
## 10156     40-50       5
## 10157     50-60       5
## 10158     30-35       7
## 10159     35-40       6
## 10160     18-30      10
## 10161     35-40       6
## 10162     18-30      10
## 10163     40-50       5
## 10164     30-35       7
## 10165     40-50       5
## 10166     50-60       5
## 10167     18-30      10
## 10168     18-30      10
## 10169     30-35       7
## 10170     40-50       5
## 10171     35-40       6
## 10172     35-40       6
## 10173     18-30      10
## 10174     18-30      10
## 10175     40-50       5
## 10176     18-30      10
## 10177     18-30      10
## 10178     35-40       6
## 10179     18-30      10
## 10180     18-30      10
## 10181     18-30      10
## 10182     18-30      10
## 10183     18-30      10
## 10184     18-30      10
## 10185     18-30      10
## 10186     35-40       6
## 10187     18-30      10
## 10188     18-30      10
## 10189     18-30      10
## 10190     18-30      10
## 10191     30-35       7
## 10192     18-30      10
## 10193     18-30      10
## 10194     30-35       7
## 10195     18-30      10
## 10196     18-30      10
## 10197     30-35       7
## 10198     18-30      10
## 10199     18-30      10
## 10200     18-30      10
## 10201     30-35       7
## 10202     40-50       5
## 10203     50-60       5
## 10204     50-60       5
## 10205     50-60       5
## 10206     18-30      10
## 10207     35-40       6
## 10208     30-35       7
## 10209     18-30      10
## 10210     18-30      10
## 10211     18-30      10
## 10212     18-30      10
## 10213     18-30      10
## 10214     40-50       5
## 10215     18-30      10
## 10216     18-30      10
## 10217     35-40       6
## 10218     18-30      10
## 10219     35-40       6
## 10220     30-35       7
## 10221     30-35       7
## 10222     30-35       7
## 10223     40-50       5
## 10224     30-35       7
## 10225     18-30      10
## 10226     18-30      10
## 10227     30-35       7
## 10228     30-35       7
## 10229     30-35       7
## 10230     18-30      10
## 10231     40-50       5
## 10232     18-30      10
## 10233     18-30      10
## 10234     18-30      10
## 10235     30-35       7
## 10236     30-35       7
## 10237     30-35       7
## 10238     18-30      10
## 10239     18-30      10
## 10240     18-30      10
## 10241     30-35       7
## 10242     18-30      10
## 10243     35-40       6
## 10244     18-30      10
## 10245     18-30      10
## 10246     50-60       5
## 10247     18-30      10
## 10248     30-35       7
## 10249     35-40       6
## 10250     30-35       7
## 10251     40-50       5
## 10252     40-50       5
## 10253     30-35       7
## 10254     18-30      10
## 10255     18-30      10
## 10256     18-30      10
## 10257     18-30      10
## 10258     18-30      10
## 10259     30-35       7
## 10260     30-35       7
## 10261     18-30      10
## 10262     18-30      10
## 10263     18-30      10
## 10264     18-30      10
## 10265     18-30      10
## 10266     18-30      10
## 10267     18-30      10
## 10268     18-30      10
## 10269     18-30      10
## 10270     18-30      10
## 10271     18-30      10
## 10272     18-30      10
## 10273     30-35       7
## 10274     18-30      10
## 10275     18-30      10
## 10276     18-30      10
## 10277     30-35       7
## 10278     40-50       5
## 10279     18-30      10
## 10280     18-30      10
## 10281     18-30      10
## 10282     35-40       6
## 10283     18-30      10
## 10284     35-40       6
## 10285     18-30      10
## 10286     35-40       6
## 10287     50-60       5
## 10288     18-30      10
## 10289     35-40       6
## 10290     18-30      10
## 10291     18-30      10
## 10292     30-35       7
## 10293     50-60       5
## 10294     35-40       6
## 10295     40-50       5
## 10296     18-30      10
## 10297     18-30      10
## 10298     18-30      10
## 10299     18-30      10
## 10300     35-40       6
## 10301     18-30      10
## 10302     35-40       6
## 10303     18-30      10
## 10304     30-35       7
## 10305     30-35       7
## 10306     30-35       7
## 10307     35-40       6
## 10308     18-30      10
## 10309     50-60       5
## 10310     18-30      10
## 10311     30-35       7
## 10312     30-35       7
## 10313     18-30      10
## 10314     18-30      10
## 10315     30-35       7
## 10316     18-30      10
## 10317     40-50       5
## 10318     40-50       5
## 10319     18-30      10
## 10320     30-35       7
## 10321     18-30      10
## 10322     40-50       5
## 10323     40-50       5
## 10324     30-35       7
## 10325     40-50       5
## 10326     18-30      10
## 10327     18-30      10
## 10328     18-30      10
## 10329     30-35       7
## 10330     18-30      10
## 10331     40-50       5
## 10332       65+       4
## 10333     18-30      10
## 10334     18-30      10
## 10335     40-50       5
## 10336     35-40       6
## 10337     18-30      10
## 10338     18-30      10
## 10339     35-40       6
## 10340     30-35       7
## 10341     18-30      10
## 10342     40-50       5
## 10343     35-40       6
## 10344     18-30      10
## 10345     18-30      10
## 10346     30-35       7
## 10347     40-50       5
## 10348     35-40       6
## 10349     30-35       7
## 10350     18-30      10
## 10351     18-30      10
## 10352     18-30      10
## 10353     40-50       5
## 10354     50-60       5
## 10355     18-30      10
## 10356     30-35       7
## 10357     30-35       7
## 10358     18-30      10
## 10359     18-30      10
## 10360     18-30      10
## 10361     18-30      10
## 10362     30-35       7
## 10363     18-30      10
## 10364     40-50       5
## 10365     18-30      10
## 10366     18-30      10
## 10367     40-50       5
## 10368     18-30      10
## 10369     18-30      10
## 10370     18-30      10
## 10371     40-50       5
## 10372     30-35       7
## 10373     35-40       6
## 10374     18-30      10
## 10375       65+       4
## 10376     40-50       5
## 10377     18-30      10
## 10378     30-35       7
## 10379     18-30      10
## 10380     18-30      10
## 10381     40-50       5
## 10382     18-30      10
## 10383     18-30      10
## 10384     40-50       5
## 10385     30-35       7
## 10386     40-50       5
## 10387     50-60       5
## 10388     30-35       7
## 10389     18-30      10
## 10390     18-30      10
## 10391     30-35       7
## 10392     40-50       5
## 10393     18-30      10
## 10394     30-35       7
## 10395     18-30      10
## 10396     30-35       7
## 10397     35-40       6
## 10398     18-30      10
## 10399     18-30      10
## 10400     30-35       7
## 10401     50-60       5
## 10402     18-30      10
## 10403     30-35       7
## 10404     40-50       5
## 10405     18-30      10
## 10406     30-35       7
## 10407     30-35       7
## 10408     30-35       7
## 10409     30-35       7
## 10410     40-50       5
## 10411     40-50       5
## 10412     18-30      10
## 10413     18-30      10
## 10414     18-30      10
## 10415     18-30      10
## 10416     40-50       5
## 10417     18-30      10
## 10418     18-30      10
## 10419     18-30      10
## 10420     18-30      10
## 10421     30-35       7
## 10422     18-30      10
## 10423     30-35       7
## 10424     18-30      10
## 10425     18-30      10
## 10426     18-30      10
## 10427     18-30      10
## 10428     18-30      10
## 10429     18-30      10
## 10430     18-30      10
## 10431     18-30      10
## 10432       65+       4
## 10433     35-40       6
## 10434     40-50       5
## 10435     30-35       7
## 10436     18-30      10
## 10437     35-40       6
## 10438     18-30      10
## 10439     18-30      10
## 10440     30-35       7
## 10441     18-30      10
## 10442     30-35       7
## 10443     18-30      10
## 10444     35-40       6
## 10445     18-30      10
## 10446     30-35       7
## 10447     18-30      10
## 10448     18-30      10
## 10449     50-60       5
## 10450     30-35       7
## 10451     18-30      10
## 10452     18-30      10
## 10453     18-30      10
## 10454     18-30      10
## 10455     18-30      10
## 10456     30-35       7
## 10457     40-50       5
## 10458     18-30      10
## 10459     35-40       6
## 10460     18-30      10
## 10461     30-35       7
## 10462     18-30      10
## 10463     18-30      10
## 10464     18-30      10
## 10465     18-30      10
## 10466     30-35       7
## 10467     18-30      10
## 10468     18-30      10
## 10469     18-30      10
## 10470     18-30      10
## 10471     18-30      10
## 10472     18-30      10
## 10473     50-60       5
## 10474     50-60       5
## 10475     30-35       7
## 10476     18-30      10
## 10477     30-35       7
## 10478     18-30      10
## 10479     35-40       6
## 10480     30-35       7
## 10481     40-50       5
## 10482     30-35       7
## 10483     18-30      10
## 10484     18-30      10
## 10485     50-60       5
## 10486     18-30      10
## 10487       65+       4
## 10488     18-30      10
## 10489     18-30      10
## 10490     18-30      10
## 10491     30-35       7
## 10492     18-30      10
## 10493     18-30      10
## 10494     18-30      10
## 10495     18-30      10
## 10496     18-30      10
## 10497     18-30      10
## 10498     18-30      10
## 10499     18-30      10
## 10500     18-30      10
## 10501     30-35       7
## 10502     35-40       6
## 10503     18-30      10
## 10504     18-30      10
## 10505     30-35       7
## 10506     18-30      10
## 10507     18-30      10
## 10508     18-30      10
## 10509     30-35       7
## 10510     30-35       7
## 10511     18-30      10
## 10512     30-35       7
## 10513     18-30      10
## 10514     35-40       6
## 10515     18-30      10
## 10516     18-30      10
## 10517     30-35       7
## 10518     30-35       7
## 10519     30-35       7
## 10520     30-35       7
## 10521     30-35       7
## 10522     18-30      10
## 10523     30-35       7
## 10524     18-30      10
## 10525     30-35       7
## 10526     35-40       6
## 10527     18-30      10
## 10528     18-30      10
## 10529     18-30      10
## 10530     30-35       7
## 10531     18-30      10
## 10532     30-35       7
## 10533     18-30      10
## 10534     50-60       5
## 10535     40-50       5
## 10536     18-30      10
## 10537     35-40       6
## 10538     18-30      10
## 10539     18-30      10
## 10540     18-30      10
## 10541     18-30      10
## 10542     18-30      10
## 10543     40-50       5
## 10544     18-30      10
## 10545     30-35       7
## 10546     35-40       6
## 10547     40-50       5
## 10548     18-30      10
## 10549     18-30      10
## 10550     30-35       7
## 10551     18-30      10
## 10552     18-30      10
## 10553     30-35       7
## 10554     35-40       6
## 10555     18-30      10
## 10556     30-35       7
## 10557     40-50       5
## 10558     18-30      10
## 10559       65+       4
## 10560     35-40       6
## 10561     35-40       6
## 10562     50-60       5
## 10563     18-30      10
## 10564     30-35       7
## 10565     35-40       6
## 10566     30-35       7
## 10567     35-40       6
## 10568     18-30      10
## 10569     18-30      10
## 10570     40-50       5
## 10571     18-30      10
## 10572     18-30      10
## 10573     40-50       5
## 10574     30-35       7
## 10575     18-30      10
## 10576     18-30      10
## 10577     18-30      10
## 10578     18-30      10
## 10579     30-35       7
## 10580     18-30      10
## 10581     18-30      10
## 10582     35-40       6
## 10583     18-30      10
## 10584     18-30      10
## 10585     18-30      10
## 10586     18-30      10
## 10587     35-40       6
## 10588     18-30      10
## 10589     35-40       6
## 10590     18-30      10
## 10591     18-30      10
## 10592     30-35       7
## 10593     18-30      10
## 10594     40-50       5
## 10595     18-30      10
## 10596     30-35       7
## 10597     18-30      10
## 10598     50-60       5
## 10599     18-30      10
## 10600     30-35       7
## 10601     18-30      10
## 10602     40-50       5
## 10603     18-30      10
## 10604     18-30      10
## 10605     18-30      10
## 10606     40-50       5
## 10607     18-30      10
## 10608     18-30      10
## 10609     18-30      10
## 10610     18-30      10
## 10611     18-30      10
## 10612     18-30      10
## 10613     18-30      10
## 10614     18-30      10
## 10615     18-30      10
## 10616     30-35       7
## 10617     18-30      10
## 10618     18-30      10
## 10619     30-35       7
## 10620     18-30      10
## 10621     18-30      10
## 10622     18-30      10
## 10623     18-30      10
## 10624     18-30      10
## 10625     18-30      10
## 10626     18-30      10
## 10627     18-30      10
## 10628     30-35       7
## 10629     18-30      10
## 10630     18-30      10
## 10631     40-50       5
## 10632     30-35       7
## 10633     40-50       5
## 10634     30-35       7
## 10635     30-35       7
## 10636     18-30      10
## 10637     18-30      10
## 10638     18-30      10
## 10639     18-30      10
## 10640     40-50       5
## 10641     35-40       6
## 10642     18-30      10
## 10643     40-50       5
## 10644     18-30      10
## 10645     30-35       7
## 10646     18-30      10
## 10647     40-50       5
## 10648     30-35       7
## 10649     18-30      10
## 10650     30-35       7
## 10651     30-35       7
## 10652     40-50       5
## 10653     18-30      10
## 10654     18-30      10
## 10655     18-30      10
## 10656     18-30      10
## 10657     18-30      10
## 10658     35-40       6
## 10659     18-30      10
## 10660     18-30      10
## 10661     30-35       7
## 10662     18-30      10
## 10663     18-30      10
## 10664     30-35       7
## 10665     30-35       7
## 10666     18-30      10
## 10667     18-30      10
## 10668     18-30      10
## 10669     18-30      10
## 10670     18-30      10
## 10671     40-50       5
## 10672     18-30      10
## 10673     18-30      10
## 10674     30-35       7
## 10675     18-30      10
## 10676     35-40       6
## 10677     18-30      10
## 10678     18-30      10
## 10679     18-30      10
## 10680     18-30      10
## 10681     30-35       7
## 10682     18-30      10
## 10683     18-30      10
## 10684     18-30      10
## 10685     18-30      10
## 10686     18-30      10
## 10687     30-35       7
## 10688     40-50       5
## 10689     18-30      10
## 10690     18-30      10
## 10691     30-35       7
## 10692     30-35       7
## 10693     50-60       5
## 10694     18-30      10
## 10695     40-50       5
## 10696     18-30      10
## 10697     40-50       5
## 10698     18-30      10
## 10699     30-35       7
## 10700     18-30      10
## 10701     30-35       7
## 10702     18-30      10
## 10703     18-30      10
## 10704     18-30      10
## 10705     40-50       5
## 10706     40-50       5
## 10707     35-40       6
## 10708     30-35       7
## 10709     40-50       5
## 10710     18-30      10
## 10711     18-30      10
## 10712     18-30      10
## 10713     18-30      10
## 10714     18-30      10
## 10715     40-50       5
## 10716     30-35       7
## 10717     30-35       7
## 10718     30-35       7
## 10719     40-50       5
## 10720     18-30      10
## 10721       65+       4
## 10722     40-50       5
## 10723     30-35       7
## 10724     18-30      10
## 10725     35-40       6
## 10726     18-30      10
## 10727     18-30      10
## 10728     30-35       7
## 10729     18-30      10
## 10730     18-30      10
## 10731     50-60       5
## 10732       65+       4
## 10733     50-60       5
## 10734     30-35       7
## 10735     18-30      10
## 10736     35-40       6
## 10737     30-35       7
## 10738     18-30      10
## 10739     18-30      10
## 10740     18-30      10
## 10741     18-30      10
## 10742     30-35       7
## 10743     18-30      10
## 10744     18-30      10
## 10745     18-30      10
## 10746     30-35       7
## 10747     18-30      10
## 10748     18-30      10
## 10749     30-35       7
## 10750     18-30      10
## 10751     35-40       6
## 10752     30-35       7
## 10753     30-35       7
## 10754     18-30      10
## 10755     50-60       5
## 10756     30-35       7
## 10757     40-50       5
## 10758     18-30      10
## 10759     40-50       5
## 10760     35-40       6
## 10761     18-30      10
## 10762     18-30      10
## 10763     18-30      10
## 10764     30-35       7
## 10765     18-30      10
## 10766     18-30      10
## 10767     30-35       7
## 10768       65+       4
## 10769     35-40       6
## 10770     40-50       5
## 10771     18-30      10
## 10772     18-30      10
## 10773     18-30      10
## 10774     18-30      10
## 10775     18-30      10
## 10776     18-30      10
## 10777     18-30      10
## 10778     18-30      10
## 10779     18-30      10
## 10780     40-50       5
## 10781     18-30      10
## 10782     18-30      10
## 10783     30-35       7
## 10784     18-30      10
## 10785     18-30      10
## 10786     50-60       5
## 10787     35-40       6
## 10788     30-35       7
## 10789     18-30      10
## 10790     18-30      10
## 10791     40-50       5
## 10792     18-30      10
## 10793     30-35       7
## 10794     18-30      10
## 10795     40-50       5
## 10796     35-40       6
## 10797     50-60       5
## 10798     35-40       6
## 10799     30-35       7
## 10800       65+       4
## 10801     18-30      10
## 10802     40-50       5
## 10803     40-50       5
## 10804     50-60       5
## 10805     18-30      10
## 10806     18-30      10
## 10807     30-35       7
## 10808     18-30      10
## 10809     18-30      10
## 10810     18-30      10
## 10811     18-30      10
## 10812     18-30      10
## 10813     35-40       6
## 10814     35-40       6
## 10815     30-35       7
## 10816     50-60       5
## 10817     18-30      10
## 10818     30-35       7
## 10819     18-30      10
## 10820     35-40       6
## 10821     30-35       7
## 10822     18-30      10
## 10823     18-30      10
## 10824     40-50       5
## 10825     30-35       7
## 10826     18-30      10
## 10827     18-30      10
## 10828     30-35       7
## 10829     18-30      10
## 10830     18-30      10
## 10831     18-30      10
## 10832     35-40       6
## 10833     30-35       7
## 10834     30-35       7
## 10835     30-35       7
## 10836     18-30      10
## 10837     18-30      10
## 10838     30-35       7
## 10839     40-50       5
## 10840     18-30      10
## 10841     40-50       5
## 10842     30-35       7
## 10843     18-30      10
## 10844     18-30      10
## 10845     30-35       7
## 10846     18-30      10
## 10847     18-30      10
## 10848     18-30      10
## 10849     50-60       5
## 10850     30-35       7
## 10851     18-30      10
## 10852     18-30      10
## 10853     50-60       5
## 10854     30-35       7
## 10855     35-40       6
## 10856     18-30      10
## 10857     18-30      10
## 10858     35-40       6
## 10859     18-30      10
## 10860     40-50       5
## 10861     30-35       7
## 10862     30-35       7
## 10863     40-50       5
## 10864     18-30      10
## 10865     35-40       6
## 10866     18-30      10
## 10867     40-50       5
## 10868     40-50       5
## 10869     18-30      10
## 10870     35-40       6
## 10871     18-30      10
## 10872     18-30      10
## 10873     50-60       5
## 10874     50-60       5
## 10875       65+       4
## 10876     18-30      10
## 10877     18-30      10
## 10878     40-50       5
## 10879     18-30      10
## 10880       65+       4
## 10881     40-50       5
## 10882     18-30      10
## 10883     18-30      10
## 10884     35-40       6
## 10885     18-30      10
## 10886     50-60       5
## 10887     18-30      10
## 10888     40-50       5
## 10889     18-30      10
## 10890     35-40       6
## 10891     30-35       7
## 10892     35-40       6
## 10893     18-30      10
## 10894       65+       4
## 10895     30-35       7
## 10896     40-50       5
## 10897     30-35       7
## 10898     30-35       7
## 10899     18-30      10
## 10900     35-40       6
## 10901     18-30      10
## 10902     40-50       5
## 10903     35-40       6
## 10904     40-50       5
## 10905     40-50       5
## 10906     30-35       7
## 10907     30-35       7
## 10908     40-50       5
## 10909     18-30      10
## 10910     35-40       6
## 10911     18-30      10
## 10912     18-30      10
## 10913     40-50       5
## 10914     18-30      10
## 10915     18-30      10
## 10916     30-35       7
## 10917     40-50       5
## 10918     40-50       5
## 10919     18-30      10
## 10920     18-30      10
## 10921     18-30      10
## 10922     50-60       5
## 10923     18-30      10
## 10924     18-30      10
## 10925     18-30      10
## 10926     18-30      10
## 10927     18-30      10
## 10928     18-30      10
## 10929     18-30      10
## 10930     18-30      10
## 10931     50-60       5
## 10932     35-40       6
## 10933     35-40       6
## 10934     18-30      10
## 10935     18-30      10
## 10936     18-30      10
## 10937     18-30      10
## 10938     18-30      10
## 10939     18-30      10
## 10940     18-30      10
## 10941     18-30      10
## 10942     50-60       5
## 10943     30-35       7
## 10944     18-30      10
## 10945     18-30      10
## 10946     35-40       6
## 10947     18-30      10
## 10948     40-50       5
## 10949     18-30      10
## 10950     30-35       7
## 10951     30-35       7
## 10952     35-40       6
## 10953     18-30      10
## 10954     30-35       7
## 10955     30-35       7
## 10956     18-30      10
## 10957     35-40       6
## 10958     30-35       7
## 10959     18-30      10
## 10960     50-60       5
## 10961     18-30      10
## 10962     35-40       6
## 10963     35-40       6
## 10964     18-30      10
## 10965     30-35       7
## 10966     30-35       7
## 10967     18-30      10
## 10968       65+       4
## 10969     18-30      10
## 10970     18-30      10
## 10971     18-30      10
## 10972     18-30      10
## 10973     18-30      10
## 10974     18-30      10
## 10975     18-30      10
## 10976     18-30      10
## 10977     18-30      10
## 10978     30-35       7
## 10979     35-40       6
## 10980     18-30      10
## 10981     30-35       7
## 10982     18-30      10
## 10983     30-35       7
## 10984     35-40       6
## 10985     18-30      10
## 10986     30-35       7
## 10987     18-30      10
## 10988     30-35       7
## 10989     35-40       6
## 10990     18-30      10
## 10991     18-30      10
## 10992     18-30      10
## 10993     18-30      10
## 10994     30-35       7
## 10995     18-30      10
## 10996     18-30      10
## 10997     18-30      10
## 10998     18-30      10
## 10999     18-30      10
## 11000     30-35       7
## 11001     30-35       7
## 11002     18-30      10
## 11003     18-30      10
## 11004     18-30      10
## 11005     35-40       6
## 11006     18-30      10
## 11007     18-30      10
## 11008     18-30      10
## 11009     18-30      10
## 11010     18-30      10
## 11011     18-30      10
## 11012     40-50       5
## 11013     18-30      10
## 11014       65+       4
## 11015     18-30      10
## 11016     18-30      10
## 11017     40-50       5
## 11018     35-40       6
## 11019     40-50       5
## 11020     30-35       7
## 11021     18-30      10
## 11022     35-40       6
## 11023     18-30      10
## 11024     35-40       6
## 11025     18-30      10
## 11026     30-35       7
## 11027     18-30      10
## 11028     18-30      10
## 11029     18-30      10
## 11030     18-30      10
## 11031     35-40       6
## 11032     40-50       5
## 11033     40-50       5
## 11034     35-40       6
## 11035     40-50       5
## 11036     18-30      10
## 11037     18-30      10
## 11038     30-35       7
## 11039     18-30      10
## 11040     18-30      10
## 11041       65+       4
## 11042     18-30      10
## 11043     18-30      10
## 11044     40-50       5
## 11045     35-40       6
## 11046     30-35       7
## 11047     30-35       7
## 11048     18-30      10
## 11049     35-40       6
## 11050     30-35       7
## 11051     18-30      10
## 11052       65+       4
## 11053     35-40       6
## 11054     18-30      10
## 11055     35-40       6
## 11056     30-35       7
## 11057       65+       4
## 11058     18-30      10
## 11059     30-35       7
## 11060     18-30      10
## 11061     18-30      10
## 11062     18-30      10
## 11063     35-40       6
## 11064     40-50       5
## 11065     18-30      10
## 11066     18-30      10
## 11067     30-35       7
## 11068     50-60       5
## 11069     18-30      10
## 11070     18-30      10
## 11071     18-30      10
## 11072     18-30      10
## 11073     18-30      10
## 11074     18-30      10
## 11075     18-30      10
## 11076     18-30      10
## 11077     18-30      10
## 11078     30-35       7
## 11079     18-30      10
## 11080     18-30      10
## 11081     40-50       5
## 11082     18-30      10
## 11083     18-30      10
## 11084     40-50       5
## 11085     18-30      10
## 11086     18-30      10
## 11087     35-40       6
## 11088     30-35       7
## 11089     18-30      10
## 11090     50-60       5
## 11091     18-30      10
## 11092     50-60       5
## 11093     18-30      10
## 11094     18-30      10
## 11095     18-30      10
## 11096     18-30      10
## 11097     30-35       7
## 11098     18-30      10
## 11099     18-30      10
## 11100     18-30      10
## 11101     18-30      10
## 11102     30-35       7
## 11103     18-30      10
## 11104     50-60       5
## 11105     30-35       7
## 11106     40-50       5
## 11107     30-35       7
## 11108     50-60       5
## 11109     18-30      10
## 11110     18-30      10
## 11111     18-30      10
## 11112     30-35       7
## 11113     50-60       5
## 11114     50-60       5
## 11115       65+       4
## 11116     50-60       5
## 11117     18-30      10
## 11118     18-30      10
## 11119     18-30      10
## 11120     30-35       7
## 11121     18-30      10
## 11122     30-35       7
## 11123     18-30      10
## 11124     18-30      10
## 11125     18-30      10
## 11126     18-30      10
## 11127     18-30      10
## 11128     18-30      10
## 11129     40-50       5
## 11130     35-40       6
## 11131     40-50       5
## 11132     30-35       7
## 11133     30-35       7
## 11134     50-60       5
## 11135     18-30      10
## 11136     30-35       7
## 11137     35-40       6
## 11138     35-40       6
## 11139     35-40       6
## 11140     30-35       7
## 11141     50-60       5
## 11142     50-60       5
## 11143     18-30      10
## 11144     18-30      10
## 11145     18-30      10
## 11146     18-30      10
## 11147     18-30      10
## 11148     30-35       7
## 11149     30-35       7
## 11150     18-30      10
## 11151     18-30      10
## 11152     18-30      10
## 11153     18-30      10
## 11154     30-35       7
## 11155     30-35       7
## 11156     40-50       5
## 11157     18-30      10
## 11158     50-60       5
## 11159     50-60       5
## 11160     35-40       6
## 11161     18-30      10
## 11162     18-30      10
## 11163     50-60       5
## 11164     50-60       5
## 11165     35-40       6
## 11166     18-30      10
## 11167     18-30      10
## 11168     18-30      10
## 11169     18-30      10
## 11170     30-35       7
## 11171     18-30      10
## 11172     18-30      10
## 11173     18-30      10
## 11174     35-40       6
## 11175     18-30      10
## 11176     18-30      10
## 11177     30-35       7
## 11178     18-30      10
## 11179     40-50       5
## 11180     18-30      10
## 11181     18-30      10
## 11182     18-30      10
## 11183     18-30      10
## 11184     18-30      10
## 11185     30-35       7
## 11186     30-35       7
## 11187     18-30      10
## 11188     30-35       7
## 11189     18-30      10
## 11190     50-60       5
## 11191     18-30      10
## 11192     30-35       7
## 11193     35-40       6
## 11194     18-30      10
## 11195     18-30      10
## 11196     18-30      10
## 11197     35-40       6
## 11198     18-30      10
## 11199     30-35       7
## 11200     35-40       6
## 11201     35-40       6
## 11202     30-35       7
## 11203     18-30      10
## 11204     35-40       6
## 11205     30-35       7
## 11206       65+       4
## 11207     18-30      10
## 11208     18-30      10
## 11209     35-40       6
## 11210     40-50       5
## 11211     18-30      10
## 11212     30-35       7
## 11213     18-30      10
## 11214     35-40       6
## 11215     18-30      10
## 11216     18-30      10
## 11217     30-35       7
## 11218     18-30      10
## 11219     18-30      10
## 11220     18-30      10
## 11221     18-30      10
## 11222     18-30      10
## 11223     30-35       7
## 11224     18-30      10
## 11225     35-40       6
## 11226     30-35       7
## 11227     30-35       7
## 11228     30-35       7
## 11229     35-40       6
## 11230     18-30      10
## 11231     18-30      10
## 11232     30-35       7
## 11233     35-40       6
## 11234     18-30      10
## 11235     40-50       5
## 11236     30-35       7
## 11237     35-40       6
## 11238     35-40       6
## 11239     18-30      10
## 11240     18-30      10
## 11241     18-30      10
## 11242     50-60       5
## 11243     35-40       6
## 11244     35-40       6
## 11245     30-35       7
## 11246     18-30      10
## 11247     18-30      10
## 11248     30-35       7
## 11249     18-30      10
## 11250     18-30      10
## 11251     18-30      10
## 11252     18-30      10
## 11253     30-35       7
## 11254     18-30      10
## 11255     40-50       5
## 11256     18-30      10
## 11257     18-30      10
## 11258     18-30      10
## 11259     18-30      10
## 11260     18-30      10
## 11261     30-35       7
## 11262     18-30      10
## 11263     18-30      10
## 11264     18-30      10
## 11265     35-40       6
## 11266     30-35       7
## 11267     18-30      10
## 11268     18-30      10
## 11269     18-30      10
## 11270     18-30      10
## 11271     18-30      10
## 11272     18-30      10
## 11273     18-30      10
## 11274     40-50       5
## 11275     18-30      10
## 11276     18-30      10
## 11277     18-30      10
## 11278     40-50       5
## 11279     18-30      10
## 11280     18-30      10
## 11281     35-40       6
## 11282     18-30      10
## 11283     18-30      10
## 11284     18-30      10
## 11285     35-40       6
## 11286     18-30      10
## 11287     30-35       7
## 11288     35-40       6
## 11289     18-30      10
## 11290     30-35       7
## 11291     18-30      10
## 11292     18-30      10
## 11293     30-35       7
## 11294     40-50       5
## 11295     18-30      10
## 11296     18-30      10
## 11297       65+       4
## 11298     18-30      10
## 11299     18-30      10
## 11300     18-30      10
## 11301     18-30      10
## 11302     18-30      10
## 11303     18-30      10
## 11304     18-30      10
## 11305     18-30      10
## 11306     18-30      10
## 11307     18-30      10
## 11308     18-30      10
## 11309     30-35       7
## 11310     18-30      10
## 11311     50-60       5
## 11312     18-30      10
## 11313     30-35       7
## 11314     40-50       5
## 11315     18-30      10
## 11316     18-30      10
## 11317     30-35       7
## 11318     18-30      10
## 11319     18-30      10
## 11320     35-40       6
## 11321     30-35       7
## 11322     30-35       7
## 11323     40-50       5
## 11324     30-35       7
## 11325     30-35       7
## 11326     30-35       7
## 11327     40-50       5
## 11328     18-30      10
## 11329     30-35       7
## 11330     18-30      10
## 11331     35-40       6
## 11332     18-30      10
## 11333     18-30      10
## 11334     18-30      10
## 11335     18-30      10
## 11336     18-30      10
## 11337     18-30      10
## 11338     18-30      10
## 11339     18-30      10
## 11340     30-35       7
## 11341     18-30      10
## 11342     35-40       6
## 11343     18-30      10
## 11344       65+       4
## 11345     50-60       5
## 11346       65+       4
## 11347     40-50       5
## 11348     40-50       5
## 11349     18-30      10
## 11350     18-30      10
## 11351     18-30      10
## 11352     40-50       5
## 11353     30-35       7
## 11354     18-30      10
## 11355     30-35       7
## 11356       65+       4
## 11357     18-30      10
## 11358     35-40       6
## 11359     18-30      10
## 11360     18-30      10
## 11361     18-30      10
## 11362     35-40       6
## 11363     30-35       7
## 11364       65+       4
## 11365     18-30      10
## 11366     35-40       6
## 11367     50-60       5
## 11368     35-40       6
## 11369     30-35       7
## 11370     40-50       5
## 11371     30-35       7
## 11372     18-30      10
## 11373     40-50       5
## 11374     35-40       6
## 11375     18-30      10
## 11376     30-35       7
## 11377     50-60       5
## 11378     30-35       7
## 11379     40-50       5
## 11380     35-40       6
## 11381     18-30      10
## 11382     18-30      10
## 11383     18-30      10
## 11384     30-35       7
## 11385     18-30      10
## 11386     30-35       7
## 11387     40-50       5
## 11388     50-60       5
## 11389     30-35       7
## 11390     30-35       7
## 11391     30-35       7
## 11392     18-30      10
## 11393     40-50       5
## 11394     18-30      10
## 11395     50-60       5
## 11396     18-30      10
## 11397     18-30      10
## 11398     18-30      10
## 11399     18-30      10
## 11400     18-30      10
## 11401     18-30      10
## 11402     18-30      10
## 11403     18-30      10
## 11404     18-30      10
## 11405     30-35       7
## 11406     18-30      10
## 11407     18-30      10
## 11408     18-30      10
## 11409     18-30      10
## 11410     35-40       6
## 11411     40-50       5
## 11412     18-30      10
## 11413     18-30      10
## 11414     18-30      10
## 11415     18-30      10
## 11416     18-30      10
## 11417     30-35       7
## 11418     40-50       5
## 11419     18-30      10
## 11420     18-30      10
## 11421     18-30      10
## 11422     30-35       7
## 11423     18-30      10
## 11424     18-30      10
## 11425     40-50       5
## 11426     18-30      10
## 11427     18-30      10
## 11428     30-35       7
## 11429     30-35       7
## 11430     40-50       5
## 11431     18-30      10
## 11432       65+       4
## 11433     30-35       7
## 11434     18-30      10
## 11435     18-30      10
## 11436     18-30      10
## 11437     18-30      10
## 11438     30-35       7
## 11439     50-60       5
## 11440     30-35       7
## 11441     30-35       7
## 11442     30-35       7
## 11443     18-30      10
## 11444     35-40       6
## 11445     35-40       6
## 11446     50-60       5
## 11447     30-35       7
## 11448     18-30      10
## 11449     18-30      10
## 11450     40-50       5
## 11451     18-30      10
## 11452     18-30      10
## 11453     30-35       7
## 11454     18-30      10
## 11455     18-30      10
## 11456     18-30      10
## 11457     18-30      10
## 11458     18-30      10
## 11459     18-30      10
## 11460     18-30      10
## 11461     18-30      10
## 11462     40-50       5
## 11463     30-35       7
## 11464     18-30      10
## 11465     30-35       7
## 11466     35-40       6
## 11467     18-30      10
## 11468     18-30      10
## 11469     18-30      10
## 11470     18-30      10
## 11471     35-40       6
## 11472     30-35       7
## 11473     50-60       5
## 11474     40-50       5
## 11475     18-30      10
## 11476     18-30      10
## 11477     18-30      10
## 11478     18-30      10
## 11479     18-30      10
## 11480     18-30      10
## 11481     18-30      10
## 11482     18-30      10
## 11483     18-30      10
## 11484     18-30      10
## 11485     18-30      10
## 11486     30-35       7
## 11487     18-30      10
## 11488     18-30      10
## 11489     40-50       5
## 11490     30-35       7
## 11491     18-30      10
## 11492     18-30      10
## 11493     30-35       7
## 11494     30-35       7
## 11495     18-30      10
## 11496     30-35       7
## 11497     35-40       6
## 11498     35-40       6
## 11499     18-30      10
## 11500     18-30      10
## 11501     18-30      10
## 11502     30-35       7
## 11503     35-40       6
## 11504     40-50       5
## 11505     18-30      10
## 11506     35-40       6
## 11507     18-30      10
## 11508     50-60       5
## 11509     40-50       5
## 11510     18-30      10
## 11511     18-30      10
## 11512     18-30      10
## 11513     18-30      10
## 11514     18-30      10
## 11515     18-30      10
## 11516     18-30      10
## 11517     18-30      10
## 11518     40-50       5
## 11519     50-60       5
## 11520     18-30      10
## 11521     18-30      10
## 11522     18-30      10
## 11523     35-40       6
## 11524     30-35       7
## 11525     40-50       5
## 11526     30-35       7
## 11527     18-30      10
## 11528     18-30      10
## 11529     35-40       6
## 11530     18-30      10
## 11531     18-30      10
## 11532     18-30      10
## 11533     18-30      10
## 11534     30-35       7
## 11535     18-30      10
## 11536     30-35       7
## 11537     40-50       5
## 11538     40-50       5
## 11539     18-30      10
## 11540       65+       4
## 11541     18-30      10
## 11542     18-30      10
## 11543     18-30      10
## 11544     40-50       5
## 11545     30-35       7
## 11546     18-30      10
## 11547     18-30      10
## 11548     18-30      10
## 11549     30-35       7
## 11550     30-35       7
## 11551     18-30      10
## 11552     18-30      10
## 11553     35-40       6
## 11554     18-30      10
## 11555     18-30      10
## 11556     18-30      10
## 11557     18-30      10
## 11558     18-30      10
## 11559       65+       4
## 11560     18-30      10
## 11561     40-50       5
## 11562     18-30      10
## 11563     18-30      10
## 11564     30-35       7
## 11565     18-30      10
## 11566     50-60       5
## 11567     18-30      10
## 11568     18-30      10
## 11569     18-30      10
## 11570     18-30      10
## 11571     18-30      10
## 11572     18-30      10
## 11573     18-30      10
## 11574     18-30      10
## 11575     18-30      10
## 11576     18-30      10
## 11577     18-30      10
## 11578     18-30      10
## 11579     35-40       6
## 11580     30-35       7
## 11581     18-30      10
## 11582     40-50       5
## 11583     18-30      10
## 11584     50-60       5
## 11585     40-50       5
## 11586     50-60       5
## 11587     30-35       7
## 11588     40-50       5
## 11589     18-30      10
## 11590     40-50       5
## 11591     30-35       7
## 11592     30-35       7
## 11593     18-30      10
## 11594     18-30      10
## 11595     18-30      10
## 11596     50-60       5
## 11597     35-40       6
## 11598     18-30      10
## 11599     18-30      10
## 11600     18-30      10
## 11601     18-30      10
## 11602     18-30      10
## 11603     18-30      10
## 11604     18-30      10
## 11605     18-30      10
## 11606     40-50       5
## 11607     18-30      10
## 11608     18-30      10
## 11609     18-30      10
## 11610     30-35       7
## 11611     18-30      10
## 11612     35-40       6
## 11613     35-40       6
## 11614     18-30      10
## 11615     18-30      10
## 11616     18-30      10
## 11617     30-35       7
## 11618     35-40       6
## 11619     18-30      10
## 11620     18-30      10
## 11621     30-35       7
## 11622     30-35       7
## 11623     30-35       7
## 11624     40-50       5
## 11625     40-50       5
## 11626     18-30      10
## 11627     18-30      10
## 11628     18-30      10
## 11629     18-30      10
## 11630     30-35       7
## 11631     18-30      10
## 11632     18-30      10
## 11633     18-30      10
## 11634     18-30      10
## 11635     30-35       7
## 11636     18-30      10
## 11637       65+       4
## 11638     30-35       7
## 11639     18-30      10
## 11640     50-60       5
## 11641     30-35       7
## 11642     30-35       7
## 11643     35-40       6
## 11644     18-30      10
## 11645     18-30      10
## 11646     18-30      10
## 11647     18-30      10
## 11648     50-60       5
## 11649     30-35       7
## 11650     40-50       5
## 11651     18-30      10
## 11652     30-35       7
## 11653     18-30      10
## 11654     40-50       5
## 11655     18-30      10
## 11656     30-35       7
## 11657     18-30      10
## 11658     40-50       5
## 11659     40-50       5
## 11660     40-50       5
## 11661     18-30      10
## 11662     18-30      10
## 11663     40-50       5
## 11664     50-60       5
## 11665     18-30      10
## 11666     18-30      10
## 11667     40-50       5
## 11668     30-35       7
## 11669     18-30      10
## 11670     35-40       6
## 11671     18-30      10
## 11672     18-30      10
## 11673     18-30      10
## 11674     40-50       5
## 11675     18-30      10
## 11676     18-30      10
## 11677     40-50       5
## 11678     30-35       7
## 11679     50-60       5
## 11680     35-40       6
## 11681     18-30      10
## 11682     35-40       6
## 11683     30-35       7
## 11684     18-30      10
## 11685     18-30      10
## 11686     30-35       7
## 11687       65+       4
## 11688     18-30      10
## 11689     40-50       5
## 11690     40-50       5
## 11691     18-30      10
## 11692     18-30      10
## 11693     30-35       7
## 11694     18-30      10
## 11695     18-30      10
## 11696     18-30      10
## 11697     18-30      10
## 11698     30-35       7
## 11699     18-30      10
## 11700     40-50       5
## 11701     35-40       6
## 11702     40-50       5
## 11703     35-40       6
## 11704     18-30      10
## 11705     18-30      10
## 11706     50-60       5
## 11707     18-30      10
## 11708     18-30      10
## 11709     40-50       5
## 11710     35-40       6
## 11711     35-40       6
## 11712     50-60       5
## 11713     18-30      10
## 11714     40-50       5
## 11715     18-30      10
## 11716     40-50       5
## 11717     18-30      10
## 11718     30-35       7
## 11719     35-40       6
## 11720     40-50       5
## 11721     18-30      10
## 11722     18-30      10
## 11723     30-35       7
## 11724     30-35       7
## 11725     40-50       5
## 11726     18-30      10
## 11727     18-30      10
## 11728     18-30      10
## 11729     18-30      10
## 11730     18-30      10
## 11731     30-35       7
## 11732     18-30      10
## 11733     35-40       6
## 11734     30-35       7
## 11735     18-30      10
## 11736     18-30      10
## 11737     30-35       7
## 11738     30-35       7
## 11739     18-30      10
## 11740     18-30      10
## 11741     35-40       6
## 11742     18-30      10
## 11743     18-30      10
## 11744     35-40       6
## 11745     18-30      10
## 11746     30-35       7
## 11747     30-35       7
## 11748     18-30      10
## 11749     18-30      10
## 11750     18-30      10
## 11751     30-35       7
## 11752     18-30      10
## 11753     30-35       7
## 11754       65+       4
## 11755     18-30      10
## 11756     18-30      10
## 11757     40-50       5
## 11758     40-50       5
## 11759     18-30      10
## 11760     18-30      10
## 11761     18-30      10
## 11762     30-35       7
## 11763     30-35       7
## 11764     18-30      10
## 11765     18-30      10
## 11766     18-30      10
## 11767     18-30      10
## 11768     30-35       7
## 11769     18-30      10
## 11770     35-40       6
## 11771     35-40       6
## 11772     30-35       7
## 11773     18-30      10
## 11774     30-35       7
## 11775     40-50       5
## 11776     18-30      10
## 11777     30-35       7
## 11778     18-30      10
## 11779     18-30      10
## 11780     18-30      10
## 11781     30-35       7
## 11782     18-30      10
## 11783     35-40       6
## 11784     35-40       6
## 11785     18-30      10
## 11786     35-40       6
## 11787     35-40       6
## 11788     40-50       5
## 11789     18-30      10
## 11790     30-35       7
## 11791     40-50       5
## 11792     30-35       7
## 11793     40-50       5
## 11794     18-30      10
## 11795     35-40       6
## 11796     18-30      10
## 11797     18-30      10
## 11798     18-30      10
## 11799     30-35       7
## 11800     18-30      10
## 11801     50-60       5
## 11802     40-50       5
## 11803     18-30      10
## 11804     50-60       5
## 11805     35-40       6
## 11806     30-35       7
## 11807     18-30      10
## 11808     18-30      10
## 11809     18-30      10
## 11810     40-50       5
## 11811     30-35       7
## 11812     40-50       5
## 11813     18-30      10
## 11814     18-30      10
## 11815     30-35       7
## 11816     18-30      10
## 11817     18-30      10
## 11818     18-30      10
## 11819     18-30      10
## 11820     40-50       5
## 11821     18-30      10
## 11822     35-40       6
## 11823     40-50       5
## 11824     18-30      10
## 11825     40-50       5
## 11826     18-30      10
## 11827     40-50       5
## 11828     18-30      10
## 11829     18-30      10
## 11830     30-35       7
## 11831     18-30      10
## 11832     18-30      10
## 11833     18-30      10
## 11834     18-30      10
## 11835     18-30      10
## 11836     18-30      10
## 11837     18-30      10
## 11838     35-40       6
## 11839     50-60       5
## 11840     18-30      10
## 11841     18-30      10
## 11842     18-30      10
## 11843     18-30      10
## 11844     40-50       5
## 11845     30-35       7
## 11846     18-30      10
## 11847     35-40       6
## 11848     18-30      10
## 11849     30-35       7
## 11850     18-30      10
## 11851     18-30      10
## 11852     40-50       5
## 11853     18-30      10
## 11854     40-50       5
## 11855     30-35       7
## 11856     30-35       7
## 11857     40-50       5
## 11858     35-40       6
## 11859     30-35       7
## 11860     40-50       5
## 11861     18-30      10
## 11862     18-30      10
## 11863     35-40       6
## 11864     18-30      10
## 11865     18-30      10
## 11866     40-50       5
## 11867     18-30      10
## 11868     40-50       5
## 11869     30-35       7
## 11870     40-50       5
## 11871     18-30      10
## 11872     18-30      10
## 11873     30-35       7
## 11874     18-30      10
## 11875     18-30      10
## 11876     18-30      10
## 11877     18-30      10
## 11878     30-35       7
## 11879     18-30      10
## 11880     30-35       7
## 11881     50-60       5
## 11882     35-40       6
## 11883     40-50       5
## 11884     18-30      10
## 11885     40-50       5
## 11886     18-30      10
## 11887     30-35       7
## 11888     18-30      10
## 11889     18-30      10
## 11890     18-30      10
## 11891     18-30      10
## 11892     18-30      10
## 11893     30-35       7
## 11894     18-30      10
## 11895     30-35       7
## 11896     30-35       7
## 11897     40-50       5
## 11898     40-50       5
## 11899     35-40       6
## 11900     18-30      10
## 11901     18-30      10
## 11902     18-30      10
## 11903     35-40       6
## 11904     18-30      10
## 11905     18-30      10
## 11906     18-30      10
## 11907     50-60       5
## 11908     18-30      10
## 11909     18-30      10
## 11910     35-40       6
## 11911     18-30      10
## 11912     40-50       5
## 11913     18-30      10
## 11914     30-35       7
## 11915     40-50       5
## 11916     35-40       6
## 11917     18-30      10
## 11918     40-50       5
## 11919     18-30      10
## 11920     30-35       7
## 11921     18-30      10
## 11922     18-30      10
## 11923     18-30      10
## 11924     30-35       7
## 11925     18-30      10
## 11926     30-35       7
## 11927     18-30      10
## 11928     35-40       6
## 11929     30-35       7
## 11930     30-35       7
## 11931     30-35       7
## 11932     18-30      10
## 11933     35-40       6
## 11934     30-35       7
## 11935     18-30      10
## 11936     40-50       5
## 11937     50-60       5
## 11938     40-50       5
## 11939     50-60       5
## 11940     18-30      10
## 11941     18-30      10
## 11942     40-50       5
## 11943     18-30      10
## 11944     18-30      10
## 11945     18-30      10
## 11946     40-50       5
## 11947     18-30      10
## 11948     18-30      10
## 11949     40-50       5
## 11950     50-60       5
## 11951     18-30      10
## 11952     30-35       7
## 11953     18-30      10
## 11954     18-30      10
## 11955     18-30      10
## 11956     35-40       6
## 11957     18-30      10
## 11958     30-35       7
## 11959     30-35       7
## 11960     35-40       6
## 11961     35-40       6
## 11962     18-30      10
## 11963     30-35       7
## 11964     30-35       7
## 11965     18-30      10
## 11966     18-30      10
## 11967     40-50       5
## 11968     18-30      10
## 11969     18-30      10
## 11970     18-30      10
## 11971     30-35       7
## 11972     30-35       7
## 11973     18-30      10
## 11974     18-30      10
## 11975     18-30      10
## 11976     18-30      10
## 11977     18-30      10
## 11978     35-40       6
## 11979     30-35       7
## 11980     18-30      10
## 11981     18-30      10
## 11982     18-30      10
## 11983     40-50       5
## 11984     18-30      10
## 11985     30-35       7
## 11986     18-30      10
## 11987     30-35       7
## 11988     40-50       5
## 11989     18-30      10
## 11990     35-40       6
## 11991     30-35       7
## 11992     30-35       7
## 11993     18-30      10
## 11994     18-30      10
## 11995     18-30      10
## 11996     18-30      10
## 11997     18-30      10
## 11998     18-30      10
## 11999     18-30      10
## 12000     18-30      10
## 12001     18-30      10
## 12002     18-30      10
## 12003     35-40       6
## 12004     18-30      10
## 12005     18-30      10
## 12006     35-40       6
## 12007     35-40       6
## 12008     18-30      10
## 12009     30-35       7
## 12010     18-30      10
## 12011     30-35       7
## 12012     18-30      10
## 12013     18-30      10
## 12014     18-30      10
## 12015     18-30      10
## 12016     40-50       5
## 12017     30-35       7
## 12018     35-40       6
## 12019     40-50       5
## 12020     18-30      10
## 12021     35-40       6
## 12022     18-30      10
## 12023     30-35       7
## 12024     18-30      10
## 12025     18-30      10
## 12026     30-35       7
## 12027     40-50       5
## 12028     18-30      10
## 12029     30-35       7
## 12030     18-30      10
## 12031     30-35       7
## 12032     18-30      10
## 12033     18-30      10
## 12034     35-40       6
## 12035     30-35       7
## 12036     40-50       5
## 12037     18-30      10
## 12038     18-30      10
## 12039     18-30      10
## 12040     50-60       5
## 12041     18-30      10
## 12042     18-30      10
## 12043     18-30      10
## 12044     18-30      10
## 12045     30-35       7
## 12046     18-30      10
## 12047     18-30      10
## 12048     30-35       7
## 12049     18-30      10
## 12050     18-30      10
## 12051     18-30      10
## 12052     18-30      10
## 12053     50-60       5
## 12054     18-30      10
## 12055     40-50       5
## 12056     18-30      10
## 12057     40-50       5
## 12058     18-30      10
## 12059     18-30      10
## 12060     30-35       7
## 12061     30-35       7
## 12062     18-30      10
## 12063     30-35       7
## 12064     50-60       5
## 12065     18-30      10
## 12066     30-35       7
## 12067     35-40       6
## 12068     18-30      10
## 12069     18-30      10
## 12070     18-30      10
## 12071     35-40       6
## 12072     40-50       5
## 12073     18-30      10
## 12074     18-30      10
## 12075     18-30      10
## 12076     35-40       6
## 12077     18-30      10
## 12078     18-30      10
## 12079     18-30      10
## 12080     18-30      10
## 12081     18-30      10
## 12082     30-35       7
## 12083     30-35       7
## 12084     18-30      10
## 12085     18-30      10
## 12086     18-30      10
## 12087     18-30      10
## 12088     18-30      10
## 12089     18-30      10
## 12090     40-50       5
## 12091     18-30      10
## 12092     18-30      10
## 12093     30-35       7
## 12094     30-35       7
## 12095     18-30      10
## 12096     18-30      10
## 12097     18-30      10
## 12098     18-30      10
## 12099     50-60       5
## 12100     18-30      10
## 12101     18-30      10
## 12102     40-50       5
## 12103     18-30      10
## 12104     18-30      10
## 12105     35-40       6
## 12106     18-30      10
## 12107     18-30      10
## 12108     40-50       5
## 12109     18-30      10
## 12110     30-35       7
## 12111     30-35       7
## 12112     18-30      10
## 12113     18-30      10
## 12114     30-35       7
## 12115     18-30      10
## 12116     35-40       6
## 12117     40-50       5
## 12118     30-35       7
## 12119     50-60       5
## 12120     18-30      10
## 12121     18-30      10
## 12122     18-30      10
## 12123     40-50       5
## 12124     35-40       6
## 12125     18-30      10
## 12126     18-30      10
## 12127     30-35       7
## 12128     40-50       5
## 12129     18-30      10
## 12130     18-30      10
## 12131     18-30      10
## 12132     18-30      10
## 12133     35-40       6
## 12134     18-30      10
## 12135     18-30      10
## 12136     30-35       7
## 12137     30-35       7
## 12138     35-40       6
## 12139     18-30      10
## 12140     18-30      10
## 12141     18-30      10
## 12142     18-30      10
## 12143     30-35       7
## 12144     18-30      10
## 12145     18-30      10
## 12146     18-30      10
## 12147     40-50       5
## 12148     18-30      10
## 12149     18-30      10
## 12150     40-50       5
## 12151     18-30      10
## 12152     18-30      10
## 12153     30-35       7
## 12154     30-35       7
## 12155     35-40       6
## 12156     35-40       6
## 12157     30-35       7
## 12158     30-35       7
## 12159     18-30      10
## 12160     35-40       6
## 12161     18-30      10
## 12162     18-30      10
## 12163     18-30      10
## 12164     35-40       6
## 12165     18-30      10
## 12166     18-30      10
## 12167     30-35       7
## 12168     35-40       6
## 12169     18-30      10
## 12170     18-30      10
## 12171     18-30      10
## 12172     18-30      10
## 12173     18-30      10
## 12174     18-30      10
## 12175     40-50       5
## 12176     18-30      10
## 12177     18-30      10
## 12178     40-50       5
## 12179     50-60       5
## 12180     35-40       6
## 12181     35-40       6
## 12182     30-35       7
## 12183     18-30      10
## 12184     18-30      10
## 12185     30-35       7
## 12186     18-30      10
## 12187     18-30      10
## 12188     18-30      10
## 12189     18-30      10
## 12190     18-30      10
## 12191     18-30      10
## 12192     40-50       5
## 12193     30-35       7
## 12194     18-30      10
## 12195     18-30      10
## 12196     40-50       5
## 12197     18-30      10
## 12198     30-35       7
## 12199     35-40       6
## 12200     40-50       5
## 12201     18-30      10
## 12202     18-30      10
## 12203     35-40       6
## 12204     18-30      10
## 12205     35-40       6
## 12206     18-30      10
## 12207     18-30      10
## 12208     18-30      10
## 12209     30-35       7
## 12210     18-30      10
## 12211     18-30      10
## 12212     18-30      10
## 12213     30-35       7
## 12214     18-30      10
## 12215     30-35       7
## 12216     30-35       7
## 12217     35-40       6
## 12218     18-30      10
## 12219     18-30      10
## 12220     18-30      10
## 12221     35-40       6
## 12222     30-35       7
## 12223     18-30      10
## 12224     40-50       5
## 12225     18-30      10
## 12226     18-30      10
## 12227     35-40       6
## 12228     18-30      10
## 12229     35-40       6
## 12230     18-30      10
## 12231     18-30      10
## 12232     30-35       7
## 12233     18-30      10
## 12234     50-60       5
## 12235     18-30      10
## 12236     18-30      10
## 12237     18-30      10
## 12238     40-50       5
## 12239     30-35       7
## 12240     30-35       7
## 12241     35-40       6
## 12242     35-40       6
## 12243     30-35       7
## 12244     18-30      10
## 12245     50-60       5
## 12246     40-50       5
## 12247     30-35       7
## 12248     30-35       7
## 12249     18-30      10
## 12250     40-50       5
## 12251     18-30      10
## 12252     18-30      10
## 12253     18-30      10
## 12254     40-50       5
## 12255     18-30      10
## 12256     35-40       6
## 12257     18-30      10
## 12258     18-30      10
## 12259     18-30      10
## 12260     18-30      10
## 12261     18-30      10
## 12262     30-35       7
## 12263     18-30      10
## 12264     50-60       5
## 12265     18-30      10
## 12266     18-30      10
## 12267     30-35       7
## 12268     35-40       6
## 12269     18-30      10
## 12270     18-30      10
## 12271     30-35       7
## 12272     18-30      10
## 12273     50-60       5
## 12274     18-30      10
## 12275     35-40       6
## 12276     18-30      10
## 12277     18-30      10
## 12278     18-30      10
## 12279     30-35       7
## 12280     40-50       5
## 12281     40-50       5
## 12282     18-30      10
## 12283     50-60       5
## 12284     35-40       6
## 12285     30-35       7
## 12286     18-30      10
## 12287     18-30      10
## 12288     35-40       6
## 12289     18-30      10
## 12290     18-30      10
## 12291     18-30      10
## 12292     35-40       6
## 12293     18-30      10
## 12294     35-40       6
## 12295     18-30      10
## 12296     30-35       7
## 12297       65+       4
## 12298     40-50       5
## 12299     50-60       5
## 12300     35-40       6
## 12301     40-50       5
## 12302     30-35       7
## 12303     50-60       5
## 12304     18-30      10
## 12305     30-35       7
## 12306     18-30      10
## 12307     30-35       7
## 12308     30-35       7
## 12309     35-40       6
## 12310     18-30      10
## 12311     18-30      10
## 12312     18-30      10
## 12313     18-30      10
## 12314     30-35       7
## 12315     30-35       7
## 12316     40-50       5
## 12317     40-50       5
## 12318     30-35       7
## 12319     18-30      10
## 12320     30-35       7
## 12321     18-30      10
## 12322     18-30      10
## 12323     18-30      10
## 12324     18-30      10
## 12325     18-30      10
## 12326     18-30      10
## 12327     18-30      10
## 12328     18-30      10
## 12329     18-30      10
## 12330     18-30      10
## 12331     40-50       5
## 12332     40-50       5
## 12333     35-40       6
## 12334       65+       4
## 12335     18-30      10
## 12336     30-35       7
## 12337     35-40       6
## 12338     18-30      10
## 12339     30-35       7
## 12340     30-35       7
## 12341     18-30      10
## 12342     40-50       5
## 12343       65+       4
## 12344     18-30      10
## 12345     35-40       6
## 12346     18-30      10
## 12347     35-40       6
## 12348     50-60       5
## 12349       65+       4
## 12350     18-30      10
## 12351     18-30      10
## 12352     18-30      10
## 12353     30-35       7
## 12354     18-30      10
## 12355     30-35       7
## 12356     30-35       7
## 12357     30-35       7
## 12358     30-35       7
## 12359     18-30      10
## 12360     18-30      10
## 12361     18-30      10
## 12362     40-50       5
## 12363     18-30      10
## 12364     18-30      10
## 12365     18-30      10
## 12366     18-30      10
## 12367     18-30      10
## 12368     18-30      10
## 12369     18-30      10
## 12370     18-30      10
## 12371     18-30      10
## 12372     18-30      10
## 12373     18-30      10
## 12374     18-30      10
## 12375     18-30      10
## 12376     18-30      10
## 12377     18-30      10
## 12378     30-35       7
## 12379     18-30      10
## 12380     18-30      10
## 12381     40-50       5
## 12382     18-30      10
## 12383     18-30      10
## 12384     50-60       5
## 12385     35-40       6
## 12386     18-30      10
## 12387     18-30      10
## 12388     18-30      10
## 12389     30-35       7
## 12390     18-30      10
## 12391     18-30      10
## 12392     30-35       7
## 12393     18-30      10
## 12394     30-35       7
## 12395     40-50       5
## 12396     30-35       7
## 12397     18-30      10
## 12398     30-35       7
## 12399     18-30      10
## 12400     18-30      10
## 12401     35-40       6
## 12402     18-30      10
## 12403     18-30      10
## 12404     40-50       5
## 12405     50-60       5
## 12406     18-30      10
## 12407     18-30      10
## 12408     18-30      10
## 12409     30-35       7
## 12410     18-30      10
## 12411     30-35       7
## 12412     18-30      10
## 12413     30-35       7
## 12414     18-30      10
## 12415     18-30      10
## 12416     18-30      10
## 12417     18-30      10
## 12418     18-30      10
## 12419     18-30      10
## 12420     18-30      10
## 12421     18-30      10
## 12422     18-30      10
## 12423     35-40       6
## 12424     40-50       5
## 12425     30-35       7
## 12426     18-30      10
## 12427     40-50       5
## 12428     35-40       6
## 12429     35-40       6
## 12430     40-50       5
## 12431     40-50       5
## 12432     18-30      10
## 12433     30-35       7
## 12434     18-30      10
## 12435     30-35       7
## 12436     18-30      10
## 12437     18-30      10
## 12438     35-40       6
## 12439     30-35       7
## 12440     18-30      10
## 12441     18-30      10
## 12442     35-40       6
## 12443     18-30      10
## 12444     40-50       5
## 12445     30-35       7
## 12446     35-40       6
## 12447     18-30      10
## 12448     18-30      10
## 12449     50-60       5
## 12450       65+       4
## 12451     18-30      10
## 12452     18-30      10
## 12453     18-30      10
## 12454     30-35       7
## 12455     18-30      10
## 12456     30-35       7
## 12457     18-30      10
## 12458     50-60       5
## 12459     18-30      10
## 12460     30-35       7
## 12461     18-30      10
## 12462     40-50       5
## 12463     30-35       7
## 12464     18-30      10
## 12465     18-30      10
## 12466     18-30      10
## 12467     18-30      10
## 12468     35-40       6
## 12469     18-30      10
## 12470     18-30      10
## 12471     40-50       5
## 12472     50-60       5
## 12473     18-30      10
## 12474     18-30      10
## 12475     30-35       7
## 12476     30-35       7
## 12477     18-30      10
## 12478     18-30      10
## 12479     18-30      10
## 12480     35-40       6
## 12481     18-30      10
## 12482     50-60       5
## 12483     18-30      10
## 12484     30-35       7
## 12485     30-35       7
## 12486     30-35       7
## 12487     30-35       7
## 12488     35-40       6
## 12489     30-35       7
## 12490     30-35       7
## 12491     18-30      10
## 12492     35-40       6
## 12493     18-30      10
## 12494     30-35       7
## 12495     18-30      10
## 12496     30-35       7
## 12497     18-30      10
## 12498     40-50       5
## 12499     18-30      10
## 12500     18-30      10
## 12501     30-35       7
## 12502     18-30      10
## 12503     40-50       5
## 12504     40-50       5
## 12505     35-40       6
## 12506     18-30      10
## 12507     18-30      10
## 12508     18-30      10
## 12509     18-30      10
## 12510     30-35       7
## 12511     18-30      10
## 12512     30-35       7
## 12513     18-30      10
## 12514     18-30      10
## 12515     30-35       7
## 12516     18-30      10
## 12517     18-30      10
## 12518     30-35       7
## 12519     18-30      10
## 12520     30-35       7
## 12521     18-30      10
## 12522     30-35       7
## 12523     18-30      10
## 12524     30-35       7
## 12525     30-35       7
## 12526     18-30      10
## 12527     30-35       7
## 12528     18-30      10
## 12529     30-35       7
## 12530     18-30      10
## 12531     18-30      10
## 12532     18-30      10
## 12533     18-30      10
## 12534     18-30      10
## 12535     50-60       5
## 12536     18-30      10
## 12537     18-30      10
## 12538     30-35       7
## 12539     18-30      10
## 12540     18-30      10
## 12541     40-50       5
## 12542     18-30      10
## 12543     30-35       7
## 12544     18-30      10
## 12545     18-30      10
## 12546     40-50       5
## 12547     18-30      10
## 12548     40-50       5
## 12549     18-30      10
## 12550     18-30      10
## 12551     30-35       7
## 12552     30-35       7
## 12553     18-30      10
## 12554     18-30      10
## 12555     18-30      10
## 12556     18-30      10
## 12557     35-40       6
## 12558     35-40       6
## 12559     40-50       5
## 12560     35-40       6
## 12561     18-30      10
## 12562     18-30      10
## 12563     50-60       5
## 12564     18-30      10
## 12565     18-30      10
## 12566     18-30      10
## 12567     18-30      10
## 12568     18-30      10
## 12569     18-30      10
## 12570     35-40       6
## 12571     18-30      10
## 12572     40-50       5
## 12573     18-30      10
## 12574     40-50       5
## 12575     18-30      10
## 12576     30-35       7
## 12577     18-30      10
## 12578     40-50       5
## 12579     18-30      10
## 12580     30-35       7
## 12581     35-40       6
## 12582     35-40       6
## 12583     35-40       6
## 12584     18-30      10
## 12585     18-30      10
## 12586     30-35       7
## 12587     18-30      10
## 12588     18-30      10
## 12589     18-30      10
## 12590     35-40       6
## 12591     30-35       7
## 12592     18-30      10
## 12593     30-35       7
## 12594     30-35       7
## 12595     18-30      10
## 12596     35-40       6
## 12597     18-30      10
## 12598     30-35       7
## 12599     30-35       7
## 12600     18-30      10
## 12601     18-30      10
## 12602     18-30      10
## 12603     18-30      10
## 12604     18-30      10
## 12605     18-30      10
## 12606     18-30      10
## 12607     35-40       6
## 12608     18-30      10
## 12609     30-35       7
## 12610     18-30      10
## 12611     30-35       7
## 12612     18-30      10
## 12613     18-30      10
## 12614     30-35       7
## 12615     50-60       5
## 12616     18-30      10
## 12617     18-30      10
## 12618     18-30      10
## 12619     18-30      10
## 12620     30-35       7
## 12621     35-40       6
## 12622     40-50       5
## 12623     30-35       7
## 12624     18-30      10
## 12625     18-30      10
## 12626     18-30      10
## 12627     18-30      10
## 12628     18-30      10
## 12629     30-35       7
## 12630     18-30      10
## 12631     40-50       5
## 12632     18-30      10
## 12633     30-35       7
## 12634     18-30      10
## 12635     18-30      10
## 12636     18-30      10
## 12637     18-30      10
## 12638     18-30      10
## 12639     18-30      10
## 12640     40-50       5
## 12641     18-30      10
## 12642     30-35       7
## 12643     30-35       7
## 12644     18-30      10
## 12645     30-35       7
## 12646     18-30      10
## 12647     30-35       7
## 12648     18-30      10
## 12649     18-30      10
## 12650     18-30      10
## 12651     30-35       7
## 12652     18-30      10
## 12653     18-30      10
## 12654     18-30      10
## 12655     40-50       5
## 12656     30-35       7
## 12657     18-30      10
## 12658     18-30      10
## 12659     40-50       5
## 12660     18-30      10
## 12661     18-30      10
## 12662     18-30      10
## 12663     18-30      10
## 12664     18-30      10
## 12665     30-35       7
## 12666     18-30      10
## 12667     18-30      10
## 12668     18-30      10
## 12669     18-30      10
## 12670     30-35       7
## 12671     18-30      10
## 12672     35-40       6
## 12673     40-50       5
## 12674     18-30      10
## 12675     18-30      10
## 12676     18-30      10
## 12677     18-30      10
## 12678     18-30      10
## 12679     18-30      10
## 12680     35-40       6
## 12681     18-30      10
## 12682     30-35       7
## 12683     18-30      10
## 12684     18-30      10
## 12685     18-30      10
## 12686     18-30      10
## 12687     18-30      10
## 12688     18-30      10
## 12689     35-40       6
## 12690     35-40       6
## 12691     18-30      10
## 12692     18-30      10
## 12693     18-30      10
## 12694     18-30      10
## 12695     18-30      10
## 12696     18-30      10
## 12697     18-30      10
## 12698     18-30      10
## 12699     18-30      10
## 12700     18-30      10
## 12701     30-35       7
## 12702     18-30      10
## 12703     35-40       6
## 12704     18-30      10
## 12705     18-30      10
## 12706     18-30      10
## 12707     18-30      10
## 12708     18-30      10
## 12709     18-30      10
## 12710     18-30      10
## 12711     30-35       7
## 12712     18-30      10
## 12713     30-35       7
## 12714     18-30      10
## 12715     18-30      10
## 12716     35-40       6
## 12717     18-30      10
## 12718     18-30      10
## 12719     18-30      10
## 12720     18-30      10
## 12721     18-30      10
## 12722     18-30      10
## 12723     18-30      10
## 12724     18-30      10
## 12725     18-30      10
## 12726     40-50       5
## 12727     18-30      10
## 12728     18-30      10
## 12729     30-35       7
## 12730     40-50       5
## 12731     30-35       7
## 12732       65+       4
## 12733     18-30      10
## 12734     30-35       7
## 12735     35-40       6
## 12736     35-40       6
## 12737     35-40       6
## 12738     35-40       6
## 12739     18-30      10
## 12740     30-35       7
## 12741       65+       4
## 12742     18-30      10
## 12743     30-35       7
## 12744     30-35       7
## 12745     18-30      10
## 12746     30-35       7
## 12747     35-40       6
## 12748     40-50       5
## 12749     30-35       7
## 12750     18-30      10
## 12751     30-35       7
## 12752     40-50       5
## 12753     30-35       7
## 12754     30-35       7
## 12755     30-35       7
## 12756     18-30      10
## 12757     40-50       5
## 12758     18-30      10
## 12759     50-60       5
## 12760     18-30      10
## 12761     18-30      10
## 12762     30-35       7
## 12763     18-30      10
## 12764     18-30      10
## 12765     30-35       7
## 12766     50-60       5
## 12767     35-40       6
## 12768     40-50       5
## 12769     18-30      10
## 12770     18-30      10
## 12771     18-30      10
## 12772     18-30      10
## 12773     18-30      10
## 12774     18-30      10
## 12775     18-30      10
## 12776     18-30      10
## 12777     18-30      10
## 12778     18-30      10
## 12779     30-35       7
## 12780     30-35       7
## 12781     18-30      10
## 12782     18-30      10
## 12783     35-40       6
## 12784     18-30      10
## 12785     30-35       7
## 12786     40-50       5
## 12787     30-35       7
## 12788     40-50       5
## 12789     18-30      10
## 12790     40-50       5
## 12791     18-30      10
## 12792     40-50       5
## 12793     18-30      10
## 12794     18-30      10
## 12795     18-30      10
## 12796     35-40       6
## 12797     18-30      10
## 12798     30-35       7
## 12799     35-40       6
## 12800     18-30      10
## 12801     18-30      10
## 12802     40-50       5
## 12803     18-30      10
## 12804     30-35       7
## 12805     18-30      10
## 12806     30-35       7
## 12807     18-30      10
## 12808     30-35       7
## 12809     30-35       7
## 12810     18-30      10
## 12811     35-40       6
## 12812     18-30      10
## 12813     18-30      10
## 12814     18-30      10
## 12815     18-30      10
## 12816     18-30      10
## 12817     30-35       7
## 12818     18-30      10
## 12819     30-35       7
## 12820     30-35       7
## 12821     18-30      10
## 12822     18-30      10
## 12823     40-50       5
## 12824     18-30      10
## 12825     40-50       5
## 12826     18-30      10
## 12827     18-30      10
## 12828     18-30      10
## 12829     18-30      10
## 12830     50-60       5
## 12831     18-30      10
## 12832     35-40       6
## 12833     18-30      10
## 12834     18-30      10
## 12835     18-30      10
## 12836     35-40       6
## 12837     18-30      10
## 12838     18-30      10
## 12839     18-30      10
## 12840     18-30      10
## 12841     18-30      10
## 12842     50-60       5
## 12843     18-30      10
## 12844     18-30      10
## 12845     18-30      10
## 12846     50-60       5
## 12847     30-35       7
## 12848     30-35       7
## 12849     30-35       7
## 12850     18-30      10
## 12851     50-60       5
## 12852     18-30      10
## 12853     18-30      10
## 12854     18-30      10
## 12855     30-35       7
## 12856     18-30      10
## 12857     18-30      10
## 12858     18-30      10
## 12859     35-40       6
## 12860     40-50       5
## 12861     40-50       5
## 12862     35-40       6
## 12863     35-40       6
## 12864     35-40       6
## 12865     30-35       7
## 12866     18-30      10
## 12867     18-30      10
## 12868     18-30      10
## 12869     18-30      10
## 12870     18-30      10
## 12871     40-50       5
## 12872     18-30      10
## 12873     18-30      10
## 12874     30-35       7
## 12875     18-30      10
## 12876     35-40       6
## 12877     18-30      10
## 12878     18-30      10
## 12879     35-40       6
## 12880     35-40       6
## 12881     30-35       7
## 12882     18-30      10
## 12883     18-30      10
## 12884     50-60       5
## 12885     18-30      10
## 12886     18-30      10
## 12887     40-50       5
## 12888     40-50       5
## 12889     35-40       6
## 12890     40-50       5
## 12891     18-30      10
## 12892     30-35       7
## 12893     30-35       7
## 12894     18-30      10
## 12895     18-30      10
## 12896     18-30      10
## 12897     40-50       5
## 12898     18-30      10
## 12899     40-50       5
## 12900     18-30      10
## 12901     18-30      10
## 12902       65+       4
## 12903     35-40       6
## 12904     30-35       7
## 12905     30-35       7
## 12906     35-40       6
## 12907     18-30      10
## 12908     35-40       6
## 12909     18-30      10
## 12910     40-50       5
## 12911     18-30      10
## 12912     18-30      10
## 12913     18-30      10
## 12914     18-30      10
## 12915     18-30      10
## 12916       65+       4
## 12917     50-60       5
## 12918     40-50       5
## 12919     30-35       7
## 12920     18-30      10
## 12921     18-30      10
## 12922     40-50       5
## 12923     18-30      10
## 12924     40-50       5
## 12925     40-50       5
## 12926     18-30      10
## 12927     40-50       5
## 12928     30-35       7
## 12929     18-30      10
## 12930     50-60       5
## 12931     35-40       6
## 12932     18-30      10
## 12933     18-30      10
## 12934     30-35       7
## 12935     35-40       6
## 12936     18-30      10
## 12937     18-30      10
## 12938     18-30      10
## 12939     30-35       7
## 12940     18-30      10
## 12941     30-35       7
## 12942     18-30      10
## 12943     18-30      10
## 12944     18-30      10
## 12945     35-40       6
## 12946     40-50       5
## 12947     18-30      10
## 12948     35-40       6
## 12949     18-30      10
## 12950     18-30      10
## 12951     18-30      10
## 12952     35-40       6
## 12953     30-35       7
## 12954     30-35       7
## 12955     18-30      10
## 12956     18-30      10
## 12957     18-30      10
## 12958     18-30      10
## 12959     35-40       6
## 12960     18-30      10
## 12961     18-30      10
## 12962     18-30      10
## 12963     40-50       5
## 12964     18-30      10
## 12965     18-30      10
## 12966     18-30      10
## 12967     18-30      10
## 12968     35-40       6
## 12969     30-35       7
## 12970     18-30      10
## 12971     18-30      10
## 12972     18-30      10
## 12973     30-35       7
## 12974     18-30      10
## 12975     18-30      10
## 12976     18-30      10
## 12977     18-30      10
## 12978     18-30      10
## 12979     18-30      10
## 12980     18-30      10
## 12981     40-50       5
## 12982     40-50       5
## 12983     30-35       7
## 12984     40-50       5
## 12985     18-30      10
## 12986     18-30      10
## 12987     35-40       6
## 12988     18-30      10
## 12989     35-40       6
## 12990     18-30      10
## 12991     35-40       6
## 12992     18-30      10
## 12993     18-30      10
## 12994     18-30      10
## 12995     18-30      10
## 12996     18-30      10
## 12997     18-30      10
## 12998     18-30      10
## 12999     18-30      10
## 13000     18-30      10
## 13001     30-35       7
## 13002     18-30      10
## 13003     50-60       5
## 13004     40-50       5
## 13005     40-50       5
## 13006     18-30      10
## 13007     50-60       5
## 13008     30-35       7
## 13009     40-50       5
## 13010     18-30      10
## 13011     50-60       5
## 13012     50-60       5
## 13013     35-40       6
## 13014     30-35       7
## 13015     18-30      10
## 13016     18-30      10
## 13017     18-30      10
## 13018     18-30      10
## 13019     18-30      10
## 13020     18-30      10
## 13021     40-50       5
## 13022     18-30      10
## 13023     18-30      10
## 13024     35-40       6
## 13025     30-35       7
## 13026     18-30      10
## 13027     35-40       6
## 13028     35-40       6
## 13029     30-35       7
## 13030     18-30      10
## 13031     18-30      10
## 13032     18-30      10
## 13033     18-30      10
## 13034     18-30      10
## 13035     18-30      10
## 13036     18-30      10
## 13037     18-30      10
## 13038     18-30      10
## 13039     30-35       7
## 13040     50-60       5
## 13041     18-30      10
## 13042     18-30      10
## 13043     40-50       5
## 13044     30-35       7
## 13045     30-35       7
## 13046     18-30      10
## 13047     50-60       5
## 13048     18-30      10
## 13049     35-40       6
## 13050     18-30      10
## 13051     30-35       7
## 13052     18-30      10
## 13053     18-30      10
## 13054     18-30      10
## 13055     18-30      10
## 13056     30-35       7
## 13057     30-35       7
## 13058     30-35       7
## 13059     18-30      10
## 13060     35-40       6
## 13061     35-40       6
## 13062     18-30      10
## 13063     18-30      10
## 13064     18-30      10
## 13065     18-30      10
## 13066     40-50       5
## 13067     18-30      10
## 13068     18-30      10
## 13069     30-35       7
## 13070     18-30      10
## 13071     30-35       7
## 13072     30-35       7
## 13073     18-30      10
## 13074     40-50       5
## 13075     18-30      10
## 13076     18-30      10
## 13077     18-30      10
## 13078       65+       4
## 13079     30-35       7
## 13080     50-60       5
## 13081     18-30      10
## 13082     40-50       5
## 13083     18-30      10
## 13084     18-30      10
## 13085     50-60       5
## 13086     18-30      10
## 13087     18-30      10
## 13088     30-35       7
## 13089     30-35       7
## 13090     18-30      10
## 13091     18-30      10
## 13092     18-30      10
## 13093     18-30      10
## 13094     18-30      10
## 13095     18-30      10
## 13096     30-35       7
## 13097     18-30      10
## 13098     30-35       7
## 13099     18-30      10
## 13100     35-40       6
## 13101     35-40       6
## 13102     18-30      10
## 13103     18-30      10
## 13104     18-30      10
## 13105     35-40       6
## 13106     30-35       7
## 13107     18-30      10
## 13108     35-40       6
## 13109     50-60       5
## 13110     35-40       6
## 13111     18-30      10
## 13112     18-30      10
## 13113     18-30      10
## 13114     18-30      10
## 13115     18-30      10
## 13116     35-40       6
## 13117     35-40       6
## 13118     18-30      10
## 13119     30-35       7
## 13120     18-30      10
## 13121     18-30      10
## 13122     30-35       7
## 13123     50-60       5
## 13124     35-40       6
## 13125     30-35       7
## 13126     35-40       6
## 13127     18-30      10
## 13128     18-30      10
## 13129     30-35       7
## 13130     40-50       5
## 13131     18-30      10
## 13132     18-30      10
## 13133     40-50       5
## 13134     18-30      10
## 13135     30-35       7
## 13136     30-35       7
## 13137     35-40       6
## 13138     35-40       6
## 13139     18-30      10
## 13140     30-35       7
## 13141     35-40       6
## 13142     35-40       6
## 13143     18-30      10
## 13144     40-50       5
## 13145     35-40       6
## 13146     40-50       5
## 13147     40-50       5
## 13148     18-30      10
## 13149     18-30      10
## 13150     40-50       5
## 13151     18-30      10
## 13152     18-30      10
## 13153     18-30      10
## 13154     18-30      10
## 13155     18-30      10
## 13156     18-30      10
## 13157     18-30      10
## 13158     30-35       7
## 13159     30-35       7
## 13160     18-30      10
## 13161     30-35       7
## 13162     30-35       7
## 13163     18-30      10
## 13164     18-30      10
## 13165     30-35       7
## 13166     30-35       7
## 13167     40-50       5
## 13168     40-50       5
## 13169     18-30      10
## 13170     18-30      10
## 13171     35-40       6
## 13172     30-35       7
## 13173     18-30      10
## 13174     30-35       7
## 13175     18-30      10
## 13176     30-35       7
## 13177     35-40       6
## 13178     18-30      10
## 13179     35-40       6
## 13180     18-30      10
## 13181     40-50       5
## 13182     30-35       7
## 13183     30-35       7
## 13184     50-60       5
## 13185     35-40       6
## 13186     18-30      10
## 13187     30-35       7
## 13188     40-50       5
## 13189     18-30      10
## 13190     35-40       6
## 13191     18-30      10
## 13192     18-30      10
## 13193     35-40       6
## 13194     30-35       7
## 13195     40-50       5
## 13196     35-40       6
## 13197     18-30      10
## 13198     18-30      10
## 13199     18-30      10
## 13200     18-30      10
## 13201     18-30      10
## 13202     18-30      10
## 13203     18-30      10
## 13204     18-30      10
## 13205     18-30      10
## 13206     18-30      10
## 13207     18-30      10
## 13208     18-30      10
## 13209     30-35       7
## 13210     18-30      10
## 13211     40-50       5
## 13212     18-30      10
## 13213     50-60       5
## 13214     35-40       6
## 13215     30-35       7
## 13216     40-50       5
## 13217     18-30      10
## 13218     18-30      10
## 13219     40-50       5
## 13220     50-60       5
## 13221     50-60       5
## 13222     18-30      10
## 13223     30-35       7
## 13224     50-60       5
## 13225     35-40       6
## 13226     18-30      10
## 13227     30-35       7
## 13228     18-30      10
## 13229     18-30      10
## 13230     40-50       5
## 13231     40-50       5
## 13232     18-30      10
## 13233     30-35       7
## 13234     35-40       6
## 13235     50-60       5
## 13236     30-35       7
## 13237     18-30      10
## 13238     30-35       7
## 13239     18-30      10
## 13240     50-60       5
## 13241     18-30      10
## 13242     18-30      10
## 13243     18-30      10
## 13244     30-35       7
## 13245     18-30      10
## 13246     40-50       5
## 13247     30-35       7
## 13248     40-50       5
## 13249     30-35       7
## 13250     35-40       6
## 13251     30-35       7
## 13252     30-35       7
## 13253     40-50       5
## 13254     30-35       7
## 13255     30-35       7
## 13256     30-35       7
## 13257     18-30      10
## 13258     50-60       5
## 13259     40-50       5
## 13260     18-30      10
## 13261     50-60       5
## 13262     40-50       5
## 13263     18-30      10
## 13264     18-30      10
## 13265     18-30      10
## 13266     18-30      10
## 13267     30-35       7
## 13268     30-35       7
## 13269     18-30      10
## 13270     18-30      10
## 13271     18-30      10
## 13272     35-40       6
## 13273     18-30      10
## 13274     30-35       7
## 13275     18-30      10
## 13276     18-30      10
## 13277     35-40       6
## 13278     35-40       6
## 13279     18-30      10
## 13280     30-35       7
## 13281     18-30      10
## 13282     18-30      10
## 13283     30-35       7
## 13284     18-30      10
## 13285     18-30      10
## 13286     30-35       7
## 13287     35-40       6
## 13288     18-30      10
## 13289     18-30      10
## 13290     30-35       7
## 13291     18-30      10
## 13292     35-40       6
## 13293     35-40       6
## 13294     40-50       5
## 13295     18-30      10
## 13296     18-30      10
## 13297     18-30      10
## 13298     18-30      10
## 13299     18-30      10
## 13300     18-30      10
## 13301     30-35       7
## 13302     35-40       6
## 13303     18-30      10
## 13304     30-35       7
## 13305     50-60       5
## 13306     18-30      10
## 13307     18-30      10
## 13308     35-40       6
## 13309     18-30      10
## 13310     18-30      10
## 13311     18-30      10
## 13312     40-50       5
## 13313     18-30      10
## 13314     18-30      10
## 13315     40-50       5
## 13316     18-30      10
## 13317     18-30      10
## 13318     40-50       5
## 13319     18-30      10
## 13320     40-50       5
## 13321     18-30      10
## 13322     40-50       5
## 13323     40-50       5
## 13324     18-30      10
## 13325     18-30      10
## 13326     18-30      10
## 13327     50-60       5
## 13328       65+       4
## 13329     40-50       5
## 13330     30-35       7
## 13331     30-35       7
## 13332     18-30      10
## 13333     35-40       6
## 13334     18-30      10
## 13335     18-30      10
## 13336     18-30      10
## 13337     18-30      10
## 13338     30-35       7
## 13339     40-50       5
## 13340       65+       4
## 13341     18-30      10
## 13342     40-50       5
## 13343     18-30      10
## 13344     18-30      10
## 13345     40-50       5
## 13346     18-30      10
## 13347     40-50       5
## 13348     50-60       5
## 13349     30-35       7
## 13350     30-35       7
## 13351     18-30      10
## 13352     50-60       5
## 13353     18-30      10
## 13354     40-50       5
## 13355     18-30      10
## 13356     18-30      10
## 13357     50-60       5
## 13358     18-30      10
## 13359     18-30      10
## 13360     50-60       5
## 13361     18-30      10
## 13362     40-50       5
## 13363     30-35       7
## 13364     18-30      10
## 13365     30-35       7
## 13366     30-35       7
## 13367     18-30      10
## 13368     18-30      10
## 13369     35-40       6
## 13370     18-30      10
## 13371     35-40       6
## 13372     30-35       7
## 13373     30-35       7
## 13374     50-60       5
## 13375     18-30      10
## 13376     18-30      10
## 13377     35-40       6
## 13378     30-35       7
## 13379     35-40       6
## 13380     30-35       7
## 13381     40-50       5
## 13382     30-35       7
## 13383     18-30      10
## 13384     18-30      10
## 13385     18-30      10
## 13386     35-40       6
## 13387     35-40       6
## 13388     30-35       7
## 13389     18-30      10
## 13390     40-50       5
## 13391     30-35       7
## 13392     18-30      10
## 13393     18-30      10
## 13394     40-50       5
## 13395     40-50       5
## 13396     18-30      10
## 13397     30-35       7
## 13398     30-35       7
## 13399     35-40       6
## 13400     18-30      10
## 13401     18-30      10
## 13402     18-30      10
## 13403     30-35       7
## 13404     30-35       7
## 13405     35-40       6
## 13406     30-35       7
## 13407     30-35       7
## 13408     18-30      10
## 13409     18-30      10
## 13410     18-30      10
## 13411     30-35       7
## 13412     18-30      10
## 13413     18-30      10
## 13414     40-50       5
## 13415     18-30      10
## 13416     18-30      10
## 13417     30-35       7
## 13418     18-30      10
## 13419     18-30      10
## 13420     30-35       7
## 13421     35-40       6
## 13422     18-30      10
## 13423     50-60       5
## 13424     40-50       5
## 13425     18-30      10
## 13426     18-30      10
## 13427     18-30      10
## 13428     18-30      10
## 13429     18-30      10
## 13430     40-50       5
## 13431     30-35       7
## 13432     18-30      10
## 13433     18-30      10
## 13434     18-30      10
## 13435     50-60       5
## 13436     30-35       7
## 13437     35-40       6
## 13438     18-30      10
## 13439     35-40       6
## 13440     30-35       7
## 13441     50-60       5
## 13442     35-40       6
## 13443     35-40       6
## 13444     18-30      10
## 13445     30-35       7
## 13446     18-30      10
## 13447     40-50       5
## 13448     18-30      10
## 13449     18-30      10
## 13450     18-30      10
## 13451     18-30      10
## 13452     40-50       5
## 13453     18-30      10
## 13454       65+       4
## 13455     50-60       5
## 13456     30-35       7
## 13457     18-30      10
## 13458     18-30      10
## 13459     18-30      10
## 13460     35-40       6
## 13461     18-30      10
## 13462     40-50       5
## 13463     18-30      10
## 13464     18-30      10
## 13465     18-30      10
## 13466     18-30      10
## 13467     30-35       7
## 13468     18-30      10
## 13469     18-30      10
## 13470     18-30      10
## 13471     18-30      10
## 13472     18-30      10
## 13473     18-30      10
## 13474     18-30      10
## 13475     18-30      10
## 13476     30-35       7
## 13477     30-35       7
## 13478     30-35       7
## 13479     18-30      10
## 13480     18-30      10
## 13481     18-30      10
## 13482     18-30      10
## 13483     18-30      10
## 13484     30-35       7
## 13485     30-35       7
## 13486     18-30      10
## 13487     18-30      10
## 13488     40-50       5
## 13489     18-30      10
## 13490     30-35       7
## 13491     30-35       7
## 13492     18-30      10
## 13493     50-60       5
## 13494     30-35       7
## 13495     18-30      10
## 13496     35-40       6
## 13497     18-30      10
## 13498     30-35       7
## 13499     18-30      10
## 13500     18-30      10
## 13501     18-30      10
## 13502     18-30      10
## 13503     18-30      10
## 13504     18-30      10
## 13505     18-30      10
## 13506     30-35       7
## 13507     30-35       7
## 13508     18-30      10
## 13509     18-30      10
## 13510     30-35       7
## 13511     30-35       7
## 13512     18-30      10
## 13513     35-40       6
## 13514     35-40       6
## 13515     40-50       5
## 13516     35-40       6
## 13517     18-30      10
## 13518     18-30      10
## 13519     18-30      10
## 13520     18-30      10
## 13521     40-50       5
## 13522     18-30      10
## 13523     35-40       6
## 13524     18-30      10
## 13525     35-40       6
## 13526     18-30      10
## 13527     18-30      10
## 13528     18-30      10
## 13529     18-30      10
## 13530     40-50       5
## 13531     40-50       5
## 13532     35-40       6
## 13533     30-35       7
## 13534     18-30      10
## 13535     18-30      10
## 13536     40-50       5
## 13537     30-35       7
## 13538     40-50       5
## 13539     18-30      10
## 13540     30-35       7
## 13541     18-30      10
## 13542     30-35       7
## 13543     30-35       7
## 13544     18-30      10
## 13545     30-35       7
## 13546     18-30      10
## 13547     18-30      10
## 13548     18-30      10
## 13549     18-30      10
## 13550     18-30      10
## 13551     40-50       5
## 13552     30-35       7
## 13553     18-30      10
## 13554     18-30      10
## 13555     18-30      10
## 13556     35-40       6
## 13557     18-30      10
## 13558     35-40       6
## 13559     35-40       6
## 13560     35-40       6
## 13561     35-40       6
## 13562     18-30      10
## 13563     35-40       6
## 13564     40-50       5
## 13565     30-35       7
## 13566       65+       4
## 13567     40-50       5
## 13568     18-30      10
## 13569     18-30      10
## 13570     50-60       5
## 13571     18-30      10
## 13572     18-30      10
## 13573     18-30      10
## 13574     18-30      10
## 13575     30-35       7
## 13576     30-35       7
## 13577     18-30      10
## 13578     18-30      10
## 13579       65+       4
## 13580     30-35       7
## 13581     18-30      10
## 13582     18-30      10
## 13583     18-30      10
## 13584     30-35       7
## 13585     18-30      10
## 13586     35-40       6
## 13587     18-30      10
## 13588     30-35       7
## 13589     18-30      10
## 13590     18-30      10
## 13591     35-40       6
## 13592     30-35       7
## 13593     18-30      10
## 13594     18-30      10
## 13595     18-30      10
## 13596     18-30      10
## 13597     18-30      10
## 13598     35-40       6
## 13599     18-30      10
## 13600     18-30      10
## 13601     50-60       5
## 13602     18-30      10
## 13603     18-30      10
## 13604     18-30      10
## 13605     30-35       7
## 13606     18-30      10
## 13607     18-30      10
## 13608     18-30      10
## 13609     35-40       6
## 13610     18-30      10
## 13611     18-30      10
## 13612     18-30      10
## 13613     18-30      10
## 13614     30-35       7
## 13615     18-30      10
## 13616     18-30      10
## 13617     18-30      10
## 13618     18-30      10
## 13619     18-30      10
## 13620     18-30      10
## 13621     18-30      10
## 13622     18-30      10
## 13623     18-30      10
## 13624     18-30      10
## 13625     30-35       7
## 13626     30-35       7
## 13627     18-30      10
## 13628     35-40       6
## 13629     18-30      10
## 13630     30-35       7
## 13631     30-35       7
## 13632     35-40       6
## 13633     30-35       7
## 13634     30-35       7
## 13635     18-30      10
## 13636     30-35       7
## 13637     30-35       7
## 13638     30-35       7
## 13639     40-50       5
## 13640     18-30      10
## 13641     18-30      10
## 13642     40-50       5
## 13643     35-40       6
## 13644       65+       4
## 13645     30-35       7
## 13646     18-30      10
## 13647     50-60       5
## 13648     30-35       7
## 13649     30-35       7
## 13650     30-35       7
## 13651     40-50       5
## 13652     30-35       7
## 13653     30-35       7
## 13654     30-35       7
## 13655     18-30      10
## 13656     18-30      10
## 13657     18-30      10
## 13658     18-30      10
## 13659     18-30      10
## 13660     18-30      10
## 13661     18-30      10
## 13662     30-35       7
## 13663     18-30      10
## 13664     40-50       5
## 13665     35-40       6
## 13666     35-40       6
## 13667     18-30      10
## 13668     18-30      10
## 13669     18-30      10
## 13670     18-30      10
## 13671     18-30      10
## 13672     18-30      10
## 13673     18-30      10
## 13674     35-40       6
## 13675     50-60       5
## 13676     35-40       6
## 13677     35-40       6
## 13678     18-30      10
## 13679     35-40       6
## 13680     18-30      10
## 13681     18-30      10
## 13682     18-30      10
## 13683     18-30      10
## 13684     18-30      10
## 13685     18-30      10
## 13686     18-30      10
## 13687     18-30      10
## 13688     35-40       6
## 13689     35-40       6
## 13690     40-50       5
## 13691     40-50       5
## 13692     35-40       6
## 13693     18-30      10
## 13694     50-60       5
## 13695     18-30      10
## 13696     18-30      10
## 13697     30-35       7
## 13698     18-30      10
## 13699     18-30      10
## 13700     18-30      10
## 13701     18-30      10
## 13702     18-30      10
## 13703     18-30      10
## 13704     18-30      10
## 13705     18-30      10
## 13706     18-30      10
## 13707     18-30      10
## 13708     18-30      10
## 13709     40-50       5
## 13710     30-35       7
## 13711     18-30      10
## 13712     18-30      10
## 13713     30-35       7
## 13714     18-30      10
## 13715     18-30      10
## 13716     30-35       7
## 13717     18-30      10
## 13718     18-30      10
## 13719     30-35       7
## 13720     35-40       6
## 13721     18-30      10
## 13722     40-50       5
## 13723     35-40       6
## 13724     18-30      10
## 13725     30-35       7
## 13726     18-30      10
## 13727     40-50       5
## 13728     35-40       6
## 13729     18-30      10
## 13730     35-40       6
## 13731     40-50       5
## 13732     18-30      10
## 13733     18-30      10
## 13734     30-35       7
## 13735     18-30      10
## 13736     30-35       7
## 13737     30-35       7
## 13738     18-30      10
## 13739     35-40       6
## 13740     30-35       7
## 13741     18-30      10
## 13742     18-30      10
## 13743     35-40       6
## 13744     18-30      10
## 13745     40-50       5
## 13746     18-30      10
## 13747     18-30      10
## 13748     30-35       7
## 13749     18-30      10
## 13750     18-30      10
## 13751     35-40       6
## 13752     30-35       7
## 13753     30-35       7
## 13754     18-30      10
## 13755     18-30      10
## 13756     18-30      10
## 13757     30-35       7
## 13758     18-30      10
## 13759     18-30      10
## 13760     30-35       7
## 13761     30-35       7
## 13762     50-60       5
## 13763     18-30      10
## 13764     40-50       5
## 13765     18-30      10
## 13766     18-30      10
## 13767     18-30      10
## 13768     30-35       7
## 13769     35-40       6
## 13770     50-60       5
## 13771     40-50       5
## 13772     18-30      10
## 13773       65+       4
## 13774     18-30      10
## 13775     35-40       6
## 13776     18-30      10
## 13777     30-35       7
## 13778     18-30      10
## 13779     18-30      10
## 13780     18-30      10
## 13781     18-30      10
## 13782     35-40       6
## 13783     18-30      10
## 13784     18-30      10
## 13785     50-60       5
## 13786       65+       4
## 13787     30-35       7
## 13788     40-50       5
## 13789     35-40       6
## 13790     30-35       7
## 13791     18-30      10
## 13792     18-30      10
## 13793     18-30      10
## 13794     40-50       5
## 13795     30-35       7
## 13796     18-30      10
## 13797     40-50       5
## 13798     18-30      10
## 13799     18-30      10
## 13800     18-30      10
## 13801     18-30      10
## 13802     35-40       6
## 13803     30-35       7
## 13804     18-30      10
## 13805     18-30      10
## 13806     18-30      10
## 13807     18-30      10
## 13808     30-35       7
## 13809     18-30      10
## 13810     18-30      10
## 13811     18-30      10
## 13812     18-30      10
## 13813     18-30      10
## 13814     18-30      10
## 13815     18-30      10
## 13816     18-30      10
## 13817     30-35       7
## 13818     40-50       5
## 13819     18-30      10
## 13820     40-50       5
## 13821     18-30      10
## 13822     18-30      10
## 13823     35-40       6
## 13824     18-30      10
## 13825     18-30      10
## 13826     18-30      10
## 13827     18-30      10
## 13828     18-30      10
## 13829     18-30      10
## 13830     18-30      10
## 13831     30-35       7
## 13832     18-30      10
## 13833     18-30      10
## 13834     18-30      10
## 13835     30-35       7
## 13836     18-30      10
## 13837     18-30      10
## 13838     18-30      10
## 13839     35-40       6
## 13840     50-60       5
## 13841     18-30      10
## 13842     30-35       7
## 13843     18-30      10
## 13844     30-35       7
## 13845     18-30      10
## 13846     30-35       7
## 13847     18-30      10
## 13848       65+       4
## 13849     40-50       5
## 13850     35-40       6
## 13851     50-60       5
## 13852     18-30      10
## 13853     18-30      10
## 13854     18-30      10
## 13855     30-35       7
## 13856     18-30      10
## 13857     30-35       7
## 13858     18-30      10
## 13859     18-30      10
## 13860     18-30      10
## 13861     18-30      10
## 13862     18-30      10
## 13863     18-30      10
## 13864     18-30      10
## 13865     18-30      10
## 13866     18-30      10
## 13867     18-30      10
## 13868     18-30      10
## 13869     18-30      10
## 13870     30-35       7
## 13871     18-30      10
## 13872     18-30      10
## 13873     18-30      10
## 13874     18-30      10
## 13875     18-30      10
## 13876     18-30      10
## 13877     35-40       6
## 13878     35-40       6
## 13879     35-40       6
## 13880     18-30      10
## 13881     18-30      10
## 13882     18-30      10
## 13883     18-30      10
## 13884     18-30      10
## 13885     18-30      10
## 13886     18-30      10
## 13887     18-30      10
## 13888     35-40       6
## 13889     18-30      10
## 13890     18-30      10
## 13891     18-30      10
## 13892     35-40       6
## 13893     18-30      10
## 13894     18-30      10
## 13895     18-30      10
## 13896     18-30      10
## 13897     35-40       6
## 13898     18-30      10
## 13899     18-30      10
## 13900     18-30      10
## 13901     18-30      10
## 13902     18-30      10
## 13903     18-30      10
## 13904     18-30      10
## 13905     18-30      10
## 13906     50-60       5
## 13907     18-30      10
## 13908     40-50       5
## 13909     18-30      10
## 13910     18-30      10
## 13911     40-50       5
## 13912     30-35       7
## 13913     18-30      10
## 13914     18-30      10
## 13915     35-40       6
## 13916     50-60       5
## 13917     18-30      10
## 13918     18-30      10
## 13919     18-30      10
## 13920     40-50       5
## 13921     30-35       7
## 13922     18-30      10
## 13923     18-30      10
## 13924     18-30      10
## 13925     30-35       7
## 13926     18-30      10
## 13927     18-30      10
## 13928     30-35       7
## 13929     40-50       5
## 13930     18-30      10
## 13931     18-30      10
## 13932       65+       4
## 13933     18-30      10
## 13934     18-30      10
## 13935     18-30      10
## 13936     18-30      10
## 13937     18-30      10
## 13938     50-60       5
## 13939     18-30      10
## 13940     30-35       7
## 13941     40-50       5
## 13942     18-30      10
## 13943     35-40       6
## 13944     18-30      10
## 13945     18-30      10
## 13946     35-40       6
## 13947     30-35       7
## 13948     40-50       5
## 13949     40-50       5
## 13950     30-35       7
## 13951     30-35       7
## 13952     18-30      10
## 13953     35-40       6
## 13954     18-30      10
## 13955     18-30      10
## 13956     18-30      10
## 13957     50-60       5
## 13958       65+       4
## 13959     50-60       5
## 13960     35-40       6
## 13961     18-30      10
## 13962     18-30      10
## 13963     18-30      10
## 13964     40-50       5
## 13965     30-35       7
## 13966     30-35       7
## 13967     30-35       7
## 13968     18-30      10
## 13969     18-30      10
## 13970     18-30      10
## 13971     40-50       5
## 13972     40-50       5
## 13973     30-35       7
## 13974     18-30      10
## 13975     30-35       7
## 13976       65+       4
## 13977     18-30      10
## 13978     35-40       6
## 13979     18-30      10
## 13980     30-35       7
## 13981     50-60       5
## 13982       65+       4
## 13983     30-35       7
## 13984     18-30      10
## 13985     50-60       5
## 13986     18-30      10
## 13987     18-30      10
## 13988     18-30      10
## 13989     18-30      10
## 13990     18-30      10
## 13991     50-60       5
## 13992     40-50       5
## 13993     35-40       6
## 13994     18-30      10
## 13995     18-30      10
## 13996     35-40       6
## 13997     30-35       7
## 13998     18-30      10
## 13999     50-60       5
## 14000     18-30      10
## 14001     30-35       7
## 14002     40-50       5
## 14003     30-35       7
## 14004     40-50       5
## 14005     18-30      10
## 14006     18-30      10
## 14007     18-30      10
## 14008     18-30      10
## 14009     18-30      10
## 14010     35-40       6
## 14011     35-40       6
## 14012     18-30      10
## 14013     18-30      10
## 14014     18-30      10
## 14015     30-35       7
## 14016     30-35       7
## 14017     18-30      10
## 14018     18-30      10
## 14019     50-60       5
## 14020     50-60       5
## 14021     18-30      10
## 14022     18-30      10
## 14023     18-30      10
## 14024     18-30      10
## 14025     18-30      10
## 14026     18-30      10
## 14027     30-35       7
## 14028     18-30      10
## 14029     18-30      10
## 14030     18-30      10
## 14031     40-50       5
## 14032     50-60       5
## 14033     18-30      10
## 14034     30-35       7
## 14035     18-30      10
## 14036     18-30      10
## 14037     18-30      10
## 14038       65+       4
## 14039     30-35       7
## 14040     18-30      10
## 14041     30-35       7
## 14042     18-30      10
## 14043     18-30      10
## 14044     18-30      10
## 14045     18-30      10
## 14046     30-35       7
## 14047     18-30      10
## 14048     18-30      10
## 14049     18-30      10
## 14050     18-30      10
## 14051     18-30      10
## 14052     18-30      10
## 14053     18-30      10
## 14054     18-30      10
## 14055     40-50       5
## 14056     18-30      10
## 14057     30-35       7
## 14058     18-30      10
## 14059     18-30      10
## 14060     18-30      10
## 14061     18-30      10
## 14062     35-40       6
## 14063     18-30      10
## 14064     30-35       7
## 14065     18-30      10
## 14066     18-30      10
## 14067     35-40       6
## 14068     18-30      10
## 14069     18-30      10
## 14070     18-30      10
## 14071     18-30      10
## 14072     40-50       5
## 14073     40-50       5
## 14074     30-35       7
## 14075     35-40       6
## 14076       65+       4
## 14077     18-30      10
## 14078     35-40       6
## 14079     35-40       6
## 14080     35-40       6
## 14081     18-30      10
## 14082     18-30      10
## 14083     30-35       7
## 14084     35-40       6
## 14085     18-30      10
## 14086     18-30      10
## 14087     40-50       5
## 14088     35-40       6
## 14089     18-30      10
## 14090     18-30      10
## 14091     18-30      10
## 14092     40-50       5
## 14093     18-30      10
## 14094     18-30      10
## 14095     40-50       5
## 14096     18-30      10
## 14097     35-40       6
## 14098     18-30      10
## 14099     50-60       5
## 14100     18-30      10
## 14101     18-30      10
## 14102     18-30      10
## 14103     30-35       7
## 14104     30-35       7
## 14105     18-30      10
## 14106     18-30      10
## 14107       65+       4
## 14108     35-40       6
## 14109     18-30      10
## 14110     18-30      10
## 14111     18-30      10
## 14112     30-35       7
## 14113     35-40       6
## 14114     18-30      10
## 14115     35-40       6
## 14116     18-30      10
## 14117     40-50       5
## 14118     40-50       5
## 14119     18-30      10
## 14120     40-50       5
## 14121     40-50       5
## 14122     18-30      10
## 14123     18-30      10
## 14124     18-30      10
## 14125     18-30      10
## 14126     18-30      10
## 14127     18-30      10
## 14128     30-35       7
## 14129     40-50       5
## 14130     35-40       6
## 14131     35-40       6
## 14132     18-30      10
## 14133     18-30      10
## 14134     30-35       7
## 14135     30-35       7
## 14136     18-30      10
## 14137     18-30      10
## 14138     30-35       7
## 14139     18-30      10
## 14140     18-30      10
## 14141     18-30      10
## 14142     18-30      10
## 14143     30-35       7
## 14144     18-30      10
## 14145     18-30      10
## 14146     30-35       7
## 14147     35-40       6
## 14148     18-30      10
## 14149     40-50       5
## 14150     18-30      10
## 14151     18-30      10
## 14152     30-35       7
## 14153     18-30      10
## 14154     18-30      10
## 14155     18-30      10
## 14156     18-30      10
## 14157     18-30      10
## 14158     40-50       5
## 14159     18-30      10
## 14160     18-30      10
## 14161     18-30      10
## 14162     35-40       6
## 14163     40-50       5
## 14164     18-30      10
## 14165     18-30      10
## 14166     30-35       7
## 14167     18-30      10
## 14168     18-30      10
## 14169     18-30      10
## 14170     18-30      10
## 14171     18-30      10
## 14172     18-30      10
## 14173     35-40       6
## 14174     18-30      10
## 14175     18-30      10
## 14176     18-30      10
## 14177     18-30      10
## 14178     35-40       6
## 14179     18-30      10
## 14180     18-30      10
## 14181     30-35       7
## 14182     18-30      10
## 14183     18-30      10
## 14184     18-30      10
## 14185     30-35       7
## 14186     18-30      10
## 14187     30-35       7
## 14188     18-30      10
## 14189     18-30      10
## 14190     30-35       7
## 14191     18-30      10
## 14192     18-30      10
## 14193     18-30      10
## 14194     30-35       7
## 14195     35-40       6
## 14196     18-30      10
## 14197     18-30      10
## 14198     18-30      10
## 14199     18-30      10
## 14200     18-30      10
## 14201     18-30      10
## 14202     18-30      10
## 14203     18-30      10
## 14204     18-30      10
## 14205     18-30      10
## 14206     18-30      10
## 14207     30-35       7
## 14208     18-30      10
## 14209     18-30      10
## 14210     18-30      10
## 14211     18-30      10
## 14212     30-35       7
## 14213     18-30      10
## 14214     18-30      10
## 14215     18-30      10
## 14216     18-30      10
## 14217     18-30      10
## 14218     50-60       5
## 14219     35-40       6
## 14220     18-30      10
## 14221     35-40       6
## 14222     18-30      10
## 14223     30-35       7
## 14224     30-35       7
## 14225     35-40       6
## 14226     30-35       7
## 14227     35-40       6
## 14228     40-50       5
## 14229     35-40       6
## 14230     18-30      10
## 14231     18-30      10
## 14232     18-30      10
## 14233     18-30      10
## 14234     18-30      10
## 14235     30-35       7
## 14236     30-35       7
## 14237     18-30      10
## 14238     30-35       7
## 14239     18-30      10
## 14240     30-35       7
## 14241     30-35       7
## 14242     30-35       7
## 14243     40-50       5
## 14244     35-40       6
## 14245     18-30      10
## 14246     18-30      10
## 14247     30-35       7
## 14248     18-30      10
## 14249     35-40       6
## 14250     35-40       6
## 14251     18-30      10
## 14252     18-30      10
## 14253     18-30      10
## 14254     30-35       7
## 14255     18-30      10
## 14256     18-30      10
## 14257     35-40       6
## 14258     18-30      10
## 14259     40-50       5
## 14260     18-30      10
## 14261     40-50       5
## 14262     18-30      10
## 14263     18-30      10
## 14264     40-50       5
## 14265     18-30      10
## 14266     18-30      10
## 14267     18-30      10
## 14268     30-35       7
## 14269     18-30      10
## 14270     18-30      10
## 14271     40-50       5
## 14272     18-30      10
## 14273     18-30      10
## 14274     30-35       7
## 14275     35-40       6
## 14276     35-40       6
## 14277     18-30      10
## 14278     30-35       7
## 14279     18-30      10
## 14280     18-30      10
## 14281     18-30      10
## 14282     18-30      10
## 14283     18-30      10
## 14284     40-50       5
## 14285     18-30      10
## 14286     18-30      10
## 14287     30-35       7
## 14288     40-50       5
## 14289     30-35       7
## 14290     30-35       7
## 14291     30-35       7
## 14292     18-30      10
## 14293     18-30      10
## 14294     30-35       7
## 14295     40-50       5
## 14296     40-50       5
## 14297     30-35       7
## 14298     18-30      10
## 14299     18-30      10
## 14300     18-30      10
## 14301     18-30      10
## 14302     40-50       5
## 14303     30-35       7
## 14304     18-30      10
## 14305     18-30      10
## 14306     30-35       7
## 14307     30-35       7
## 14308     40-50       5
## 14309     18-30      10
## 14310     18-30      10
## 14311     30-35       7
## 14312     18-30      10
## 14313     30-35       7
## 14314     18-30      10
## 14315     18-30      10
## 14316     18-30      10
## 14317     30-35       7
## 14318     18-30      10
## 14319     18-30      10
## 14320     30-35       7
## 14321     18-30      10
## 14322     18-30      10
## 14323     30-35       7
## 14324     40-50       5
## 14325     18-30      10
## 14326     18-30      10
## 14327     18-30      10
## 14328     40-50       5
## 14329     18-30      10
## 14330     18-30      10
## 14331     18-30      10
## 14332     30-35       7
## 14333     18-30      10
## 14334     18-30      10
## 14335     18-30      10
## 14336     18-30      10
## 14337     18-30      10
## 14338     18-30      10
## 14339     18-30      10
## 14340     18-30      10
## 14341     30-35       7
## 14342     18-30      10
## 14343     40-50       5
## 14344     30-35       7
## 14345     30-35       7
## 14346     35-40       6
## 14347     30-35       7
## 14348     18-30      10
## 14349     35-40       6
## 14350       65+       4
## 14351     30-35       7
## 14352     50-60       5
## 14353     40-50       5
## 14354     18-30      10
## 14355     18-30      10
## 14356     18-30      10
## 14357     18-30      10
## 14358     18-30      10
## 14359     18-30      10
## 14360     18-30      10
## 14361     30-35       7
## 14362     18-30      10
## 14363     35-40       6
## 14364     30-35       7
## 14365     30-35       7
## 14366     30-35       7
## 14367     30-35       7
## 14368     18-30      10
## 14369     35-40       6
## 14370     50-60       5
## 14371     18-30      10
## 14372     18-30      10
## 14373     18-30      10
## 14374     18-30      10
## 14375     18-30      10
## 14376     18-30      10
## 14377     18-30      10
## 14378     18-30      10
## 14379     18-30      10
## 14380     18-30      10
## 14381     30-35       7
## 14382     18-30      10
## 14383     30-35       7
## 14384     18-30      10
## 14385     40-50       5
## 14386     18-30      10
## 14387     35-40       6
## 14388     30-35       7
## 14389     18-30      10
## 14390     30-35       7
## 14391     30-35       7
## 14392     18-30      10
## 14393     30-35       7
## 14394     30-35       7
## 14395     50-60       5
## 14396     40-50       5
## 14397     18-30      10
## 14398     35-40       6
## 14399     40-50       5
## 14400     35-40       6
## 14401     18-30      10
## 14402     30-35       7
## 14403     30-35       7
## 14404     30-35       7
## 14405     18-30      10
## 14406     18-30      10
## 14407     18-30      10
## 14408     18-30      10
## 14409       65+       4
## 14410     18-30      10
## 14411     40-50       5
## 14412     18-30      10
## 14413     40-50       5
## 14414     18-30      10
## 14415     18-30      10
## 14416     18-30      10
## 14417     18-30      10
## 14418     30-35       7
## 14419     40-50       5
## 14420     35-40       6
## 14421     18-30      10
## 14422     18-30      10
## 14423     30-35       7
## 14424     35-40       6
## 14425     40-50       5
## 14426       65+       4
## 14427     40-50       5
## 14428     18-30      10
## 14429     18-30      10
## 14430     40-50       5
## 14431     30-35       7
## 14432     18-30      10
## 14433     30-35       7
## 14434     30-35       7
## 14435     18-30      10
## 14436     35-40       6
## 14437     30-35       7
## 14438     18-30      10
## 14439     40-50       5
## 14440     18-30      10
## 14441     50-60       5
## 14442     35-40       6
## 14443     18-30      10
## 14444     18-30      10
## 14445     40-50       5
## 14446     35-40       6
## 14447     18-30      10
## 14448     40-50       5
## 14449     18-30      10
## 14450     18-30      10
## 14451     30-35       7
## 14452     18-30      10
## 14453     18-30      10
## 14454     18-30      10
## 14455     18-30      10
## 14456     30-35       7
## 14457     35-40       6
## 14458     30-35       7
## 14459     35-40       6
## 14460     30-35       7
## 14461     30-35       7
## 14462     50-60       5
## 14463     18-30      10
## 14464     40-50       5
## 14465     18-30      10
## 14466     30-35       7
## 14467     30-35       7
## 14468     40-50       5
## 14469     18-30      10
## 14470     50-60       5
## 14471     40-50       5
## 14472     18-30      10
## 14473     18-30      10
## 14474     30-35       7
## 14475     30-35       7
## 14476     18-30      10
## 14477     18-30      10
## 14478     18-30      10
## 14479     30-35       7
## 14480     18-30      10
## 14481       65+       4
## 14482     40-50       5
## 14483     40-50       5
## 14484     30-35       7
## 14485     18-30      10
## 14486     18-30      10
## 14487     18-30      10
## 14488     40-50       5
## 14489     18-30      10
## 14490     30-35       7
## 14491     30-35       7
## 14492     30-35       7
## 14493     18-30      10
## 14494     18-30      10
## 14495     18-30      10
## 14496       65+       4
## 14497     40-50       5
## 14498     40-50       5
## 14499     40-50       5
## 14500     50-60       5
## 14501     18-30      10
## 14502     18-30      10
## 14503     18-30      10
## 14504     30-35       7
## 14505     35-40       6
## 14506     18-30      10
## 14507     18-30      10
## 14508     40-50       5
## 14509     40-50       5
## 14510     18-30      10
## 14511     50-60       5
## 14512     18-30      10
## 14513     18-30      10
## 14514     40-50       5
## 14515     50-60       5
## 14516     18-30      10
## 14517     18-30      10
## 14518     30-35       7
## 14519     18-30      10
## 14520     18-30      10
## 14521     18-30      10
## 14522     18-30      10
## 14523     18-30      10
## 14524     18-30      10
## 14525     18-30      10
## 14526     35-40       6
## 14527     50-60       5
## 14528     35-40       6
## 14529     18-30      10
## 14530     18-30      10
## 14531     30-35       7
## 14532     30-35       7
## 14533     18-30      10
## 14534     18-30      10
## 14535     18-30      10
## 14536     18-30      10
## 14537     30-35       7
## 14538     18-30      10
## 14539     18-30      10
## 14540     18-30      10
## 14541     50-60       5
## 14542     18-30      10
## 14543     18-30      10
## 14544     30-35       7
## 14545     18-30      10
## 14546     18-30      10
## 14547     35-40       6
## 14548     50-60       5
## 14549     40-50       5
## 14550     40-50       5
## 14551     18-30      10
## 14552     18-30      10
## 14553     18-30      10
## 14554       65+       4
## 14555     40-50       5
## 14556       65+       4
## 14557     30-35       7
## 14558     30-35       7
## 14559     18-30      10
## 14560     18-30      10
## 14561     18-30      10
## 14562     18-30      10
## 14563     30-35       7
## 14564     40-50       5
## 14565     18-30      10
## 14566     40-50       5
## 14567     50-60       5
## 14568     40-50       5
## 14569     30-35       7
## 14570     35-40       6
## 14571     30-35       7
## 14572     18-30      10
## 14573     50-60       5
## 14574     30-35       7
## 14575     18-30      10
## 14576     30-35       7
## 14577     30-35       7
## 14578     35-40       6
## 14579     18-30      10
## 14580     40-50       5
## 14581     35-40       6
## 14582     18-30      10
## 14583     18-30      10
## 14584     18-30      10
## 14585     18-30      10
## 14586     40-50       5
## 14587     18-30      10
## 14588     18-30      10
## 14589     18-30      10
## 14590     40-50       5
## 14591     40-50       5
## 14592     18-30      10
## 14593     18-30      10
## 14594     30-35       7
## 14595     30-35       7
## 14596     18-30      10
## 14597     18-30      10
## 14598     30-35       7
## 14599     40-50       5
## 14600     18-30      10
## 14601     18-30      10
## 14602     50-60       5
## 14603     18-30      10
## 14604     30-35       7
## 14605     30-35       7
## 14606     18-30      10
## 14607     35-40       6
## 14608     35-40       6
## 14609     18-30      10
## 14610     18-30      10
## 14611     18-30      10
## 14612     35-40       6
## 14613     35-40       6
## 14614     30-35       7
## 14615     30-35       7
## 14616     18-30      10
## 14617     18-30      10
## 14618     40-50       5
## 14619     40-50       5
## 14620     30-35       7
## 14621     18-30      10
## 14622     18-30      10
## 14623     35-40       6
## 14624     18-30      10
## 14625     18-30      10
## 14626     18-30      10
## 14627     18-30      10
## 14628     30-35       7
## 14629     18-30      10
## 14630     35-40       6
## 14631     50-60       5
## 14632     18-30      10
## 14633     18-30      10
## 14634     18-30      10
## 14635     18-30      10
## 14636     30-35       7
## 14637     18-30      10
## 14638     18-30      10
## 14639     30-35       7
## 14640     40-50       5
## 14641     40-50       5
## 14642     18-30      10
## 14643     40-50       5
## 14644     40-50       5
## 14645     30-35       7
## 14646     40-50       5
## 14647     30-35       7
## 14648     30-35       7
## 14649     30-35       7
## 14650     40-50       5
## 14651     30-35       7
## 14652     18-30      10
## 14653     30-35       7
## 14654     30-35       7
## 14655     18-30      10
## 14656     18-30      10
## 14657     30-35       7
## 14658     18-30      10
## 14659     35-40       6
## 14660     18-30      10
## 14661     18-30      10
## 14662     35-40       6
## 14663     18-30      10
## 14664     40-50       5
## 14665     35-40       6
## 14666     18-30      10
## 14667     35-40       6
## 14668     18-30      10
## 14669     18-30      10
## 14670     18-30      10
## 14671     30-35       7
## 14672     18-30      10
## 14673     40-50       5
## 14674     30-35       7
## 14675     18-30      10
## 14676     40-50       5
## 14677     18-30      10
## 14678     35-40       6
## 14679     30-35       7
## 14680     35-40       6
## 14681     50-60       5
## 14682     35-40       6
## 14683     18-30      10
## 14684     18-30      10
## 14685     30-35       7
## 14686     18-30      10
## 14687     18-30      10
## 14688     18-30      10
## 14689     30-35       7
## 14690     18-30      10
## 14691     18-30      10
## 14692     30-35       7
## 14693     40-50       5
## 14694     18-30      10
## 14695     18-30      10
## 14696     35-40       6
## 14697     18-30      10
## 14698     30-35       7
## 14699     18-30      10
## 14700     18-30      10
## 14701     30-35       7
## 14702     40-50       5
## 14703     18-30      10
## 14704     35-40       6
## 14705     18-30      10
## 14706     50-60       5
## 14707     18-30      10
## 14708     18-30      10
## 14709     40-50       5
## 14710     18-30      10
## 14711     40-50       5
## 14712     30-35       7
## 14713     18-30      10
## 14714     18-30      10
## 14715     18-30      10
## 14716     40-50       5
## 14717     30-35       7
## 14718     18-30      10
## 14719     18-30      10
## 14720     35-40       6
## 14721     18-30      10
## 14722     30-35       7
## 14723     35-40       6
## 14724     18-30      10
## 14725     30-35       7
## 14726     30-35       7
## 14727     18-30      10
## 14728     18-30      10
## 14729     18-30      10
## 14730     18-30      10
## 14731     40-50       5
## 14732     18-30      10
## 14733     18-30      10
## 14734     30-35       7
## 14735     18-30      10
## 14736     18-30      10
## 14737     18-30      10
## 14738     18-30      10
## 14739     30-35       7
## 14740     30-35       7
## 14741     40-50       5
## 14742     30-35       7
## 14743     18-30      10
## 14744     18-30      10
## 14745     18-30      10
## 14746     18-30      10
## 14747     40-50       5
## 14748     18-30      10
## 14749     18-30      10
## 14750     40-50       5
## 14751     18-30      10
## 14752     30-35       7
## 14753     18-30      10
## 14754     18-30      10
## 14755     40-50       5
## 14756     30-35       7
## 14757     18-30      10
## 14758     30-35       7
## 14759     40-50       5
## 14760     35-40       6
## 14761     30-35       7
## 14762     18-30      10
## 14763     40-50       5
## 14764     40-50       5
## 14765     30-35       7
## 14766     35-40       6
## 14767     18-30      10
## 14768     18-30      10
## 14769     18-30      10
## 14770     18-30      10
## 14771     18-30      10
## 14772     35-40       6
## 14773     18-30      10
## 14774     18-30      10
## 14775     18-30      10
## 14776     18-30      10
## 14777     35-40       6
## 14778     18-30      10
## 14779     18-30      10
## 14780     18-30      10
## 14781     18-30      10
## 14782     18-30      10
## 14783       65+       4
## 14784     30-35       7
## 14785     18-30      10
## 14786     40-50       5
## 14787     18-30      10
## 14788     18-30      10
## 14789     30-35       7
## 14790     35-40       6
## 14791     18-30      10
## 14792     18-30      10
## 14793     30-35       7
## 14794     18-30      10
## 14795     30-35       7
## 14796     18-30      10
## 14797     40-50       5
## 14798     18-30      10
## 14799     35-40       6
## 14800     18-30      10
## 14801     30-35       7
## 14802     18-30      10
## 14803     18-30      10
## 14804     18-30      10
## 14805     18-30      10
## 14806       65+       4
## 14807     18-30      10
## 14808     18-30      10
## 14809     35-40       6
## 14810     18-30      10
## 14811     18-30      10
## 14812     30-35       7
## 14813     18-30      10
## 14814     18-30      10
## 14815     18-30      10
## 14816     30-35       7
## 14817     18-30      10
## 14818     18-30      10
## 14819     30-35       7
## 14820     18-30      10
## 14821     40-50       5
## 14822     50-60       5
## 14823     18-30      10
## 14824     18-30      10
## 14825     40-50       5
## 14826     18-30      10
## 14827     18-30      10
## 14828     30-35       7
## 14829     30-35       7
## 14830     18-30      10
## 14831     18-30      10
## 14832     18-30      10
## 14833     40-50       5
## 14834     18-30      10
## 14835     40-50       5
## 14836     18-30      10
## 14837     18-30      10
## 14838     40-50       5
## 14839     18-30      10
## 14840     18-30      10
## 14841     30-35       7
## 14842     18-30      10
## 14843     40-50       5
## 14844     40-50       5
## 14845     18-30      10
## 14846     18-30      10
## 14847     35-40       6
## 14848     18-30      10
## 14849     18-30      10
## 14850     18-30      10
## 14851     18-30      10
## 14852     30-35       7
## 14853     18-30      10
## 14854     30-35       7
## 14855     18-30      10
## 14856     30-35       7
## 14857     18-30      10
## 14858     18-30      10
## 14859     50-60       5
## 14860     35-40       6
## 14861     40-50       5
## 14862     50-60       5
## 14863     40-50       5
## 14864     30-35       7
## 14865     18-30      10
## 14866     18-30      10
## 14867     40-50       5
## 14868     18-30      10
## 14869     18-30      10
## 14870     18-30      10
## 14871     18-30      10
## 14872     30-35       7
## 14873     30-35       7
## 14874     18-30      10
## 14875     18-30      10
## 14876     30-35       7
## 14877     40-50       5
## 14878     40-50       5
## 14879     40-50       5
## 14880     40-50       5
## 14881     18-30      10
## 14882     40-50       5
## 14883     18-30      10
## 14884     18-30      10
## 14885     30-35       7
## 14886     18-30      10
## 14887     35-40       6
## 14888     30-35       7
## 14889     18-30      10
## 14890     30-35       7
## 14891     18-30      10
## 14892     40-50       5
## 14893       65+       4
## 14894     18-30      10
## 14895     40-50       5
## 14896     30-35       7
## 14897     30-35       7
## 14898     30-35       7
## 14899     18-30      10
## 14900     40-50       5
## 14901     30-35       7
## 14902     18-30      10
## 14903     30-35       7
## 14904     18-30      10
## 14905     40-50       5
## 14906     18-30      10
## 14907     40-50       5
## 14908     40-50       5
## 14909     35-40       6
## 14910     30-35       7
## 14911     18-30      10
## 14912     18-30      10
## 14913     40-50       5
## 14914     18-30      10
## 14915     30-35       7
## 14916     18-30      10
## 14917     50-60       5
## 14918     18-30      10
## 14919     40-50       5
## 14920     35-40       6
## 14921     18-30      10
## 14922     30-35       7
## 14923     18-30      10
## 14924     18-30      10
## 14925     40-50       5
## 14926     50-60       5
## 14927     30-35       7
## 14928     40-50       5
## 14929     18-30      10
## 14930     40-50       5
## 14931     30-35       7
## 14932     18-30      10
## 14933     30-35       7
## 14934     18-30      10
## 14935     18-30      10
## 14936     18-30      10
## 14937     35-40       6
## 14938     50-60       5
## 14939     18-30      10
## 14940     18-30      10
## 14941     30-35       7
## 14942     18-30      10
## 14943     30-35       7
## 14944     18-30      10
## 14945     30-35       7
## 14946     30-35       7
## 14947     18-30      10
## 14948     18-30      10
## 14949     18-30      10
## 14950     18-30      10
## 14951     18-30      10
## 14952     35-40       6
## 14953     18-30      10
## 14954     18-30      10
## 14955     18-30      10
## 14956     18-30      10
## 14957     18-30      10
## 14958     18-30      10
## 14959     18-30      10
## 14960     18-30      10
## 14961     18-30      10
## 14962     18-30      10
## 14963     30-35       7
## 14964     40-50       5
## 14965     18-30      10
## 14966       65+       4
## 14967     40-50       5
## 14968     40-50       5
## 14969     35-40       6
## 14970     18-30      10
## 14971     40-50       5
## 14972     35-40       6
## 14973     18-30      10
## 14974     40-50       5
## 14975     18-30      10
## 14976     35-40       6
## 14977     30-35       7
## 14978       65+       4
## 14979     30-35       7
## 14980     18-30      10
## 14981     40-50       5
## 14982     50-60       5
## 14983     50-60       5
## 14984     18-30      10
## 14985     18-30      10
## 14986     18-30      10
## 14987     50-60       5
## 14988     30-35       7
## 14989     35-40       6
## 14990     30-35       7
## 14991     18-30      10
## 14992     50-60       5
## 14993     18-30      10
## 14994     18-30      10
## 14995     18-30      10
## 14996     18-30      10
## 14997     18-30      10
## 14998     18-30      10
## 14999     18-30      10
## 15000     30-35       7
## 15001     18-30      10
## 15002     18-30      10
## 15003     18-30      10
## 15004     30-35       7
## 15005     30-35       7
## 15006     18-30      10
## 15007     18-30      10
## 15008     18-30      10
## 15009     40-50       5
## 15010     35-40       6
## 15011     18-30      10
## 15012     18-30      10
## 15013     35-40       6
## 15014     30-35       7
## 15015     35-40       6
## 15016     18-30      10
## 15017     18-30      10
## 15018     18-30      10
## 15019     18-30      10
## 15020     18-30      10
## 15021     18-30      10
## 15022     18-30      10
## 15023     18-30      10
## 15024     18-30      10
## 15025     30-35       7
## 15026     40-50       5
## 15027     50-60       5
## 15028     35-40       6
## 15029     40-50       5
## 15030     18-30      10
## 15031     30-35       7
## 15032     18-30      10
## 15033     30-35       7
## 15034     18-30      10
## 15035     40-50       5
## 15036     30-35       7
## 15037     18-30      10
## 15038     30-35       7
## 15039     18-30      10
## 15040     18-30      10
## 15041     18-30      10
## 15042     18-30      10
## 15043     18-30      10
## 15044     18-30      10
## 15045     30-35       7
## 15046     18-30      10
## 15047     35-40       6
## 15048     35-40       6
## 15049     50-60       5
## 15050     40-50       5
## 15051     18-30      10
## 15052     40-50       5
## 15053     18-30      10
## 15054     18-30      10
## 15055     30-35       7
## 15056     18-30      10
## 15057     50-60       5
## 15058     18-30      10
## 15059     40-50       5
## 15060     18-30      10
## 15061     18-30      10
## 15062     18-30      10
## 15063     18-30      10
## 15064     30-35       7
## 15065     35-40       6
## 15066     40-50       5
## 15067     40-50       5
## 15068     18-30      10
## 15069     40-50       5
## 15070     18-30      10
## 15071     30-35       7
## 15072     18-30      10
## 15073     18-30      10
## 15074     18-30      10
## 15075     18-30      10
## 15076     18-30      10
## 15077     30-35       7
## 15078     18-30      10
## 15079     18-30      10
## 15080     18-30      10
## 15081     18-30      10
## 15082     35-40       6
## 15083     40-50       5
## 15084     35-40       6
## 15085     35-40       6
## 15086     18-30      10
## 15087     40-50       5
## 15088     40-50       5
## 15089       65+       4
## 15090     18-30      10
## 15091     50-60       5
## 15092     35-40       6
## 15093     18-30      10
## 15094     40-50       5
## 15095       65+       4
## 15096     18-30      10
## 15097     18-30      10
## 15098     18-30      10
## 15099     30-35       7
## 15100     40-50       5
## 15101     18-30      10
## 15102     35-40       6
## 15103     40-50       5
## 15104     18-30      10
## 15105     30-35       7
## 15106     30-35       7
## 15107     18-30      10
## 15108     35-40       6
## 15109     30-35       7
## 15110       65+       4
## 15111     18-30      10
## 15112     30-35       7
## 15113     18-30      10
## 15114     18-30      10
## 15115     40-50       5
## 15116     30-35       7
## 15117     50-60       5
## 15118     40-50       5
## 15119     18-30      10
## 15120     18-30      10
## 15121     18-30      10
## 15122     40-50       5
## 15123     30-35       7
## 15124     50-60       5
## 15125     18-30      10
## 15126     18-30      10
## 15127     18-30      10
## 15128     40-50       5
## 15129     18-30      10
## 15130     18-30      10
## 15131     18-30      10
## 15132     18-30      10
## 15133     18-30      10
## 15134     35-40       6
## 15135     18-30      10
## 15136     40-50       5
## 15137     40-50       5
## 15138     40-50       5
## 15139     30-35       7
## 15140     30-35       7
## 15141     18-30      10
## 15142     40-50       5
## 15143     18-30      10
## 15144     50-60       5
## 15145     18-30      10
## 15146     18-30      10
## 15147     18-30      10
## 15148     18-30      10
## 15149     30-35       7
## 15150     35-40       6
## 15151     18-30      10
## 15152     18-30      10
## 15153     18-30      10
## 15154     40-50       5
## 15155     30-35       7
## 15156     40-50       5
## 15157     30-35       7
## 15158     18-30      10
## 15159       65+       4
## 15160       65+       4
## 15161     18-30      10
## 15162     18-30      10
## 15163     18-30      10
## 15164     18-30      10
## 15165     30-35       7
## 15166     18-30      10
## 15167     18-30      10
## 15168     35-40       6
## 15169     18-30      10
## 15170     18-30      10
## 15171     18-30      10
## 15172     40-50       5
## 15173     18-30      10
## 15174     30-35       7
## 15175     30-35       7
## 15176     30-35       7
## 15177     18-30      10
## 15178     18-30      10
## 15179     30-35       7
## 15180     30-35       7
## 15181     35-40       6
## 15182     50-60       5
## 15183     18-30      10
## 15184     35-40       6
## 15185     40-50       5
## 15186     18-30      10
## 15187     30-35       7
## 15188     18-30      10
## 15189     18-30      10
## 15190     18-30      10
## 15191     18-30      10
## 15192     40-50       5
## 15193     18-30      10
## 15194     40-50       5
## 15195     40-50       5
## 15196     18-30      10
## 15197     18-30      10
## 15198     18-30      10
## 15199     18-30      10
## 15200     30-35       7
## 15201     50-60       5
## 15202     18-30      10
## 15203     35-40       6
## 15204     50-60       5
## 15205       65+       4
## 15206     18-30      10
## 15207     50-60       5
## 15208     30-35       7
## 15209     18-30      10
## 15210     30-35       7
## 15211     18-30      10
## 15212     30-35       7
## 15213     35-40       6
## 15214     40-50       5
## 15215     18-30      10
## 15216     50-60       5
## 15217     50-60       5
## 15218     40-50       5
## 15219     40-50       5
## 15220     30-35       7
## 15221     18-30      10
## 15222     18-30      10
## 15223     18-30      10
## 15224     18-30      10
## 15225     40-50       5
## 15226     18-30      10
## 15227     50-60       5
## 15228     35-40       6
## 15229     18-30      10
## 15230     18-30      10
## 15231     18-30      10
## 15232     18-30      10
## 15233     35-40       6
## 15234     50-60       5
## 15235     18-30      10
## 15236     18-30      10
## 15237     18-30      10
## 15238     18-30      10
## 15239     40-50       5
## 15240     18-30      10
## 15241     18-30      10
## 15242     18-30      10
## 15243     50-60       5
## 15244     40-50       5
## 15245     18-30      10
## 15246     18-30      10
## 15247     18-30      10
## 15248     18-30      10
## 15249     18-30      10
## 15250     35-40       6
## 15251     30-35       7
## 15252     35-40       6
## 15253     35-40       6
## 15254     18-30      10
## 15255     18-30      10
## 15256     18-30      10
## 15257     18-30      10
## 15258     18-30      10
## 15259     40-50       5
## 15260     18-30      10
## 15261     18-30      10
## 15262     18-30      10
## 15263     18-30      10
## 15264     30-35       7
## 15265     40-50       5
## 15266     18-30      10
## 15267     18-30      10
## 15268     18-30      10
## 15269     40-50       5
## 15270     40-50       5
## 15271     18-30      10
## 15272     18-30      10
## 15273     30-35       7
## 15274     18-30      10
## 15275     18-30      10
## 15276     18-30      10
## 15277     40-50       5
## 15278     18-30      10
## 15279     18-30      10
## 15280     18-30      10
## 15281     35-40       6
## 15282     35-40       6
## 15283     18-30      10
## 15284     50-60       5
## 15285     35-40       6
## 15286     18-30      10
## 15287     18-30      10
## 15288     40-50       5
## 15289     18-30      10
## 15290     18-30      10
## 15291     18-30      10
## 15292     18-30      10
## 15293     18-30      10
## 15294     30-35       7
## 15295     18-30      10
## 15296     30-35       7
## 15297     35-40       6
## 15298     30-35       7
## 15299     18-30      10
## 15300     18-30      10
## 15301     35-40       6
## 15302     18-30      10
## 15303     30-35       7
## 15304     18-30      10
## 15305     18-30      10
## 15306     30-35       7
## 15307     18-30      10
## 15308     35-40       6
## 15309     18-30      10
## 15310     18-30      10
## 15311     18-30      10
## 15312     18-30      10
## 15313     18-30      10
## 15314     30-35       7
## 15315     50-60       5
## 15316     50-60       5
## 15317     18-30      10
## 15318     18-30      10
## 15319     35-40       6
## 15320     18-30      10
## 15321     18-30      10
## 15322     18-30      10
## 15323     35-40       6
## 15324     30-35       7
## 15325     30-35       7
## 15326     30-35       7
## 15327     30-35       7
## 15328     18-30      10
## 15329     40-50       5
## 15330     35-40       6
## 15331     18-30      10
## 15332     30-35       7
## 15333     35-40       6
## 15334     30-35       7
## 15335     18-30      10
## 15336     18-30      10
## 15337     30-35       7
## 15338     40-50       5
## 15339     18-30      10
## 15340     18-30      10
## 15341     40-50       5
## 15342     18-30      10
## 15343     40-50       5
## 15344     18-30      10
## 15345     18-30      10
## 15346     18-30      10
## 15347     18-30      10
## 15348     18-30      10
## 15349     18-30      10
## 15350     18-30      10
## 15351     35-40       6
## 15352     35-40       6
## 15353     18-30      10
## 15354     18-30      10
## 15355     30-35       7
## 15356     40-50       5
## 15357     18-30      10
## 15358     30-35       7
## 15359     40-50       5
## 15360     18-30      10
## 15361     18-30      10
## 15362     18-30      10
## 15363     30-35       7
## 15364     18-30      10
## 15365     35-40       6
## 15366     18-30      10
## 15367     18-30      10
## 15368     18-30      10
## 15369     18-30      10
## 15370     35-40       6
## 15371     18-30      10
## 15372     30-35       7
## 15373     18-30      10
## 15374     18-30      10
## 15375     50-60       5
## 15376     18-30      10
## 15377     18-30      10
## 15378     18-30      10
## 15379     18-30      10
## 15380     18-30      10
## 15381     18-30      10
## 15382     30-35       7
## 15383     30-35       7
## 15384     18-30      10
## 15385     30-35       7
## 15386     18-30      10
## 15387     18-30      10
## 15388     18-30      10
## 15389     18-30      10
## 15390     18-30      10
## 15391     30-35       7
## 15392     18-30      10
## 15393     40-50       5
## 15394     18-30      10
## 15395     40-50       5
## 15396     18-30      10
## 15397     18-30      10
## 15398     18-30      10
## 15399     50-60       5
## 15400     18-30      10
## 15401     40-50       5
## 15402     40-50       5
## 15403     18-30      10
## 15404     18-30      10
## 15405     30-35       7
## 15406     18-30      10
## 15407     40-50       5
## 15408     18-30      10
## 15409     18-30      10
## 15410     30-35       7
## 15411     18-30      10
## 15412     35-40       6
## 15413     18-30      10
## 15414     18-30      10
## 15415     30-35       7
## 15416       65+       4
## 15417     18-30      10
## 15418     18-30      10
## 15419     30-35       7
## 15420     30-35       7
## 15421     40-50       5
## 15422     30-35       7
## 15423     30-35       7
## 15424     18-30      10
## 15425     18-30      10
## 15426     18-30      10
## 15427     18-30      10
## 15428     18-30      10
## 15429     18-30      10
## 15430     18-30      10
## 15431     30-35       7
## 15432     50-60       5
## 15433     40-50       5
## 15434     35-40       6
## 15435     18-30      10
## 15436     50-60       5
## 15437     50-60       5
## 15438     40-50       5
## 15439       65+       4
## 15440     18-30      10
## 15441     18-30      10
## 15442     30-35       7
## 15443     30-35       7
## 15444     30-35       7
## 15445     18-30      10
## 15446     18-30      10
## 15447     18-30      10
## 15448     18-30      10
## 15449     18-30      10
## 15450     30-35       7
## 15451     18-30      10
## 15452     18-30      10
## 15453     18-30      10
## 15454     18-30      10
## 15455     18-30      10
## 15456     18-30      10
## 15457     18-30      10
## 15458     40-50       5
## 15459     30-35       7
## 15460     18-30      10
## 15461     30-35       7
## 15462     30-35       7
## 15463     40-50       5
## 15464     18-30      10
## 15465     18-30      10
## 15466     18-30      10
## 15467     18-30      10
## 15468     18-30      10
## 15469     30-35       7
## 15470     30-35       7
## 15471     18-30      10
## 15472     18-30      10
## 15473     30-35       7
## 15474     18-30      10
## 15475     35-40       6
## 15476     30-35       7
## 15477     18-30      10
## 15478     40-50       5
## 15479     30-35       7
## 15480     18-30      10
## 15481     18-30      10
## 15482     40-50       5
## 15483     18-30      10
## 15484     18-30      10
## 15485     30-35       7
## 15486     18-30      10
## 15487     40-50       5
## 15488     18-30      10
## 15489     18-30      10
## 15490     30-35       7
## 15491     18-30      10
## 15492     50-60       5
## 15493     18-30      10
## 15494     40-50       5
## 15495     18-30      10
## 15496     18-30      10
## 15497     18-30      10
## 15498     18-30      10
## 15499     18-30      10
## 15500     18-30      10
## 15501     30-35       7
## 15502     18-30      10
## 15503     18-30      10
## 15504     18-30      10
## 15505     18-30      10
## 15506     18-30      10
## 15507     30-35       7
## 15508     18-30      10
## 15509     30-35       7
## 15510     30-35       7
## 15511     35-40       6
## 15512     18-30      10
## 15513     18-30      10
## 15514     30-35       7
## 15515     30-35       7
## 15516     18-30      10
## 15517     30-35       7
## 15518     40-50       5
## 15519     30-35       7
## 15520     18-30      10
## 15521     18-30      10
## 15522     18-30      10
## 15523     30-35       7
## 15524     30-35       7
## 15525     30-35       7
## 15526     40-50       5
## 15527     30-35       7
## 15528     18-30      10
## 15529     35-40       6
## 15530     50-60       5
## 15531     18-30      10
## 15532     18-30      10
## 15533     18-30      10
## 15534     30-35       7
## 15535     40-50       5
## 15536     40-50       5
## 15537     35-40       6
## 15538     18-30      10
## 15539     40-50       5
## 15540     18-30      10
## 15541     30-35       7
## 15542     30-35       7
## 15543     18-30      10
## 15544     50-60       5
## 15545     18-30      10
## 15546     18-30      10
## 15547     18-30      10
## 15548     40-50       5
## 15549     18-30      10
## 15550     30-35       7
## 15551     40-50       5
## 15552     18-30      10
## 15553     18-30      10
## 15554     18-30      10
## 15555     30-35       7
## 15556     18-30      10
## 15557     50-60       5
## 15558     18-30      10
## 15559     40-50       5
## 15560     40-50       5
## 15561     18-30      10
## 15562     18-30      10
## 15563     18-30      10
## 15564     35-40       6
## 15565     18-30      10
## 15566     18-30      10
## 15567     30-35       7
## 15568     40-50       5
## 15569     18-30      10
## 15570     18-30      10
## 15571     30-35       7
## 15572     18-30      10
## 15573     18-30      10
## 15574     18-30      10
## 15575     18-30      10
## 15576     18-30      10
## 15577     18-30      10
## 15578     18-30      10
## 15579     18-30      10
## 15580     50-60       5
## 15581     18-30      10
## 15582     18-30      10
## 15583     18-30      10
## 15584     30-35       7
## 15585     18-30      10
## 15586     18-30      10
## 15587     40-50       5
## 15588     40-50       5
## 15589     18-30      10
## 15590     18-30      10
## 15591     30-35       7
## 15592     18-30      10
## 15593     40-50       5
## 15594     40-50       5
## 15595     35-40       6
## 15596     40-50       5
## 15597     18-30      10
## 15598     30-35       7
## 15599     18-30      10
## 15600     18-30      10
## 15601     30-35       7
## 15602     30-35       7
## 15603     18-30      10
## 15604     18-30      10
## 15605     30-35       7
## 15606     18-30      10
## 15607     30-35       7
## 15608     18-30      10
## 15609     30-35       7
## 15610     18-30      10
## 15611     18-30      10
## 15612     18-30      10
## 15613     35-40       6
## 15614     18-30      10
## 15615     18-30      10
## 15616     30-35       7
## 15617     18-30      10
## 15618     35-40       6
## 15619     18-30      10
## 15620     40-50       5
## 15621     18-30      10
## 15622     18-30      10
## 15623     50-60       5
## 15624     18-30      10
## 15625     18-30      10
## 15626     35-40       6
## 15627     18-30      10
## 15628     18-30      10
## 15629     30-35       7
## 15630     18-30      10
## 15631     18-30      10
## 15632     35-40       6
## 15633     30-35       7
## 15634     35-40       6
## 15635     18-30      10
## 15636     30-35       7
## 15637     18-30      10
## 15638     18-30      10
## 15639     18-30      10
## 15640     30-35       7
## 15641     30-35       7
## 15642     18-30      10
## 15643     18-30      10
## 15644     30-35       7
## 15645     18-30      10
## 15646     35-40       6
## 15647     18-30      10
## 15648     18-30      10
## 15649     18-30      10
## 15650     18-30      10
## 15651     35-40       6
## 15652     18-30      10
## 15653     18-30      10
## 15654     18-30      10
## 15655     35-40       6
## 15656     30-35       7
## 15657     35-40       6
## 15658     18-30      10
## 15659     40-50       5
## 15660     35-40       6
## 15661     18-30      10
## 15662     18-30      10
## 15663     30-35       7
## 15664     35-40       6
## 15665     18-30      10
## 15666     18-30      10
## 15667     50-60       5
## 15668     18-30      10
## 15669     30-35       7
## 15670     18-30      10
## 15671     50-60       5
## 15672     18-30      10
## 15673     40-50       5
## 15674     30-35       7
## 15675     18-30      10
## 15676     18-30      10
## 15677     30-35       7
## 15678     18-30      10
## 15679     18-30      10
## 15680     35-40       6
## 15681     18-30      10
## 15682     40-50       5
## 15683     30-35       7
## 15684     18-30      10
## 15685     35-40       6
## 15686     18-30      10
## 15687     18-30      10
## 15688     35-40       6
## 15689     30-35       7
## 15690     18-30      10
## 15691     18-30      10
## 15692     18-30      10
## 15693     18-30      10
## 15694     18-30      10
## 15695     18-30      10
## 15696     40-50       5
## 15697     40-50       5
## 15698     18-30      10
## 15699     18-30      10
## 15700     30-35       7
## 15701     18-30      10
## 15702     40-50       5
## 15703     50-60       5
## 15704     18-30      10
## 15705     18-30      10
## 15706     18-30      10
## 15707     30-35       7
## 15708       65+       4
## 15709     50-60       5
## 15710     18-30      10
## 15711     18-30      10
## 15712     18-30      10
## 15713     18-30      10
## 15714     18-30      10
## 15715     18-30      10
## 15716     30-35       7
## 15717     18-30      10
## 15718     35-40       6
## 15719     40-50       5
## 15720     35-40       6
## 15721     40-50       5
## 15722     30-35       7
## 15723     18-30      10
## 15724     40-50       5
## 15725     35-40       6
## 15726     30-35       7
## 15727     35-40       6
## 15728     18-30      10
## 15729     40-50       5
## 15730     30-35       7
## 15731     35-40       6
## 15732     50-60       5
## 15733     30-35       7
## 15734     35-40       6
## 15735     18-30      10
## 15736     18-30      10
## 15737     35-40       6
## 15738     40-50       5
## 15739     40-50       5
## 15740     18-30      10
## 15741     30-35       7
## 15742     18-30      10
## 15743     35-40       6
## 15744     18-30      10
## 15745     30-35       7
## 15746       65+       4
## 15747     18-30      10
## 15748     18-30      10
## 15749     18-30      10
## 15750     18-30      10
## 15751       65+       4
## 15752     40-50       5
## 15753     18-30      10
## 15754     50-60       5
## 15755     30-35       7
## 15756       65+       4
## 15757     18-30      10
## 15758       65+       4
## 15759     30-35       7
## 15760     40-50       5
## 15761     18-30      10
## 15762     30-35       7
## 15763     35-40       6
## 15764     18-30      10
## 15765     30-35       7
## 15766     18-30      10
## 15767     18-30      10
## 15768     30-35       7
## 15769     30-35       7
## 15770     30-35       7
## 15771     18-30      10
## 15772     30-35       7
## 15773     35-40       6
## 15774     40-50       5
## 15775     18-30      10
## 15776     30-35       7
## 15777     18-30      10
## 15778     18-30      10
## 15779     35-40       6
## 15780     30-35       7
## 15781     18-30      10
## 15782     18-30      10
## 15783     30-35       7
## 15784     18-30      10
## 15785     30-35       7
## 15786     35-40       6
## 15787     18-30      10
## 15788     18-30      10
## 15789     18-30      10
## 15790     18-30      10
## 15791     50-60       5
## 15792     30-35       7
## 15793     18-30      10
## 15794     18-30      10
## 15795     18-30      10
## 15796     30-35       7
## 15797     18-30      10
## 15798     18-30      10
## 15799     40-50       5
## 15800     18-30      10
## 15801     35-40       6
## 15802     18-30      10
## 15803     30-35       7
## 15804     40-50       5
## 15805     30-35       7
## 15806     18-30      10
## 15807     18-30      10
## 15808     18-30      10
## 15809     18-30      10
## 15810     18-30      10
## 15811     50-60       5
## 15812     35-40       6
## 15813     30-35       7
## 15814     40-50       5
## 15815     30-35       7
## 15816     30-35       7
## 15817     50-60       5
## 15818     50-60       5
## 15819       65+       4
## 15820     18-30      10
## 15821     30-35       7
## 15822     18-30      10
## 15823     18-30      10
## 15824     18-30      10
## 15825     18-30      10
## 15826     18-30      10
## 15827     35-40       6
## 15828     18-30      10
## 15829     30-35       7
## 15830     18-30      10
## 15831     35-40       6
## 15832     18-30      10
## 15833     18-30      10
## 15834     35-40       6
## 15835     18-30      10
## 15836     18-30      10
## 15837     18-30      10
## 15838     35-40       6
## 15839     40-50       5
## 15840     30-35       7
## 15841       65+       4
## 15842     50-60       5
## 15843     18-30      10
## 15844     35-40       6
## 15845     50-60       5
## 15846     40-50       5
## 15847     40-50       5
## 15848     18-30      10
## 15849     35-40       6
## 15850     18-30      10
## 15851     18-30      10
## 15852     30-35       7
## 15853     18-30      10
## 15854     18-30      10
## 15855     30-35       7
## 15856     18-30      10
## 15857     40-50       5
## 15858     18-30      10
## 15859     18-30      10
## 15860     18-30      10
## 15861     18-30      10
## 15862     40-50       5
## 15863     35-40       6
## 15864     18-30      10
## 15865     18-30      10
## 15866     35-40       6
## 15867     30-35       7
## 15868     40-50       5
## 15869     18-30      10
## 15870     18-30      10
## 15871     30-35       7
## 15872     40-50       5
## 15873     18-30      10
## 15874     18-30      10
## 15875     30-35       7
## 15876     18-30      10
## 15877     35-40       6
## 15878     18-30      10
## 15879     18-30      10
## 15880     18-30      10
## 15881     18-30      10
## 15882     18-30      10
## 15883     40-50       5
## 15884     35-40       6
## 15885     18-30      10
## 15886     30-35       7
## 15887     18-30      10
## 15888     30-35       7
## 15889     18-30      10
## 15890     30-35       7
## 15891     18-30      10
## 15892     35-40       6
## 15893     50-60       5
## 15894     35-40       6
## 15895     30-35       7
## 15896     18-30      10
## 15897     30-35       7
## 15898     40-50       5
## 15899     18-30      10
## 15900     18-30      10
## 15901     18-30      10
## 15902     40-50       5
## 15903     40-50       5
## 15904     18-30      10
## 15905     18-30      10
## 15906     50-60       5
## 15907     18-30      10
## 15908     18-30      10
## 15909       65+       4
## 15910     30-35       7
## 15911     40-50       5
## 15912     40-50       5
## 15913     18-30      10
## 15914     35-40       6
## 15915     30-35       7
## 15916     18-30      10
## 15917     40-50       5
## 15918     18-30      10
## 15919     18-30      10
## 15920     30-35       7
## 15921     35-40       6
## 15922     18-30      10
## 15923     30-35       7
## 15924     18-30      10
## 15925     35-40       6
## 15926     18-30      10
## 15927     35-40       6
## 15928     40-50       5
## 15929     18-30      10
## 15930     18-30      10
## 15931     18-30      10
## 15932     35-40       6
## 15933     50-60       5
## 15934     18-30      10
## 15935     40-50       5
## 15936     40-50       5
## 15937     35-40       6
## 15938     35-40       6
## 15939     50-60       5
## 15940     18-30      10
## 15941     18-30      10
## 15942     18-30      10
## 15943     18-30      10
## 15944     18-30      10
## 15945     50-60       5
## 15946     18-30      10
## 15947     50-60       5
## 15948     18-30      10
## 15949     18-30      10
## 15950     18-30      10
## 15951     18-30      10
## 15952     30-35       7
## 15953     35-40       6
## 15954     18-30      10
## 15955     18-30      10
## 15956     18-30      10
## 15957     18-30      10
## 15958     40-50       5
## 15959     18-30      10
## 15960     18-30      10
## 15961     18-30      10
## 15962     18-30      10
## 15963     18-30      10
## 15964     30-35       7
## 15965     18-30      10
## 15966     18-30      10
## 15967     18-30      10
## 15968     18-30      10
## 15969     18-30      10
## 15970     18-30      10
## 15971     18-30      10
## 15972     18-30      10
## 15973     18-30      10
## 15974     30-35       7
## 15975     30-35       7
## 15976     35-40       6
## 15977     50-60       5
## 15978     30-35       7
## 15979     18-30      10
## 15980     18-30      10
## 15981     18-30      10
## 15982     18-30      10
## 15983     35-40       6
## 15984     30-35       7
## 15985     35-40       6
## 15986     18-30      10
## 15987     30-35       7
## 15988     18-30      10
## 15989     40-50       5
## 15990     18-30      10
## 15991     18-30      10
## 15992     18-30      10
## 15993     30-35       7
## 15994     50-60       5
## 15995     18-30      10
## 15996     18-30      10
## 15997     40-50       5
## 15998     35-40       6
## 15999     40-50       5
## 16000     35-40       6
## 16001     30-35       7
## 16002     18-30      10
## 16003     18-30      10
## 16004     40-50       5
## 16005     30-35       7
## 16006     40-50       5
## 16007     18-30      10
## 16008     18-30      10
## 16009     35-40       6
## 16010     30-35       7
## 16011     30-35       7
## 16012     18-30      10
## 16013     18-30      10
## 16014     18-30      10
## 16015     40-50       5
## 16016     30-35       7
## 16017     18-30      10
## 16018     50-60       5
## 16019     18-30      10
## 16020     18-30      10
## 16021     40-50       5
## 16022     18-30      10
## 16023     40-50       5
## 16024     30-35       7
## 16025     18-30      10
## 16026     18-30      10
## 16027     30-35       7
## 16028     18-30      10
## 16029     18-30      10
## 16030     40-50       5
## 16031     18-30      10
## 16032     30-35       7
## 16033     18-30      10
## 16034     18-30      10
## 16035     40-50       5
## 16036     30-35       7
## 16037     30-35       7
## 16038     18-30      10
## 16039     18-30      10
## 16040     18-30      10
## 16041     40-50       5
## 16042     18-30      10
## 16043     18-30      10
## 16044     35-40       6
## 16045     30-35       7
## 16046     18-30      10
## 16047     18-30      10
## 16048     18-30      10
## 16049     30-35       7
## 16050     35-40       6
## 16051     50-60       5
## 16052     30-35       7
## 16053     50-60       5
## 16054     18-30      10
## 16055     30-35       7
## 16056     35-40       6
## 16057       65+       4
## 16058     18-30      10
## 16059     18-30      10
## 16060     18-30      10
## 16061     18-30      10
## 16062     18-30      10
## 16063     18-30      10
## 16064     18-30      10
## 16065     18-30      10
## 16066     18-30      10
## 16067     30-35       7
## 16068     30-35       7
## 16069     18-30      10
## 16070     35-40       6
## 16071     35-40       6
## 16072     18-30      10
## 16073     40-50       5
## 16074     18-30      10
## 16075     30-35       7
## 16076     40-50       5
## 16077     18-30      10
## 16078     18-30      10
## 16079     35-40       6
## 16080     30-35       7
## 16081     18-30      10
## 16082     18-30      10
## 16083     18-30      10
## 16084     35-40       6
## 16085     35-40       6
## 16086     30-35       7
## 16087     18-30      10
## 16088     18-30      10
## 16089     18-30      10
## 16090     30-35       7
## 16091     35-40       6
## 16092     18-30      10
## 16093     18-30      10
## 16094     30-35       7
## 16095     30-35       7
## 16096     30-35       7
## 16097     18-30      10
## 16098     18-30      10
## 16099     30-35       7
## 16100     18-30      10
## 16101     30-35       7
## 16102     18-30      10
## 16103     30-35       7
## 16104     18-30      10
## 16105     50-60       5
## 16106       65+       4
## 16107     18-30      10
## 16108     30-35       7
## 16109     40-50       5
## 16110     30-35       7
## 16111     18-30      10
## 16112     30-35       7
## 16113     35-40       6
## 16114     18-30      10
## 16115     18-30      10
## 16116     18-30      10
## 16117     40-50       5
## 16118     18-30      10
## 16119     18-30      10
## 16120     35-40       6
## 16121     18-30      10
## 16122     18-30      10
## 16123     18-30      10
## 16124     18-30      10
## 16125     18-30      10
## 16126     18-30      10
## 16127     35-40       6
## 16128     50-60       5
## 16129     30-35       7
## 16130     30-35       7
## 16131     30-35       7
## 16132     40-50       5
## 16133     30-35       7
## 16134     40-50       5
## 16135       65+       4
## 16136     40-50       5
## 16137     50-60       5
## 16138     18-30      10
## 16139     50-60       5
## 16140     18-30      10
## 16141     18-30      10
## 16142     18-30      10
## 16143     35-40       6
## 16144     40-50       5
## 16145     18-30      10
## 16146       65+       4
## 16147     40-50       5
## 16148     40-50       5
## 16149       65+       4
## 16150     35-40       6
## 16151     30-35       7
## 16152     18-30      10
## 16153     18-30      10
## 16154     35-40       6
## 16155     18-30      10
## 16156     30-35       7
## 16157     18-30      10
## 16158     30-35       7
## 16159     30-35       7
## 16160     18-30      10
## 16161     18-30      10
## 16162     40-50       5
## 16163     18-30      10
## 16164     18-30      10
## 16165     30-35       7
## 16166     18-30      10
## 16167     30-35       7
## 16168     50-60       5
## 16169     35-40       6
## 16170     35-40       6
## 16171       65+       4
## 16172     18-30      10
## 16173     18-30      10
## 16174     30-35       7
## 16175     18-30      10
## 16176     30-35       7
## 16177     40-50       5
## 16178     30-35       7
## 16179     35-40       6
## 16180     18-30      10
## 16181     18-30      10
## 16182     40-50       5
## 16183     18-30      10
## 16184     30-35       7
## 16185     50-60       5
## 16186     40-50       5
## 16187     30-35       7
## 16188     18-30      10
## 16189     18-30      10
## 16190     40-50       5
## 16191     18-30      10
## 16192     18-30      10
## 16193     18-30      10
## 16194     18-30      10
## 16195     30-35       7
## 16196     18-30      10
## 16197     35-40       6
## 16198     18-30      10
## 16199     18-30      10
## 16200     35-40       6
## 16201     35-40       6
## 16202     18-30      10
## 16203     18-30      10
## 16204     18-30      10
## 16205     40-50       5
## 16206     18-30      10
## 16207     40-50       5
## 16208     18-30      10
## 16209     18-30      10
## 16210     30-35       7
## 16211     50-60       5
## 16212     18-30      10
## 16213     35-40       6
## 16214     18-30      10
## 16215     18-30      10
## 16216     35-40       6
## 16217     18-30      10
## 16218     18-30      10
## 16219     18-30      10
## 16220     18-30      10
## 16221     30-35       7
## 16222     18-30      10
## 16223     18-30      10
## 16224     18-30      10
## 16225     18-30      10
## 16226     50-60       5
## 16227     18-30      10
## 16228     18-30      10
## 16229     18-30      10
## 16230     18-30      10
## 16231     18-30      10
## 16232     18-30      10
## 16233     35-40       6
## 16234     40-50       5
## 16235     18-30      10
## 16236     18-30      10
## 16237     30-35       7
## 16238     18-30      10
## 16239     40-50       5
## 16240     18-30      10
## 16241     18-30      10
## 16242     30-35       7
## 16243     30-35       7
## 16244     50-60       5
## 16245     30-35       7
## 16246     40-50       5
## 16247     18-30      10
## 16248     18-30      10
## 16249     40-50       5
## 16250     50-60       5
## 16251       65+       4
## 16252     18-30      10
## 16253     35-40       6
## 16254     35-40       6
## 16255     18-30      10
## 16256     40-50       5
## 16257     18-30      10
## 16258     35-40       6
## 16259     50-60       5
## 16260     18-30      10
## 16261     50-60       5
## 16262     40-50       5
## 16263       65+       4
## 16264     30-35       7
## 16265     50-60       5
## 16266     18-30      10
## 16267     50-60       5
## 16268     30-35       7
## 16269     35-40       6
## 16270     50-60       5
## 16271     35-40       6
## 16272     18-30      10
## 16273     18-30      10
## 16274     18-30      10
## 16275     18-30      10
## 16276     18-30      10
## 16277     18-30      10
## 16278     30-35       7
## 16279       65+       4
## 16280     35-40       6
## 16281     18-30      10
## 16282     40-50       5
## 16283     35-40       6
## 16284     50-60       5
## 16285     18-30      10
## 16286     30-35       7
## 16287     30-35       7
## 16288     50-60       5
## 16289     18-30      10
## 16290     18-30      10
## 16291     30-35       7
## 16292     30-35       7
## 16293     18-30      10
## 16294     35-40       6
## 16295     18-30      10
## 16296     30-35       7
## 16297     18-30      10
## 16298     30-35       7
## 16299     30-35       7
## 16300     30-35       7
## 16301     40-50       5
## 16302       65+       4
## 16303     30-35       7
## 16304     35-40       6
## 16305       65+       4
## 16306     18-30      10
## 16307     18-30      10
## 16308     30-35       7
## 16309     18-30      10
## 16310     40-50       5
## 16311     40-50       5
## 16312     18-30      10
## 16313     30-35       7
## 16314     40-50       5
## 16315     30-35       7
## 16316     35-40       6
## 16317     30-35       7
## 16318     18-30      10
## 16319     35-40       6
## 16320     50-60       5
## 16321     35-40       6
## 16322     40-50       5
## 16323     18-30      10
## 16324     50-60       5
## 16325     40-50       5
## 16326     30-35       7
## 16327     40-50       5
## 16328     18-30      10
## 16329     35-40       6
## 16330     35-40       6
## 16331     18-30      10
## 16332     18-30      10
## 16333     18-30      10
## 16334     18-30      10
## 16335     18-30      10
## 16336     30-35       7
## 16337     18-30      10
## 16338     35-40       6
## 16339     30-35       7
## 16340     30-35       7
## 16341     35-40       6
## 16342     40-50       5
## 16343     18-30      10
## 16344       65+       4
## 16345     18-30      10
## 16346       65+       4
## 16347     18-30      10
## 16348     18-30      10
## 16349     18-30      10
## 16350     18-30      10
## 16351     40-50       5
## 16352     35-40       6
## 16353     18-30      10
## 16354     40-50       5
## 16355     18-30      10
## 16356     30-35       7
## 16357     18-30      10
## 16358     18-30      10
## 16359     30-35       7
## 16360     35-40       6
## 16361     18-30      10
## 16362     40-50       5
## 16363     30-35       7
## 16364     18-30      10
## 16365     35-40       6
## 16366     18-30      10
## 16367     30-35       7
## 16368     50-60       5
## 16369     30-35       7
## 16370     18-30      10
## 16371     18-30      10
## 16372     18-30      10
## 16373     18-30      10
## 16374     18-30      10
## 16375     30-35       7
## 16376     30-35       7
## 16377     40-50       5
## 16378     18-30      10
## 16379     35-40       6
## 16380     35-40       6
## 16381     18-30      10
## 16382     30-35       7
## 16383     35-40       6
## 16384     30-35       7
## 16385     18-30      10
## 16386     40-50       5
## 16387     40-50       5
## 16388     40-50       5
## 16389     18-30      10
## 16390     18-30      10
## 16391     18-30      10
## 16392     30-35       7
## 16393     18-30      10
## 16394     35-40       6
## 16395     35-40       6
## 16396     18-30      10
## 16397     18-30      10
## 16398     35-40       6
## 16399     30-35       7
## 16400     18-30      10
## 16401     30-35       7
## 16402     18-30      10
## 16403     30-35       7
## 16404     40-50       5
## 16405     18-30      10
## 16406     40-50       5
## 16407     18-30      10
## 16408     40-50       5
## 16409     30-35       7
## 16410     18-30      10
## 16411     40-50       5
## 16412     18-30      10
## 16413     30-35       7
## 16414     40-50       5
## 16415     18-30      10
## 16416     18-30      10
## 16417     18-30      10
## 16418       65+       4
## 16419     18-30      10
## 16420     35-40       6
## 16421     40-50       5
## 16422     35-40       6
## 16423     40-50       5
## 16424     18-30      10
## 16425     18-30      10
## 16426     18-30      10
## 16427     40-50       5
## 16428     35-40       6
## 16429     50-60       5
## 16430     18-30      10
## 16431     30-35       7
## 16432     18-30      10
## 16433     18-30      10
## 16434     18-30      10
## 16435     18-30      10
## 16436     18-30      10
## 16437     18-30      10
## 16438     30-35       7
## 16439     18-30      10
## 16440     40-50       5
## 16441     40-50       5
## 16442     18-30      10
## 16443     30-35       7
## 16444     18-30      10
## 16445     18-30      10
## 16446     18-30      10
## 16447     18-30      10
## 16448     40-50       5
## 16449     30-35       7
## 16450     40-50       5
## 16451       65+       4
## 16452     18-30      10
## 16453     40-50       5
## 16454     40-50       5
## 16455     40-50       5
## 16456     40-50       5
## 16457     18-30      10
## 16458     18-30      10
## 16459     40-50       5
## 16460     40-50       5
## 16461     30-35       7
## 16462     18-30      10
## 16463     18-30      10
## 16464     30-35       7
## 16465     18-30      10
## 16466     30-35       7
## 16467     18-30      10
## 16468     18-30      10
## 16469     18-30      10
## 16470     18-30      10
## 16471     18-30      10
## 16472     30-35       7
## 16473     18-30      10
## 16474     30-35       7
## 16475     18-30      10
## 16476     18-30      10
## 16477     50-60       5
## 16478     18-30      10
## 16479     18-30      10
## 16480     30-35       7
## 16481     18-30      10
## 16482     18-30      10
## 16483     18-30      10
## 16484     18-30      10
## 16485     18-30      10
## 16486     18-30      10
## 16487     18-30      10
## 16488     18-30      10
## 16489     18-30      10
## 16490     30-35       7
## 16491     40-50       5
## 16492     18-30      10
## 16493     18-30      10
## 16494     18-30      10
## 16495     18-30      10
## 16496     30-35       7
## 16497     18-30      10
## 16498     18-30      10
## 16499     18-30      10
## 16500     18-30      10
## 16501     18-30      10
## 16502     35-40       6
## 16503     18-30      10
## 16504     18-30      10
## 16505     35-40       6
## 16506     18-30      10
## 16507     35-40       6
## 16508     30-35       7
## 16509     30-35       7
## 16510     40-50       5
## 16511     18-30      10
## 16512     18-30      10
## 16513     18-30      10
## 16514     18-30      10
## 16515     40-50       5
## 16516     18-30      10
## 16517     18-30      10
## 16518     18-30      10
## 16519     18-30      10
## 16520     18-30      10
## 16521     18-30      10
## 16522     18-30      10
## 16523     18-30      10
## 16524     18-30      10
## 16525     40-50       5
## 16526     18-30      10
## 16527     35-40       6
## 16528     18-30      10
## 16529     18-30      10
## 16530     18-30      10
## 16531     35-40       6
## 16532     18-30      10
## 16533     18-30      10
## 16534     18-30      10
## 16535     35-40       6
## 16536     30-35       7
## 16537     18-30      10
## 16538     18-30      10
## 16539     18-30      10
## 16540     35-40       6
## 16541     18-30      10
## 16542     18-30      10
## 16543     18-30      10
## 16544     18-30      10
## 16545     40-50       5
## 16546     18-30      10
## 16547     35-40       6
## 16548     30-35       7
## 16549     40-50       5
## 16550     30-35       7
## 16551     30-35       7
## 16552     18-30      10
## 16553     30-35       7
## 16554     30-35       7
## 16555     18-30      10
## 16556     18-30      10
## 16557     30-35       7
## 16558     18-30      10
## 16559     18-30      10
## 16560     18-30      10
## 16561     30-35       7
## 16562     50-60       5
## 16563     18-30      10
## 16564     18-30      10
## 16565     18-30      10
## 16566     50-60       5
## 16567     40-50       5
## 16568     40-50       5
## 16569     18-30      10
## 16570     18-30      10
## 16571     18-30      10
## 16572     18-30      10
## 16573     18-30      10
## 16574     40-50       5
## 16575     35-40       6
## 16576     30-35       7
## 16577     35-40       6
## 16578     35-40       6
## 16579     40-50       5
## 16580     18-30      10
## 16581     30-35       7
## 16582     18-30      10
## 16583     40-50       5
## 16584     40-50       5
## 16585     18-30      10
## 16586     18-30      10
## 16587     35-40       6
## 16588     35-40       6
## 16589     40-50       5
## 16590     18-30      10
## 16591     18-30      10
## 16592     30-35       7
## 16593     40-50       5
## 16594     30-35       7
## 16595     40-50       5
## 16596     50-60       5
## 16597     18-30      10
## 16598     18-30      10
## 16599     30-35       7
## 16600     30-35       7
## 16601     30-35       7
## 16602     18-30      10
## 16603     40-50       5
## 16604     30-35       7
## 16605     18-30      10
## 16606     18-30      10
## 16607     18-30      10
## 16608     18-30      10
## 16609     40-50       5
## 16610       65+       4
## 16611     18-30      10
## 16612     18-30      10
## 16613     35-40       6
## 16614     18-30      10
## 16615     40-50       5
## 16616     30-35       7
## 16617     18-30      10
## 16618     30-35       7
## 16619     40-50       5
## 16620     18-30      10
## 16621     18-30      10
## 16622     40-50       5
## 16623     50-60       5
## 16624     35-40       6
## 16625     30-35       7
## 16626     30-35       7
## 16627     18-30      10
## 16628     30-35       7
## 16629     18-30      10
## 16630     18-30      10
## 16631     18-30      10
## 16632     30-35       7
## 16633     35-40       6
## 16634     18-30      10
## 16635     18-30      10
## 16636     40-50       5
## 16637     18-30      10
## 16638     18-30      10
## 16639     30-35       7
## 16640     18-30      10
## 16641     30-35       7
## 16642     35-40       6
## 16643     18-30      10
## 16644     40-50       5
## 16645     30-35       7
## 16646     40-50       5
## 16647     18-30      10
## 16648     50-60       5
## 16649     30-35       7
## 16650     40-50       5
## 16651     35-40       6
## 16652     18-30      10
## 16653     35-40       6
## 16654     40-50       5
## 16655     18-30      10
## 16656     18-30      10
## 16657     18-30      10
## 16658     18-30      10
## 16659     35-40       6
## 16660     30-35       7
## 16661     35-40       6
## 16662     50-60       5
## 16663     35-40       6
## 16664       65+       4
## 16665     50-60       5
## 16666     18-30      10
## 16667     40-50       5
## 16668     18-30      10
## 16669     18-30      10
## 16670     35-40       6
## 16671     50-60       5
## 16672     30-35       7
## 16673     30-35       7
## 16674     18-30      10
## 16675     18-30      10
## 16676     40-50       5
## 16677     40-50       5
## 16678     30-35       7
## 16679     18-30      10
## 16680     40-50       5
## 16681     30-35       7
## 16682     50-60       5
## 16683     30-35       7
## 16684     40-50       5
## 16685     18-30      10
## 16686     18-30      10
## 16687     30-35       7
## 16688     18-30      10
## 16689     35-40       6
## 16690     18-30      10
## 16691     18-30      10
## 16692     30-35       7
## 16693     18-30      10
## 16694     35-40       6
## 16695     18-30      10
## 16696     18-30      10
## 16697     30-35       7
## 16698     18-30      10
## 16699     18-30      10
## 16700     50-60       5
## 16701     35-40       6
## 16702     18-30      10
## 16703     18-30      10
## 16704     40-50       5
## 16705     18-30      10
## 16706     50-60       5
## 16707     18-30      10
## 16708     18-30      10
## 16709       65+       4
## 16710     18-30      10
## 16711     35-40       6
## 16712     35-40       6
## 16713     35-40       6
## 16714     35-40       6
## 16715     18-30      10
## 16716     30-35       7
## 16717     35-40       6
## 16718     30-35       7
## 16719     18-30      10
## 16720     18-30      10
## 16721     35-40       6
## 16722     18-30      10
## 16723     35-40       6
## 16724     35-40       6
## 16725     18-30      10
## 16726       65+       4
## 16727     18-30      10
## 16728     18-30      10
## 16729     40-50       5
## 16730       65+       4
## 16731     30-35       7
## 16732     30-35       7
## 16733     40-50       5
## 16734     18-30      10
## 16735     18-30      10
## 16736     40-50       5
## 16737     18-30      10
## 16738     50-60       5
## 16739     18-30      10
## 16740     18-30      10
## 16741     35-40       6
## 16742     35-40       6
## 16743     18-30      10
## 16744     18-30      10
## 16745     30-35       7
## 16746     30-35       7
## 16747     35-40       6
## 16748     40-50       5
## 16749     18-30      10
## 16750     18-30      10
## 16751     18-30      10
## 16752     30-35       7
## 16753     35-40       6
## 16754     18-30      10
## 16755     40-50       5
## 16756     18-30      10
## 16757     30-35       7
## 16758     18-30      10
## 16759     40-50       5
## 16760     18-30      10
## 16761     40-50       5
## 16762     18-30      10
## 16763     18-30      10
## 16764     40-50       5
## 16765     50-60       5
## 16766     18-30      10
## 16767     30-35       7
## 16768     30-35       7
## 16769     18-30      10
## 16770     35-40       6
## 16771     40-50       5
## 16772     30-35       7
## 16773     18-30      10
## 16774     35-40       6
## 16775     18-30      10
## 16776     18-30      10
## 16777     18-30      10
## 16778     18-30      10
## 16779     18-30      10
## 16780     18-30      10
## 16781     40-50       5
## 16782     30-35       7
## 16783     30-35       7
## 16784     18-30      10
## 16785     35-40       6
## 16786     18-30      10
## 16787     18-30      10
## 16788     18-30      10
## 16789     18-30      10
## 16790     35-40       6
## 16791     18-30      10
## 16792     40-50       5
## 16793     35-40       6
## 16794     30-35       7
## 16795     18-30      10
## 16796     18-30      10
## 16797     18-30      10
## 16798     18-30      10
## 16799     18-30      10
## 16800     18-30      10
## 16801     35-40       6
## 16802     18-30      10
## 16803     18-30      10
## 16804     40-50       5
## 16805     40-50       5
## 16806     18-30      10
## 16807     30-35       7
## 16808     18-30      10
## 16809     18-30      10
## 16810     40-50       5
## 16811     18-30      10
## 16812     35-40       6
## 16813     18-30      10
## 16814     18-30      10
## 16815     18-30      10
## 16816     18-30      10
## 16817     40-50       5
## 16818     30-35       7
## 16819     18-30      10
## 16820     18-30      10
## 16821     18-30      10
## 16822     18-30      10
## 16823     40-50       5
## 16824     40-50       5
## 16825     30-35       7
## 16826     18-30      10
## 16827     40-50       5
## 16828     30-35       7
## 16829     30-35       7
## 16830     18-30      10
## 16831     30-35       7
## 16832     35-40       6
## 16833     18-30      10
## 16834     18-30      10
## 16835     40-50       5
## 16836     18-30      10
## 16837     30-35       7
## 16838     30-35       7
## 16839     30-35       7
## 16840     18-30      10
## 16841     18-30      10
## 16842     18-30      10
## 16843     30-35       7
## 16844     18-30      10
## 16845     30-35       7
## 16846     18-30      10
## 16847     50-60       5
## 16848     18-30      10
## 16849     30-35       7
## 16850     18-30      10
## 16851     18-30      10
## 16852     30-35       7
## 16853     40-50       5
## 16854     18-30      10
## 16855     35-40       6
## 16856     30-35       7
## 16857     40-50       5
## 16858     50-60       5
## 16859     18-30      10
## 16860     30-35       7
## 16861     18-30      10
## 16862     30-35       7
## 16863     18-30      10
## 16864     50-60       5
## 16865     18-30      10
## 16866     18-30      10
## 16867     18-30      10
## 16868     18-30      10
## 16869     18-30      10
## 16870     30-35       7
## 16871     35-40       6
## 16872     18-30      10
## 16873     18-30      10
## 16874     18-30      10
## 16875     35-40       6
## 16876     18-30      10
## 16877     40-50       5
## 16878     35-40       6
## 16879     18-30      10
## 16880     18-30      10
## 16881     18-30      10
## 16882     40-50       5
## 16883     18-30      10
## 16884     35-40       6
## 16885     40-50       5
## 16886     18-30      10
## 16887     30-35       7
## 16888     18-30      10
## 16889     40-50       5
## 16890     30-35       7
## 16891     18-30      10
## 16892     18-30      10
## 16893     18-30      10
## 16894     30-35       7
## 16895     35-40       6
## 16896     30-35       7
## 16897     18-30      10
## 16898     18-30      10
## 16899     30-35       7
## 16900     40-50       5
## 16901     40-50       5
## 16902     35-40       6
## 16903     18-30      10
## 16904     18-30      10
## 16905     18-30      10
## 16906     30-35       7
## 16907     30-35       7
## 16908     35-40       6
## 16909     18-30      10
## 16910     30-35       7
## 16911     18-30      10
## 16912     35-40       6
## 16913     50-60       5
## 16914     30-35       7
## 16915     35-40       6
## 16916       65+       4
## 16917     35-40       6
## 16918     30-35       7
## 16919     18-30      10
## 16920     18-30      10
## 16921     35-40       6
## 16922     18-30      10
## 16923     40-50       5
## 16924     18-30      10
## 16925     40-50       5
## 16926     18-30      10
## 16927     18-30      10
## 16928     30-35       7
## 16929     18-30      10
## 16930     18-30      10
## 16931     30-35       7
## 16932     18-30      10
## 16933     18-30      10
## 16934     18-30      10
## 16935     18-30      10
## 16936     30-35       7
## 16937     18-30      10
## 16938     30-35       7
## 16939     18-30      10
## 16940     18-30      10
## 16941     18-30      10
## 16942     18-30      10
## 16943     18-30      10
## 16944     18-30      10
## 16945     18-30      10
## 16946     18-30      10
## 16947     30-35       7
## 16948     30-35       7
## 16949     18-30      10
## 16950     18-30      10
## 16951     35-40       6
## 16952     18-30      10
## 16953     35-40       6
## 16954     40-50       5
## 16955     40-50       5
## 16956     18-30      10
## 16957     30-35       7
## 16958     30-35       7
## 16959     18-30      10
## 16960     18-30      10
## 16961     18-30      10
## 16962     35-40       6
## 16963     18-30      10
## 16964     18-30      10
## 16965     18-30      10
## 16966     30-35       7
## 16967     18-30      10
## 16968     18-30      10
## 16969     18-30      10
## 16970     50-60       5
## 16971     30-35       7
## 16972     30-35       7
## 16973     40-50       5
## 16974     18-30      10
## 16975     50-60       5
## 16976     18-30      10
## 16977     30-35       7
## 16978     18-30      10
## 16979     18-30      10
## 16980     40-50       5
## 16981     40-50       5
## 16982     18-30      10
## 16983     18-30      10
## 16984     30-35       7
## 16985     40-50       5
## 16986     18-30      10
## 16987     30-35       7
## 16988     18-30      10
## 16989     30-35       7
## 16990     30-35       7
## 16991     30-35       7
## 16992     40-50       5
## 16993     50-60       5
## 16994     30-35       7
## 16995     35-40       6
## 16996     30-35       7
## 16997     30-35       7
## 16998     18-30      10
## 16999     50-60       5
## 17000     40-50       5
## 17001     18-30      10
## 17002     35-40       6
## 17003     35-40       6
## 17004     18-30      10
## 17005     18-30      10
## 17006     30-35       7
## 17007     18-30      10
## 17008     18-30      10
## 17009     50-60       5
## 17010     18-30      10
## 17011     18-30      10
## 17012     30-35       7
## 17013     18-30      10
## 17014     18-30      10
## 17015     18-30      10
## 17016     40-50       5
## 17017     50-60       5
## 17018     30-35       7
## 17019     18-30      10
## 17020     40-50       5
## 17021     35-40       6
## 17022     40-50       5
## 17023     30-35       7
## 17024     35-40       6
## 17025     30-35       7
## 17026     40-50       5
## 17027     35-40       6
## 17028     18-30      10
## 17029     40-50       5
## 17030     40-50       5
## 17031     18-30      10
## 17032     50-60       5
## 17033     18-30      10
## 17034     18-30      10
## 17035     35-40       6
## 17036     18-30      10
## 17037     30-35       7
## 17038     18-30      10
## 17039     40-50       5
## 17040     18-30      10
## 17041     18-30      10
## 17042     18-30      10
## 17043     30-35       7
## 17044     18-30      10
## 17045     18-30      10
## 17046     18-30      10
## 17047     40-50       5
## 17048     18-30      10
## 17049     18-30      10
## 17050     18-30      10
## 17051     18-30      10
## 17052     35-40       6
## 17053     35-40       6
## 17054     18-30      10
## 17055     18-30      10
## 17056     18-30      10
## 17057     30-35       7
## 17058     18-30      10
## 17059     18-30      10
## 17060     18-30      10
## 17061     30-35       7
## 17062     18-30      10
## 17063     18-30      10
## 17064     30-35       7
## 17065     18-30      10
## 17066     35-40       6
## 17067     30-35       7
## 17068     18-30      10
## 17069     30-35       7
## 17070     18-30      10
## 17071     40-50       5
## 17072       65+       4
## 17073     18-30      10
## 17074     40-50       5
## 17075     18-30      10
## 17076     18-30      10
## 17077     18-30      10
## 17078     18-30      10
## 17079     40-50       5
## 17080     35-40       6
## 17081     35-40       6
## 17082     18-30      10
## 17083     18-30      10
## 17084     18-30      10
## 17085     18-30      10
## 17086     18-30      10
## 17087     40-50       5
## 17088     30-35       7
## 17089     18-30      10
## 17090     35-40       6
## 17091     30-35       7
## 17092     30-35       7
## 17093     35-40       6
## 17094     18-30      10
## 17095     18-30      10
## 17096     35-40       6
## 17097     18-30      10
## 17098     30-35       7
## 17099     40-50       5
## 17100     40-50       5
## 17101     40-50       5
## 17102     35-40       6
## 17103     18-30      10
## 17104     18-30      10
## 17105     18-30      10
## 17106     30-35       7
## 17107     40-50       5
## 17108     18-30      10
## 17109     18-30      10
## 17110     18-30      10
## 17111     35-40       6
## 17112     18-30      10
## 17113     35-40       6
## 17114     40-50       5
## 17115     18-30      10
## 17116     18-30      10
## 17117     35-40       6
## 17118     18-30      10
## 17119     30-35       7
## 17120     18-30      10
## 17121     18-30      10
## 17122     30-35       7
## 17123     18-30      10
## 17124     18-30      10
## 17125     18-30      10
## 17126     18-30      10
## 17127     18-30      10
## 17128     18-30      10
## 17129     30-35       7
## 17130     50-60       5
## 17131     50-60       5
## 17132     18-30      10
## 17133     18-30      10
## 17134     18-30      10
## 17135     18-30      10
## 17136     30-35       7
## 17137     18-30      10
## 17138     18-30      10
## 17139     18-30      10
## 17140     18-30      10
## 17141     18-30      10
## 17142     18-30      10
## 17143     18-30      10
## 17144     18-30      10
## 17145     18-30      10
## 17146     18-30      10
## 17147     50-60       5
## 17148     18-30      10
## 17149     18-30      10
## 17150     30-35       7
## 17151     30-35       7
## 17152     18-30      10
## 17153     30-35       7
## 17154     30-35       7
## 17155     40-50       5
## 17156     18-30      10
## 17157     35-40       6
## 17158     18-30      10
## 17159     18-30      10
## 17160     18-30      10
## 17161     18-30      10
## 17162     35-40       6
## 17163     35-40       6
## 17164     18-30      10
## 17165     18-30      10
## 17166     40-50       5
## 17167     18-30      10
## 17168     35-40       6
## 17169     35-40       6
## 17170     18-30      10
## 17171     18-30      10
## 17172     30-35       7
## 17173     40-50       5
## 17174     18-30      10
## 17175     30-35       7
## 17176     18-30      10
## 17177     18-30      10
## 17178     40-50       5
## 17179     18-30      10
## 17180     18-30      10
## 17181     30-35       7
## 17182     50-60       5
## 17183     18-30      10
## 17184     40-50       5
## 17185     50-60       5
## 17186     40-50       5
## 17187     35-40       6
## 17188     18-30      10
## 17189     30-35       7
## 17190     30-35       7
## 17191     30-35       7
## 17192     35-40       6
## 17193     18-30      10
## 17194     18-30      10
## 17195     30-35       7
## 17196     18-30      10
## 17197     18-30      10
## 17198     18-30      10
## 17199     30-35       7
## 17200     18-30      10
## 17201     18-30      10
## 17202     18-30      10
## 17203     40-50       5
## 17204     30-35       7
## 17205     18-30      10
## 17206     35-40       6
## 17207     40-50       5
## 17208     50-60       5
## 17209     50-60       5
## 17210     35-40       6
## 17211     18-30      10
## 17212     30-35       7
## 17213     18-30      10
## 17214     18-30      10
## 17215     40-50       5
## 17216     30-35       7
## 17217     18-30      10
## 17218     18-30      10
## 17219     40-50       5
## 17220     18-30      10
## 17221     40-50       5
## 17222     18-30      10
## 17223     40-50       5
## 17224     40-50       5
## 17225     40-50       5
## 17226     30-35       7
## 17227     18-30      10
## 17228     18-30      10
## 17229     30-35       7
## 17230     18-30      10
## 17231     18-30      10
## 17232     40-50       5
## 17233     18-30      10
## 17234     18-30      10
## 17235     18-30      10
## 17236     18-30      10
## 17237     50-60       5
## 17238     40-50       5
## 17239     18-30      10
## 17240     18-30      10
## 17241     50-60       5
## 17242     35-40       6
## 17243     18-30      10
## 17244     18-30      10
## 17245     40-50       5
## 17246     18-30      10
## 17247     30-35       7
## 17248     40-50       5
## 17249     30-35       7
## 17250     18-30      10
## 17251     30-35       7
## 17252     18-30      10
## 17253     35-40       6
## 17254       65+       4
## 17255     18-30      10
## 17256     18-30      10
## 17257     30-35       7
## 17258     18-30      10
## 17259     30-35       7
## 17260     18-30      10
## 17261     35-40       6
## 17262     40-50       5
## 17263     18-30      10
## 17264     18-30      10
## 17265     18-30      10
## 17266     40-50       5
## 17267     18-30      10
## 17268     18-30      10
## 17269     30-35       7
## 17270     40-50       5
## 17271     18-30      10
## 17272     18-30      10
## 17273     18-30      10
## 17274     18-30      10
## 17275     18-30      10
## 17276     18-30      10
## 17277     30-35       7
## 17278     50-60       5
## 17279     18-30      10
## 17280     18-30      10
## 17281     30-35       7
## 17282     18-30      10
## 17283     18-30      10
## 17284     35-40       6
## 17285     18-30      10
## 17286     18-30      10
## 17287     40-50       5
## 17288     18-30      10
## 17289     18-30      10
## 17290     18-30      10
## 17291     35-40       6
## 17292     30-35       7
## 17293     18-30      10
## 17294     18-30      10
## 17295       65+       4
## 17296     30-35       7
## 17297     18-30      10
## 17298     50-60       5
## 17299     30-35       7
## 17300     30-35       7
## 17301     30-35       7
## 17302     18-30      10
## 17303     18-30      10
## 17304     18-30      10
## 17305     30-35       7
## 17306     40-50       5
## 17307     18-30      10
## 17308     18-30      10
## 17309     30-35       7
## 17310     35-40       6
## 17311     40-50       5
## 17312     50-60       5
## 17313     18-30      10
## 17314     40-50       5
## 17315     40-50       5
## 17316     18-30      10
## 17317     40-50       5
## 17318     18-30      10
## 17319     35-40       6
## 17320     40-50       5
## 17321     18-30      10
## 17322     30-35       7
## 17323     18-30      10
## 17324     30-35       7
## 17325     18-30      10
## 17326     30-35       7
## 17327     40-50       5
## 17328     35-40       6
## 17329     40-50       5
## 17330     18-30      10
## 17331     35-40       6
## 17332     18-30      10
## 17333     30-35       7
## 17334     18-30      10
## 17335     18-30      10
## 17336     18-30      10
## 17337     18-30      10
## 17338     50-60       5
## 17339     35-40       6
## 17340     35-40       6
## 17341     35-40       6
## 17342     40-50       5
## 17343     18-30      10
## 17344     18-30      10
## 17345     18-30      10
## 17346     18-30      10
## 17347     50-60       5
## 17348     35-40       6
## 17349     18-30      10
## 17350     50-60       5
## 17351     18-30      10
## 17352     35-40       6
## 17353     18-30      10
## 17354     35-40       6
## 17355     18-30      10
## 17356     35-40       6
## 17357     30-35       7
## 17358     18-30      10
## 17359     18-30      10
## 17360     30-35       7
## 17361     30-35       7
## 17362     18-30      10
## 17363     40-50       5
## 17364     18-30      10
## 17365     40-50       5
## 17366     40-50       5
## 17367     18-30      10
## 17368     50-60       5
## 17369     35-40       6
## 17370     30-35       7
## 17371     50-60       5
## 17372     30-35       7
## 17373     18-30      10
## 17374     18-30      10
## 17375     18-30      10
## 17376     18-30      10
## 17377     18-30      10
## 17378     18-30      10
## 17379     18-30      10
## 17380     35-40       6
## 17381     18-30      10
## 17382     18-30      10
## 17383     40-50       5
## 17384     18-30      10
## 17385     18-30      10
## 17386     18-30      10
## 17387     40-50       5
## 17388     30-35       7
## 17389     40-50       5
## 17390     18-30      10
## 17391     30-35       7
## 17392     18-30      10
## 17393     40-50       5
## 17394     30-35       7
## 17395     18-30      10
## 17396     35-40       6
## 17397     35-40       6
## 17398     35-40       6
## 17399     40-50       5
## 17400     18-30      10
## 17401     50-60       5
## 17402     18-30      10
## 17403     18-30      10
## 17404     30-35       7
## 17405     30-35       7
## 17406     18-30      10
## 17407     30-35       7
## 17408     18-30      10
## 17409     35-40       6
## 17410     18-30      10
## 17411     18-30      10
## 17412     35-40       6
## 17413     18-30      10
## 17414     18-30      10
## 17415     35-40       6
## 17416     18-30      10
## 17417     35-40       6
## 17418     18-30      10
## 17419     30-35       7
## 17420     30-35       7
## 17421     30-35       7
## 17422     30-35       7
## 17423     30-35       7
## 17424     18-30      10
## 17425     40-50       5
## 17426     18-30      10
## 17427       65+       4
## 17428     18-30      10
## 17429     18-30      10
## 17430     40-50       5
## 17431     18-30      10
## 17432     18-30      10
## 17433     18-30      10
## 17434     18-30      10
## 17435     18-30      10
## 17436     35-40       6
## 17437     35-40       6
## 17438     18-30      10
## 17439     18-30      10
## 17440     40-50       5
## 17441     50-60       5
## 17442     18-30      10
## 17443     18-30      10
## 17444     18-30      10
## 17445     35-40       6
## 17446     18-30      10
## 17447     30-35       7
## 17448     40-50       5
## 17449     30-35       7
## 17450     50-60       5
## 17451     40-50       5
## 17452     18-30      10
## 17453     40-50       5
## 17454     18-30      10
## 17455     18-30      10
## 17456     18-30      10
## 17457     30-35       7
## 17458     40-50       5
## 17459     40-50       5
## 17460     18-30      10
## 17461     18-30      10
## 17462     18-30      10
## 17463     30-35       7
## 17464     40-50       5
## 17465     18-30      10
## 17466     30-35       7
## 17467     35-40       6
## 17468     35-40       6
## 17469     30-35       7
## 17470     18-30      10
## 17471     18-30      10
## 17472     18-30      10
## 17473     18-30      10
## 17474     18-30      10
## 17475     18-30      10
## 17476     40-50       5
## 17477     40-50       5
## 17478     40-50       5
## 17479     18-30      10
## 17480     40-50       5
## 17481     18-30      10
## 17482     35-40       6
## 17483     18-30      10
## 17484     18-30      10
## 17485     30-35       7
## 17486     40-50       5
## 17487     35-40       6
## 17488     30-35       7
## 17489     18-30      10
## 17490     30-35       7
## 17491     40-50       5
## 17492     18-30      10
## 17493     30-35       7
## 17494     18-30      10
## 17495     35-40       6
## 17496     30-35       7
## 17497     18-30      10
## 17498     18-30      10
## 17499     18-30      10
## 17500     18-30      10
## 17501     30-35       7
## 17502     18-30      10
## 17503     35-40       6
## 17504       65+       4
## 17505     35-40       6
## 17506     30-35       7
## 17507     18-30      10
## 17508     18-30      10
## 17509     35-40       6
## 17510     18-30      10
## 17511     35-40       6
## 17512     35-40       6
## 17513     18-30      10
## 17514     18-30      10
## 17515     30-35       7
## 17516     30-35       7
## 17517     18-30      10
## 17518     50-60       5
## 17519     18-30      10
## 17520     18-30      10
## 17521     18-30      10
## 17522       65+       4
## 17523     18-30      10
## 17524     18-30      10
## 17525     30-35       7
## 17526     18-30      10
## 17527     30-35       7
## 17528     18-30      10
## 17529     35-40       6
## 17530       65+       4
## 17531     35-40       6
## 17532     35-40       6
## 17533     18-30      10
## 17534     30-35       7
## 17535     18-30      10
## 17536     40-50       5
## 17537     30-35       7
## 17538     30-35       7
## 17539     18-30      10
## 17540     30-35       7
## 17541     18-30      10
## 17542     18-30      10
## 17543     30-35       7
## 17544     18-30      10
## 17545     18-30      10
## 17546     40-50       5
## 17547     30-35       7
## 17548     30-35       7
## 17549     30-35       7
## 17550     35-40       6
## 17551     18-30      10
## 17552     18-30      10
## 17553     18-30      10
## 17554     18-30      10
## 17555     18-30      10
## 17556     18-30      10
## 17557     18-30      10
## 17558     35-40       6
## 17559     18-30      10
## 17560     18-30      10
## 17561     18-30      10
## 17562     18-30      10
## 17563     18-30      10
## 17564     18-30      10
## 17565     18-30      10
## 17566     35-40       6
## 17567     40-50       5
## 17568     40-50       5
## 17569     50-60       5
## 17570     18-30      10
## 17571     35-40       6
## 17572     18-30      10
## 17573     40-50       5
## 17574     18-30      10
## 17575     18-30      10
## 17576     18-30      10
## 17577     30-35       7
## 17578     18-30      10
## 17579     18-30      10
## 17580     18-30      10
## 17581     40-50       5
## 17582     35-40       6
## 17583     18-30      10
## 17584     18-30      10
## 17585     35-40       6
## 17586     18-30      10
## 17587     18-30      10
## 17588     18-30      10
## 17589     30-35       7
## 17590     18-30      10
## 17591     50-60       5
## 17592     40-50       5
## 17593     18-30      10
## 17594     18-30      10
## 17595     18-30      10
## 17596     18-30      10
## 17597     18-30      10
## 17598     18-30      10
## 17599     18-30      10
## 17600     18-30      10
## 17601     30-35       7
## 17602     18-30      10
## 17603     35-40       6
## 17604     18-30      10
## 17605     30-35       7
## 17606     18-30      10
## 17607     30-35       7
## 17608     18-30      10
## 17609     18-30      10
## 17610     30-35       7
## 17611     30-35       7
## 17612     18-30      10
## 17613     18-30      10
## 17614     18-30      10
## 17615     18-30      10
## 17616     30-35       7
## 17617     18-30      10
## 17618     18-30      10
## 17619     18-30      10
## 17620     18-30      10
## 17621     18-30      10
## 17622     18-30      10
## 17623     18-30      10
## 17624     18-30      10
## 17625     18-30      10
## 17626     40-50       5
## 17627     18-30      10
## 17628     18-30      10
## 17629     18-30      10
## 17630     30-35       7
## 17631     18-30      10
## 17632     18-30      10
## 17633     35-40       6
## 17634     18-30      10
## 17635     18-30      10
## 17636     18-30      10
## 17637     40-50       5
## 17638     35-40       6
## 17639     35-40       6
## 17640     18-30      10
## 17641     18-30      10
## 17642     40-50       5
## 17643     40-50       5
## 17644     30-35       7
## 17645     35-40       6
## 17646     30-35       7
## 17647     18-30      10
## 17648     40-50       5
## 17649     35-40       6
## 17650     40-50       5
## 17651     30-35       7
## 17652     18-30      10
## 17653     18-30      10
## 17654     50-60       5
## 17655     30-35       7
## 17656     18-30      10
## 17657     18-30      10
## 17658     30-35       7
## 17659     18-30      10
## 17660     18-30      10
## 17661     18-30      10
## 17662     30-35       7
## 17663     18-30      10
## 17664     18-30      10
## 17665     18-30      10
## 17666     18-30      10
## 17667     18-30      10
## 17668     18-30      10
## 17669     18-30      10
## 17670     18-30      10
## 17671     30-35       7
## 17672     35-40       6
## 17673     40-50       5
## 17674     35-40       6
## 17675     18-30      10
## 17676     40-50       5
## 17677       65+       4
## 17678     18-30      10
## 17679       65+       4
## 17680     40-50       5
## 17681     18-30      10
## 17682     18-30      10
## 17683     30-35       7
## 17684     18-30      10
## 17685     35-40       6
## 17686     18-30      10
## 17687     18-30      10
## 17688     30-35       7
## 17689     18-30      10
## 17690     30-35       7
## 17691     18-30      10
## 17692     30-35       7
## 17693     30-35       7
## 17694     40-50       5
## 17695     30-35       7
## 17696     30-35       7
## 17697     40-50       5
## 17698     35-40       6
## 17699     30-35       7
## 17700     40-50       5
## 17701     18-30      10
## 17702     30-35       7
## 17703     18-30      10
## 17704     30-35       7
## 17705     18-30      10
## 17706     18-30      10
## 17707     18-30      10
## 17708     18-30      10
## 17709     18-30      10
## 17710     18-30      10
## 17711     35-40       6
## 17712     35-40       6
## 17713     35-40       6
## 17714     30-35       7
## 17715     35-40       6
## 17716     18-30      10
## 17717     18-30      10
## 17718     18-30      10
## 17719     18-30      10
## 17720     50-60       5
## 17721     18-30      10
## 17722     50-60       5
## 17723     18-30      10
## 17724     18-30      10
## 17725     18-30      10
## 17726     30-35       7
## 17727       65+       4
## 17728     40-50       5
## 17729     40-50       5
## 17730     18-30      10
## 17731       65+       4
## 17732     18-30      10
## 17733     35-40       6
## 17734     35-40       6
## 17735     18-30      10
## 17736     30-35       7
## 17737     50-60       5
## 17738     30-35       7
## 17739     18-30      10
## 17740     18-30      10
## 17741     30-35       7
## 17742     18-30      10
## 17743     18-30      10
## 17744     40-50       5
## 17745     50-60       5
## 17746     18-30      10
## 17747     30-35       7
## 17748     30-35       7
## 17749     18-30      10
## 17750     35-40       6
## 17751     18-30      10
## 17752     18-30      10
## 17753     18-30      10
## 17754     18-30      10
## 17755     40-50       5
## 17756     18-30      10
## 17757     40-50       5
## 17758     18-30      10
## 17759     30-35       7
## 17760     30-35       7
## 17761     18-30      10
## 17762     18-30      10
## 17763     30-35       7
## 17764     30-35       7
## 17765     18-30      10
## 17766     40-50       5
## 17767     18-30      10
## 17768     18-30      10
## 17769     30-35       7
## 17770     30-35       7
## 17771     18-30      10
## 17772     18-30      10
## 17773     18-30      10
## 17774     18-30      10
## 17775     18-30      10
## 17776     18-30      10
## 17777     18-30      10
## 17778     18-30      10
## 17779     30-35       7
## 17780     18-30      10
## 17781     50-60       5
## 17782     18-30      10
## 17783     18-30      10
## 17784     18-30      10
## 17785     40-50       5
## 17786     18-30      10
## 17787     18-30      10
## 17788     40-50       5
## 17789     30-35       7
## 17790     18-30      10
## 17791     30-35       7
## 17792     18-30      10
## 17793     50-60       5
## 17794     35-40       6
## 17795     18-30      10
## 17796     40-50       5
## 17797     18-30      10
## 17798     18-30      10
## 17799     18-30      10
## 17800     35-40       6
## 17801     50-60       5
## 17802     18-30      10
## 17803     35-40       6
## 17804     35-40       6
## 17805     30-35       7
## 17806     18-30      10
## 17807     18-30      10
## 17808     18-30      10
## 17809     30-35       7
## 17810     18-30      10
## 17811     35-40       6
## 17812     18-30      10
## 17813     30-35       7
## 17814     35-40       6
## 17815     18-30      10
## 17816     18-30      10
## 17817     18-30      10
## 17818     18-30      10
## 17819     40-50       5
## 17820     18-30      10
## 17821     40-50       5
## 17822     30-35       7
## 17823     18-30      10
## 17824     18-30      10
## 17825     18-30      10
## 17826     18-30      10
## 17827     18-30      10
## 17828     35-40       6
## 17829     18-30      10
## 17830     18-30      10
## 17831     18-30      10
## 17832     18-30      10
## 17833     18-30      10
## 17834     35-40       6
## 17835     18-30      10
## 17836       65+       4
## 17837     18-30      10
## 17838     18-30      10
## 17839     35-40       6
## 17840     30-35       7
## 17841     30-35       7
## 17842     35-40       6
## 17843     35-40       6
## 17844     35-40       6
## 17845     40-50       5
## 17846     18-30      10
## 17847     40-50       5
## 17848     35-40       6
## 17849     40-50       5
## 17850     18-30      10
## 17851     35-40       6
## 17852     30-35       7
## 17853     35-40       6
## 17854     18-30      10
## 17855     18-30      10
## 17856     30-35       7
## 17857     18-30      10
## 17858     18-30      10
## 17859     35-40       6
## 17860     18-30      10
## 17861     18-30      10
## 17862     18-30      10
## 17863     18-30      10
## 17864     35-40       6
## 17865     50-60       5
## 17866     18-30      10
## 17867     18-30      10
## 17868     30-35       7
## 17869     30-35       7
## 17870     30-35       7
## 17871     30-35       7
## 17872       65+       4
## 17873     35-40       6
## 17874     30-35       7
## 17875     18-30      10
## 17876     30-35       7
## 17877     18-30      10
## 17878     30-35       7
## 17879     18-30      10
## 17880     18-30      10
## 17881     18-30      10
## 17882     30-35       7
## 17883     18-30      10
## 17884     40-50       5
## 17885     18-30      10
## 17886     18-30      10
## 17887     18-30      10
## 17888     40-50       5
## 17889     18-30      10
## 17890     30-35       7
## 17891     35-40       6
## 17892     18-30      10
## 17893     18-30      10
## 17894     40-50       5
## 17895     50-60       5
## 17896     18-30      10
## 17897     18-30      10
## 17898     30-35       7
## 17899     18-30      10
## 17900     18-30      10
## 17901     35-40       6
## 17902     35-40       6
## 17903     18-30      10
## 17904     18-30      10
## 17905     35-40       6
## 17906     18-30      10
## 17907     18-30      10
## 17908     18-30      10
## 17909     30-35       7
## 17910     35-40       6
## 17911     30-35       7
## 17912     40-50       5
## 17913     18-30      10
## 17914     18-30      10
## 17915     18-30      10
## 17916     18-30      10
## 17917     18-30      10
## 17918     18-30      10
## 17919     18-30      10
## 17920     30-35       7
## 17921     18-30      10
## 17922     18-30      10
## 17923     18-30      10
## 17924     18-30      10
## 17925     18-30      10
## 17926     18-30      10
## 17927     18-30      10
## 17928     18-30      10
## 17929     18-30      10
## 17930     18-30      10
## 17931     50-60       5
## 17932     35-40       6
## 17933     30-35       7
## 17934     30-35       7
## 17935     18-30      10
## 17936     18-30      10
## 17937     18-30      10
## 17938     18-30      10
## 17939     18-30      10
## 17940     18-30      10
## 17941     50-60       5
## 17942     35-40       6
## 17943     18-30      10
## 17944     18-30      10
## 17945     30-35       7
## 17946     18-30      10
## 17947     30-35       7
## 17948     40-50       5
## 17949     40-50       5
## 17950     18-30      10
## 17951     18-30      10
## 17952     50-60       5
## 17953     30-35       7
## 17954     18-30      10
## 17955     30-35       7
## 17956     30-35       7
## 17957     50-60       5
## 17958     50-60       5
## 17959     30-35       7
## 17960     35-40       6
## 17961     40-50       5
## 17962     18-30      10
## 17963     18-30      10
## 17964     35-40       6
## 17965     35-40       6
## 17966     18-30      10
## 17967     18-30      10
## 17968     30-35       7
## 17969     30-35       7
## 17970     30-35       7
## 17971     18-30      10
## 17972     18-30      10
## 17973     30-35       7
## 17974     18-30      10
## 17975     18-30      10
## 17976     30-35       7
## 17977     50-60       5
## 17978     35-40       6
## 17979     18-30      10
## 17980     18-30      10
## 17981     40-50       5
## 17982     18-30      10
## 17983     18-30      10
## 17984     18-30      10
## 17985     40-50       5
## 17986     35-40       6
## 17987     30-35       7
## 17988     18-30      10
## 17989     30-35       7
## 17990     18-30      10
## 17991     18-30      10
## 17992     18-30      10
## 17993     30-35       7
## 17994     35-40       6
## 17995     50-60       5
## 17996     30-35       7
## 17997     40-50       5
## 17998     18-30      10
## 17999       65+       4
## 18000     18-30      10
## 18001     18-30      10
## 18002     30-35       7
## 18003     18-30      10
## 18004     30-35       7
## 18005     18-30      10
## 18006     18-30      10
## 18007     18-30      10
## 18008     18-30      10
## 18009     30-35       7
## 18010     18-30      10
## 18011     50-60       5
## 18012     18-30      10
## 18013     35-40       6
## 18014     18-30      10
## 18015     18-30      10
## 18016     18-30      10
## 18017     40-50       5
## 18018     18-30      10
## 18019     50-60       5
## 18020     30-35       7
## 18021     35-40       6
## 18022     40-50       5
## 18023     50-60       5
## 18024     30-35       7
## 18025     40-50       5
## 18026     30-35       7
## 18027     40-50       5
## 18028     18-30      10
## 18029     18-30      10
## 18030     18-30      10
## 18031     18-30      10
## 18032     18-30      10
## 18033     40-50       5
## 18034     35-40       6
## 18035     18-30      10
## 18036     18-30      10
## 18037     18-30      10
## 18038     18-30      10
## 18039     35-40       6
## 18040     18-30      10
## 18041     30-35       7
## 18042     18-30      10
## 18043     18-30      10
## 18044     50-60       5
## 18045     18-30      10
## 18046     35-40       6
## 18047     18-30      10
## 18048     18-30      10
## 18049     35-40       6
## 18050     18-30      10
## 18051     50-60       5
## 18052     18-30      10
## 18053     18-30      10
## 18054     18-30      10
## 18055     30-35       7
## 18056     18-30      10
## 18057     18-30      10
## 18058       65+       4
## 18059     18-30      10
## 18060     18-30      10
## 18061     35-40       6
## 18062     30-35       7
## 18063     18-30      10
## 18064     18-30      10
## 18065     18-30      10
## 18066     50-60       5
## 18067     18-30      10
## 18068     18-30      10
## 18069     35-40       6
## 18070     18-30      10
## 18071     30-35       7
## 18072     30-35       7
## 18073     18-30      10
## 18074     18-30      10
## 18075     18-30      10
## 18076     50-60       5
## 18077     18-30      10
## 18078     30-35       7
## 18079     40-50       5
## 18080     35-40       6
## 18081     18-30      10
## 18082     18-30      10
## 18083     18-30      10
## 18084       65+       4
## 18085     18-30      10
## 18086     35-40       6
## 18087     30-35       7
## 18088     18-30      10
## 18089     18-30      10
## 18090     40-50       5
## 18091     40-50       5
## 18092     35-40       6
## 18093     35-40       6
## 18094     18-30      10
## 18095     18-30      10
## 18096     18-30      10
## 18097     30-35       7
## 18098     40-50       5
## 18099     18-30      10
## 18100     18-30      10
## 18101     30-35       7
## 18102     18-30      10
## 18103     18-30      10
## 18104     18-30      10
## 18105     35-40       6
## 18106     18-30      10
## 18107     18-30      10
## 18108     40-50       5
## 18109     40-50       5
## 18110     18-30      10
## 18111     18-30      10
## 18112     18-30      10
## 18113     35-40       6
## 18114     35-40       6
## 18115     30-35       7
## 18116     18-30      10
## 18117     18-30      10
## 18118     18-30      10
## 18119     30-35       7
## 18120     30-35       7
## 18121     18-30      10
## 18122     35-40       6
## 18123     18-30      10
## 18124     18-30      10
## 18125     30-35       7
## 18126     18-30      10
## 18127     18-30      10
## 18128     18-30      10
## 18129     18-30      10
## 18130     18-30      10
## 18131     50-60       5
## 18132     18-30      10
## 18133     30-35       7
## 18134     40-50       5
## 18135     18-30      10
## 18136     18-30      10
## 18137     18-30      10
## 18138     18-30      10
## 18139     30-35       7
## 18140     35-40       6
## 18141     30-35       7
## 18142     18-30      10
## 18143     50-60       5
## 18144     30-35       7
## 18145     18-30      10
## 18146     35-40       6
## 18147     18-30      10
## 18148     18-30      10
## 18149     18-30      10
## 18150     30-35       7
## 18151     18-30      10
## 18152     18-30      10
## 18153     18-30      10
## 18154     18-30      10
## 18155     30-35       7
## 18156     18-30      10
## 18157     18-30      10
## 18158     18-30      10
## 18159     18-30      10
## 18160     18-30      10
## 18161     18-30      10
## 18162     30-35       7
## 18163     40-50       5
## 18164     30-35       7
## 18165     18-30      10
## 18166       65+       4
## 18167     18-30      10
## 18168     18-30      10
## 18169     35-40       6
## 18170     35-40       6
## 18171     35-40       6
## 18172     18-30      10
## 18173     35-40       6
## 18174     30-35       7
## 18175     30-35       7
## 18176     30-35       7
## 18177     18-30      10
## 18178     18-30      10
## 18179     18-30      10
## 18180     18-30      10
## 18181     18-30      10
## 18182     18-30      10
## 18183     18-30      10
## 18184     35-40       6
## 18185     18-30      10
## 18186     18-30      10
## 18187     50-60       5
## 18188     18-30      10
## 18189     18-30      10
## 18190     18-30      10
## 18191     50-60       5
## 18192     30-35       7
## 18193     35-40       6
## 18194     35-40       6
## 18195     18-30      10
## 18196     18-30      10
## 18197     18-30      10
## 18198     30-35       7
## 18199     18-30      10
## 18200     30-35       7
## 18201     30-35       7
## 18202     18-30      10
## 18203     18-30      10
## 18204     30-35       7
## 18205     40-50       5
## 18206     18-30      10
## 18207     18-30      10
## 18208     18-30      10
## 18209     35-40       6
## 18210     30-35       7
## 18211     18-30      10
## 18212     18-30      10
## 18213     30-35       7
## 18214     18-30      10
## 18215     18-30      10
## 18216     30-35       7
## 18217     18-30      10
## 18218     18-30      10
## 18219     30-35       7
## 18220     18-30      10
## 18221     35-40       6
## 18222     18-30      10
## 18223     18-30      10
## 18224     40-50       5
## 18225     18-30      10
## 18226     30-35       7
## 18227     18-30      10
## 18228     30-35       7
## 18229     18-30      10
## 18230     40-50       5
## 18231     40-50       5
## 18232     18-30      10
## 18233     40-50       5
## 18234     40-50       5
## 18235     50-60       5
## 18236     18-30      10
## 18237     30-35       7
## 18238     18-30      10
## 18239     30-35       7
## 18240     18-30      10
## 18241     40-50       5
## 18242     18-30      10
## 18243     18-30      10
## 18244     18-30      10
## 18245     18-30      10
## 18246     18-30      10
## 18247     40-50       5
## 18248     35-40       6
## 18249     18-30      10
## 18250     18-30      10
## 18251     18-30      10
## 18252     18-30      10
## 18253     30-35       7
## 18254     18-30      10
## 18255     18-30      10
## 18256     18-30      10
## 18257     35-40       6
## 18258     30-35       7
## 18259     50-60       5
## 18260     18-30      10
## 18261     40-50       5
## 18262     50-60       5
## 18263     30-35       7
## 18264     50-60       5
## 18265     40-50       5
## 18266     40-50       5
## 18267     50-60       5
## 18268     18-30      10
## 18269     18-30      10
## 18270     18-30      10
## 18271     18-30      10
## 18272     18-30      10
## 18273     18-30      10
## 18274     18-30      10
## 18275     40-50       5
## 18276     18-30      10
## 18277     50-60       5
## 18278     18-30      10
## 18279     18-30      10
## 18280     18-30      10
## 18281     50-60       5
## 18282     18-30      10
## 18283     18-30      10
## 18284     18-30      10
## 18285     18-30      10
## 18286     40-50       5
## 18287     40-50       5
## 18288     40-50       5
## 18289     50-60       5
## 18290     30-35       7
## 18291     40-50       5
## 18292     35-40       6
## 18293     40-50       5
## 18294     18-30      10
## 18295     35-40       6
## 18296     35-40       6
## 18297     50-60       5
## 18298     35-40       6
## 18299     30-35       7
## 18300     18-30      10
## 18301     18-30      10
## 18302     18-30      10
## 18303     35-40       6
## 18304     35-40       6
## 18305     18-30      10
## 18306     18-30      10
## 18307     18-30      10
## 18308     30-35       7
## 18309     18-30      10
## 18310     18-30      10
## 18311     30-35       7
## 18312     30-35       7
## 18313     30-35       7
## 18314     30-35       7
## 18315     30-35       7
## 18316     40-50       5
## 18317     35-40       6
## 18318     18-30      10
## 18319     40-50       5
## 18320     18-30      10
## 18321     30-35       7
## 18322     40-50       5
## 18323     18-30      10
## 18324     35-40       6
## 18325     40-50       5
## 18326     35-40       6
## 18327     30-35       7
## 18328     50-60       5
## 18329     30-35       7
## 18330     18-30      10
## 18331     40-50       5
## 18332     18-30      10
## 18333     30-35       7
## 18334     40-50       5
## 18335     18-30      10
## 18336     35-40       6
## 18337     30-35       7
## 18338     40-50       5
## 18339     30-35       7
## 18340       65+       4
## 18341     18-30      10
## 18342     35-40       6
## 18343     40-50       5
## 18344     18-30      10
## 18345     18-30      10
## 18346     18-30      10
## 18347     30-35       7
## 18348     18-30      10
## 18349     50-60       5
## 18350     18-30      10
## 18351     18-30      10
## 18352     30-35       7
## 18353     18-30      10
## 18354     50-60       5
## 18355     30-35       7
## 18356     30-35       7
## 18357     18-30      10
## 18358     30-35       7
## 18359     18-30      10
## 18360     18-30      10
## 18361     30-35       7
## 18362     40-50       5
## 18363     40-50       5
## 18364     18-30      10
## 18365     40-50       5
## 18366     18-30      10
## 18367     18-30      10
## 18368     30-35       7
## 18369     18-30      10
## 18370     30-35       7
## 18371     18-30      10
## 18372     18-30      10
## 18373     18-30      10
## 18374     18-30      10
## 18375     40-50       5
## 18376     18-30      10
## 18377     18-30      10
## 18378     18-30      10
## 18379     30-35       7
## 18380     40-50       5
## 18381     18-30      10
## 18382     35-40       6
## 18383     18-30      10
## 18384     18-30      10
## 18385     50-60       5
## 18386     18-30      10
## 18387     18-30      10
## 18388     18-30      10
## 18389     50-60       5
## 18390     18-30      10
## 18391     35-40       6
## 18392     18-30      10
## 18393       65+       4
## 18394     18-30      10
## 18395     18-30      10
## 18396     50-60       5
## 18397     35-40       6
## 18398     40-50       5
## 18399     40-50       5
## 18400     40-50       5
## 18401     30-35       7
## 18402     18-30      10
## 18403     30-35       7
## 18404     40-50       5
## 18405     30-35       7
## 18406     18-30      10
## 18407     18-30      10
## 18408     18-30      10
## 18409     18-30      10
## 18410     18-30      10
## 18411     30-35       7
## 18412     18-30      10
## 18413     18-30      10
## 18414     18-30      10
## 18415     30-35       7
## 18416     18-30      10
## 18417     35-40       6
## 18418     30-35       7
## 18419     30-35       7
## 18420     18-30      10
## 18421     18-30      10
## 18422     18-30      10
## 18423     18-30      10
## 18424     35-40       6
## 18425     30-35       7
## 18426     18-30      10
## 18427     40-50       5
## 18428     35-40       6
## 18429     35-40       6
## 18430     50-60       5
## 18431     40-50       5
## 18432     18-30      10
## 18433     18-30      10
## 18434     30-35       7
## 18435     50-60       5
## 18436     18-30      10
## 18437     18-30      10
## 18438     18-30      10
## 18439     18-30      10
## 18440     18-30      10
## 18441     40-50       5
## 18442     18-30      10
## 18443     35-40       6
## 18444     30-35       7
## 18445     50-60       5
## 18446     40-50       5
## 18447     30-35       7
## 18448     40-50       5
## 18449     35-40       6
## 18450     18-30      10
## 18451     18-30      10
## 18452     18-30      10
## 18453     18-30      10
## 18454     18-30      10
## 18455     50-60       5
## 18456     18-30      10
## 18457     18-30      10
## 18458     18-30      10
## 18459     35-40       6
## 18460     18-30      10
## 18461     30-35       7
## 18462     30-35       7
## 18463     18-30      10
## 18464     18-30      10
## 18465       65+       4
## 18466     30-35       7
## 18467     18-30      10
## 18468     30-35       7
## 18469     18-30      10
## 18470     18-30      10
## 18471     50-60       5
## 18472     30-35       7
## 18473     30-35       7
## 18474     18-30      10
## 18475     18-30      10
## 18476     18-30      10
## 18477     18-30      10
## 18478     18-30      10
## 18479     18-30      10
## 18480     18-30      10
## 18481     18-30      10
## 18482     18-30      10
## 18483     35-40       6
## 18484     30-35       7
## 18485     18-30      10
## 18486     30-35       7
## 18487     18-30      10
## 18488     18-30      10
## 18489     30-35       7
## 18490     18-30      10
## 18491     18-30      10
## 18492     40-50       5
## 18493     18-30      10
## 18494     40-50       5
## 18495     35-40       6
## 18496     18-30      10
## 18497     50-60       5
## 18498     18-30      10
## 18499     18-30      10
## 18500     18-30      10
## 18501     50-60       5
## 18502     18-30      10
## 18503     18-30      10
## 18504     18-30      10
## 18505     18-30      10
## 18506     18-30      10
## 18507     35-40       6
## 18508     40-50       5
## 18509     18-30      10
## 18510     18-30      10
## 18511     18-30      10
## 18512     30-35       7
## 18513     18-30      10
## 18514     18-30      10
## 18515     35-40       6
## 18516     18-30      10
## 18517     40-50       5
## 18518     30-35       7
## 18519     30-35       7
## 18520     18-30      10
## 18521     18-30      10
## 18522     18-30      10
## 18523     50-60       5
## 18524     18-30      10
## 18525     18-30      10
## 18526     18-30      10
## 18527     18-30      10
## 18528     18-30      10
## 18529     18-30      10
## 18530     30-35       7
## 18531     35-40       6
## 18532     30-35       7
## 18533     18-30      10
## 18534     35-40       6
## 18535     18-30      10
## 18536     30-35       7
## 18537     30-35       7
## 18538     18-30      10
## 18539     18-30      10
## 18540     18-30      10
## 18541     18-30      10
## 18542     18-30      10
## 18543     18-30      10
## 18544     18-30      10
## 18545     30-35       7
## 18546     18-30      10
## 18547     18-30      10
## 18548     35-40       6
## 18549     35-40       6
## 18550       65+       4
## 18551     18-30      10
## 18552     18-30      10
## 18553     30-35       7
## 18554     35-40       6
## 18555     18-30      10
## 18556     18-30      10
## 18557     18-30      10
## 18558     18-30      10
## 18559     18-30      10
## 18560     18-30      10
## 18561     35-40       6
## 18562     18-30      10
## 18563     18-30      10
## 18564     50-60       5
## 18565     18-30      10
## 18566     40-50       5
## 18567     50-60       5
## 18568     30-35       7
## 18569     40-50       5
## 18570     40-50       5
## 18571     18-30      10
## 18572     18-30      10
## 18573     40-50       5
## 18574     35-40       6
## 18575     18-30      10
## 18576     30-35       7
## 18577     18-30      10
## 18578     18-30      10
## 18579     18-30      10
## 18580     35-40       6
## 18581     18-30      10
## 18582     30-35       7
## 18583     18-30      10
## 18584     30-35       7
## 18585     35-40       6
## 18586     18-30      10
## 18587     18-30      10
## 18588     30-35       7
## 18589     18-30      10
## 18590     35-40       6
## 18591     30-35       7
## 18592     50-60       5
## 18593     30-35       7
## 18594     35-40       6
## 18595     18-30      10
## 18596     30-35       7
## 18597     18-30      10
## 18598     18-30      10
## 18599       65+       4
## 18600     30-35       7
## 18601     40-50       5
## 18602     30-35       7
## 18603     30-35       7
## 18604     18-30      10
## 18605     18-30      10
## 18606     35-40       6
## 18607     18-30      10
## 18608     30-35       7
## 18609     18-30      10
## 18610     30-35       7
## 18611     50-60       5
## 18612     18-30      10
## 18613     40-50       5
## 18614     18-30      10
## 18615     18-30      10
## 18616     40-50       5
## 18617     35-40       6
## 18618     40-50       5
## 18619     40-50       5
## 18620     18-30      10
## 18621     30-35       7
## 18622     35-40       6
## 18623     30-35       7
## 18624     18-30      10
## 18625     50-60       5
## 18626     30-35       7
## 18627     18-30      10
## 18628     18-30      10
## 18629     18-30      10
## 18630     18-30      10
## 18631     18-30      10
## 18632     35-40       6
## 18633     18-30      10
## 18634     35-40       6
## 18635     18-30      10
## 18636     30-35       7
## 18637     18-30      10
## 18638     30-35       7
## 18639     18-30      10
## 18640     40-50       5
## 18641     30-35       7
## 18642     18-30      10
## 18643     18-30      10
## 18644     18-30      10
## 18645     18-30      10
## 18646     30-35       7
## 18647     35-40       6
## 18648     18-30      10
## 18649     30-35       7
## 18650     18-30      10
## 18651     18-30      10
## 18652     18-30      10
## 18653     18-30      10
## 18654     18-30      10
## 18655     18-30      10
## 18656     35-40       6
## 18657     18-30      10
## 18658     18-30      10
## 18659     18-30      10
## 18660     18-30      10
## 18661     18-30      10
## 18662     30-35       7
## 18663     40-50       5
## 18664     18-30      10
## 18665     18-30      10
## 18666     18-30      10
## 18667     30-35       7
## 18668     18-30      10
## 18669     30-35       7
## 18670     40-50       5
## 18671     18-30      10
## 18672     18-30      10
## 18673     18-30      10
## 18674     18-30      10
## 18675     18-30      10
## 18676     18-30      10
## 18677     18-30      10
## 18678     18-30      10
## 18679     18-30      10
## 18680     30-35       7
## 18681     18-30      10
## 18682     18-30      10
## 18683     30-35       7
## 18684     40-50       5
## 18685     18-30      10
## 18686     30-35       7
## 18687     35-40       6
## 18688     30-35       7
## 18689     18-30      10
## 18690     18-30      10
## 18691     30-35       7
## 18692     18-30      10
## 18693     18-30      10
## 18694     50-60       5
## 18695     30-35       7
## 18696     18-30      10
## 18697     40-50       5
## 18698     35-40       6
## 18699     18-30      10
## 18700     35-40       6
## 18701     40-50       5
## 18702     18-30      10
## 18703     18-30      10
## 18704     18-30      10
## 18705     18-30      10
## 18706     18-30      10
## 18707     18-30      10
## 18708     18-30      10
## 18709     18-30      10
## 18710     18-30      10
## 18711     18-30      10
## 18712     30-35       7
## 18713     35-40       6
## 18714     35-40       6
## 18715     40-50       5
## 18716     40-50       5
## 18717     50-60       5
## 18718     35-40       6
## 18719     35-40       6
## 18720     18-30      10
## 18721     18-30      10
## 18722     30-35       7
## 18723     30-35       7
## 18724     18-30      10
## 18725     18-30      10
## 18726     18-30      10
## 18727     18-30      10
## 18728     18-30      10
## 18729     18-30      10
## 18730     35-40       6
## 18731     35-40       6
## 18732     50-60       5
## 18733     18-30      10
## 18734       65+       4
## 18735     40-50       5
## 18736     35-40       6
## 18737     18-30      10
## 18738     18-30      10
## 18739     30-35       7
## 18740     30-35       7
## 18741     18-30      10
## 18742     40-50       5
## 18743     18-30      10
## 18744     40-50       5
## 18745     18-30      10
## 18746     18-30      10
## 18747     30-35       7
## 18748     18-30      10
## 18749     18-30      10
## 18750     35-40       6
## 18751     18-30      10
## 18752     18-30      10
## 18753     18-30      10
## 18754     40-50       5
## 18755     35-40       6
## 18756     18-30      10
## 18757     18-30      10
## 18758     30-35       7
## 18759     18-30      10
## 18760     50-60       5
## 18761     35-40       6
## 18762     50-60       5
## 18763     18-30      10
## 18764     18-30      10
## 18765     30-35       7
## 18766     18-30      10
## 18767     18-30      10
## 18768     18-30      10
## 18769     30-35       7
## 18770     18-30      10
## 18771     30-35       7
## 18772     35-40       6
## 18773     35-40       6
## 18774       65+       4
## 18775     18-30      10
## 18776     18-30      10
## 18777     18-30      10
## 18778     18-30      10
## 18779     18-30      10
## 18780     30-35       7
## 18781     30-35       7
## 18782     35-40       6
## 18783     30-35       7
## 18784     40-50       5
## 18785     30-35       7
## 18786     35-40       6
## 18787     30-35       7
## 18788     18-30      10
## 18789     18-30      10
## 18790     30-35       7
## 18791     40-50       5
## 18792     30-35       7
## 18793     18-30      10
## 18794     18-30      10
## 18795     18-30      10
## 18796     18-30      10
## 18797     18-30      10
## 18798     35-40       6
## 18799     40-50       5
## 18800     18-30      10
## 18801     30-35       7
## 18802     35-40       6
## 18803     18-30      10
## 18804     18-30      10
## 18805     30-35       7
## 18806     18-30      10
## 18807     18-30      10
## 18808     18-30      10
## 18809     18-30      10
## 18810     30-35       7
## 18811     18-30      10
## 18812     18-30      10
## 18813     18-30      10
## 18814     18-30      10
## 18815     18-30      10
## 18816     18-30      10
## 18817     40-50       5
## 18818     30-35       7
## 18819     30-35       7
## 18820     18-30      10
## 18821     18-30      10
## 18822     50-60       5
## 18823     18-30      10
## 18824     18-30      10
## 18825     18-30      10
## 18826     40-50       5
## 18827     18-30      10
## 18828     30-35       7
## 18829     30-35       7
## 18830     30-35       7
## 18831     30-35       7
## 18832     18-30      10
## 18833     35-40       6
## 18834     35-40       6
## 18835     18-30      10
## 18836     30-35       7
## 18837     18-30      10
## 18838     18-30      10
## 18839     18-30      10
## 18840     30-35       7
## 18841     18-30      10
## 18842     18-30      10
## 18843       65+       4
## 18844     30-35       7
## 18845     40-50       5
## 18846     35-40       6
## 18847     30-35       7
## 18848     18-30      10
## 18849     40-50       5
## 18850     18-30      10
## 18851     40-50       5
## 18852     30-35       7
## 18853     18-30      10
## 18854     30-35       7
## 18855     18-30      10
## 18856     18-30      10
## 18857     40-50       5
## 18858     30-35       7
## 18859     30-35       7
## 18860     40-50       5
## 18861     40-50       5
## 18862     50-60       5
## 18863     35-40       6
## 18864     18-30      10
## 18865     18-30      10
## 18866     18-30      10
## 18867     18-30      10
## 18868     18-30      10
## 18869     18-30      10
## 18870     18-30      10
## 18871     30-35       7
## 18872     18-30      10
## 18873     50-60       5
## 18874     30-35       7
## 18875     18-30      10
## 18876     18-30      10
## 18877     18-30      10
## 18878     18-30      10
## 18879     40-50       5
## 18880     18-30      10
## 18881     18-30      10
## 18882     18-30      10
## 18883     18-30      10
## 18884     18-30      10
## 18885     30-35       7
## 18886     18-30      10
## 18887     18-30      10
## 18888     18-30      10
## 18889     50-60       5
## 18890     18-30      10
## 18891     30-35       7
## 18892     18-30      10
## 18893     30-35       7
## 18894     18-30      10
## 18895     30-35       7
## 18896     30-35       7
## 18897     40-50       5
## 18898     35-40       6
## 18899     18-30      10
## 18900     30-35       7
## 18901     18-30      10
## 18902     30-35       7
## 18903     30-35       7
## 18904     18-30      10
## 18905     30-35       7
## 18906     18-30      10
## 18907     30-35       7
## 18908     18-30      10
## 18909     40-50       5
## 18910     40-50       5
## 18911     35-40       6
## 18912     18-30      10
## 18913     18-30      10
## 18914     18-30      10
## 18915     30-35       7
## 18916     30-35       7
## 18917     18-30      10
## 18918     18-30      10
## 18919     18-30      10
## 18920     30-35       7
## 18921     18-30      10
## 18922     30-35       7
## 18923     30-35       7
## 18924     30-35       7
## 18925     35-40       6
## 18926     35-40       6
## 18927     30-35       7
## 18928     18-30      10
## 18929     18-30      10
## 18930     50-60       5
## 18931     18-30      10
## 18932     35-40       6
## 18933     18-30      10
## 18934     40-50       5
## 18935     18-30      10
## 18936     40-50       5
## 18937     35-40       6
## 18938     35-40       6
## 18939       65+       4
## 18940     30-35       7
## 18941     18-30      10
## 18942     18-30      10
## 18943     18-30      10
## 18944     18-30      10
## 18945     18-30      10
## 18946     35-40       6
## 18947     40-50       5
## 18948     35-40       6
## 18949     18-30      10
## 18950       65+       4
## 18951     18-30      10
## 18952     40-50       5
## 18953     18-30      10
## 18954     30-35       7
## 18955     18-30      10
## 18956     18-30      10
## 18957     18-30      10
## 18958     30-35       7
## 18959     18-30      10
## 18960     18-30      10
## 18961     18-30      10
## 18962     35-40       6
## 18963     40-50       5
## 18964     18-30      10
## 18965     40-50       5
## 18966     18-30      10
## 18967     18-30      10
## 18968     30-35       7
## 18969     18-30      10
## 18970     18-30      10
## 18971     18-30      10
## 18972     18-30      10
## 18973     30-35       7
## 18974     18-30      10
## 18975     18-30      10
## 18976     18-30      10
## 18977     30-35       7
## 18978     18-30      10
## 18979     30-35       7
## 18980     18-30      10
## 18981     18-30      10
## 18982     18-30      10
## 18983     18-30      10
## 18984     40-50       5
## 18985     18-30      10
## 18986     30-35       7
## 18987     18-30      10
## 18988     18-30      10
## 18989     18-30      10
## 18990     18-30      10
## 18991     50-60       5
## 18992     18-30      10
## 18993     18-30      10
## 18994     18-30      10
## 18995     18-30      10
## 18996     35-40       6
## 18997     18-30      10
## 18998     18-30      10
## 18999       65+       4
## 19000     18-30      10
## 19001     18-30      10
## 19002     35-40       6
## 19003     18-30      10
## 19004     35-40       6
## 19005     30-35       7
## 19006     30-35       7
## 19007     50-60       5
## 19008     18-30      10
## 19009     35-40       6
## 19010     18-30      10
## 19011     18-30      10
## 19012     40-50       5
## 19013     18-30      10
## 19014     18-30      10
## 19015     18-30      10
## 19016     40-50       5
## 19017     18-30      10
## 19018     18-30      10
## 19019     40-50       5
## 19020     18-30      10
## 19021     18-30      10
## 19022     18-30      10
## 19023     18-30      10
## 19024     30-35       7
## 19025     30-35       7
## 19026     18-30      10
## 19027     18-30      10
## 19028     18-30      10
## 19029     18-30      10
## 19030     18-30      10
## 19031     50-60       5
## 19032     18-30      10
## 19033     18-30      10
## 19034     18-30      10
## 19035     18-30      10
## 19036     18-30      10
## 19037     18-30      10
## 19038     30-35       7
## 19039     18-30      10
## 19040     18-30      10
## 19041     18-30      10
## 19042     18-30      10
## 19043     18-30      10
## 19044     35-40       6
## 19045     18-30      10
## 19046     18-30      10
## 19047     35-40       6
## 19048     35-40       6
## 19049     18-30      10
## 19050     18-30      10
## 19051     30-35       7
## 19052     18-30      10
## 19053     30-35       7
## 19054     18-30      10
## 19055     18-30      10
## 19056     18-30      10
## 19057     18-30      10
## 19058     30-35       7
## 19059     18-30      10
## 19060     18-30      10
## 19061     18-30      10
## 19062     18-30      10
## 19063     18-30      10
## 19064     18-30      10
## 19065     18-30      10
## 19066     40-50       5
## 19067     30-35       7
## 19068     18-30      10
## 19069     30-35       7
## 19070     18-30      10
## 19071     18-30      10
## 19072     40-50       5
## 19073     30-35       7
## 19074     35-40       6
## 19075     35-40       6
## 19076     18-30      10
## 19077     30-35       7
## 19078     35-40       6
## 19079     18-30      10
## 19080     18-30      10
## 19081     18-30      10
## 19082     18-30      10
## 19083     35-40       6
## 19084     35-40       6
## 19085     40-50       5
## 19086     18-30      10
## 19087     18-30      10
## 19088     18-30      10
## 19089     18-30      10
## 19090     30-35       7
## 19091     35-40       6
## 19092     40-50       5
## 19093     35-40       6
## 19094     18-30      10
## 19095     18-30      10
## 19096     30-35       7
## 19097     30-35       7
## 19098     18-30      10
## 19099     18-30      10
## 19100     18-30      10
## 19101     30-35       7
## 19102     30-35       7
## 19103     18-30      10
## 19104     18-30      10
## 19105     18-30      10
## 19106     30-35       7
## 19107     40-50       5
## 19108     18-30      10
## 19109     18-30      10
## 19110     18-30      10
## 19111     40-50       5
## 19112     18-30      10
## 19113     18-30      10
## 19114     30-35       7
## 19115     18-30      10
## 19116     18-30      10
## 19117     35-40       6
## 19118     35-40       6
## 19119     30-35       7
## 19120     30-35       7
## 19121     40-50       5
## 19122     18-30      10
## 19123     18-30      10
## 19124     18-30      10
## 19125     18-30      10
## 19126     18-30      10
## 19127     30-35       7
## 19128     18-30      10
## 19129     30-35       7
## 19130     18-30      10
## 19131     30-35       7
## 19132     18-30      10
## 19133     18-30      10
## 19134     18-30      10
## 19135     40-50       5
## 19136     30-35       7
## 19137     18-30      10
## 19138     30-35       7
## 19139     18-30      10
## 19140     30-35       7
## 19141     30-35       7
## 19142     18-30      10
## 19143     18-30      10
## 19144     18-30      10
## 19145     18-30      10
## 19146     18-30      10
## 19147     18-30      10
## 19148     35-40       6
## 19149     50-60       5
## 19150     18-30      10
## 19151     18-30      10
## 19152     18-30      10
## 19153     18-30      10
## 19154     40-50       5
## 19155     18-30      10
## 19156     18-30      10
## 19157     30-35       7
## 19158     30-35       7
## 19159     30-35       7
## 19160     18-30      10
## 19161     18-30      10
## 19162     18-30      10
## 19163     18-30      10
## 19164     18-30      10
## 19165     18-30      10
## 19166     18-30      10
## 19167     35-40       6
## 19168     40-50       5
## 19169     30-35       7
## 19170     35-40       6
## 19171     18-30      10
## 19172     30-35       7
## 19173     30-35       7
## 19174     40-50       5
## 19175     18-30      10
## 19176     30-35       7
## 19177     18-30      10
## 19178     18-30      10
## 19179     18-30      10
## 19180     18-30      10
## 19181     30-35       7
## 19182     18-30      10
## 19183     18-30      10
## 19184     35-40       6
## 19185     35-40       6
## 19186     30-35       7
## 19187     18-30      10
## 19188     18-30      10
## 19189     35-40       6
## 19190     30-35       7
## 19191     35-40       6
## 19192     18-30      10
## 19193     30-35       7
## 19194     30-35       7
## 19195     35-40       6
## 19196     40-50       5
## 19197     18-30      10
## 19198     40-50       5
## 19199     50-60       5
## 19200     30-35       7
## 19201     40-50       5
## 19202     18-30      10
## 19203     18-30      10
## 19204     18-30      10
## 19205     35-40       6
## 19206     18-30      10
## 19207     40-50       5
## 19208     35-40       6
## 19209     18-30      10
## 19210     40-50       5
## 19211     18-30      10
## 19212     18-30      10
## 19213     40-50       5
## 19214     40-50       5
## 19215     30-35       7
## 19216     18-30      10
## 19217     30-35       7
## 19218     18-30      10
## 19219     30-35       7
## 19220     18-30      10
## 19221     18-30      10
## 19222     30-35       7
## 19223     18-30      10
## 19224     18-30      10
## 19225     18-30      10
## 19226     18-30      10
## 19227     35-40       6
## 19228     40-50       5
## 19229     40-50       5
## 19230     35-40       6
## 19231     30-35       7
## 19232     30-35       7
## 19233     30-35       7
## 19234     40-50       5
## 19235     18-30      10
## 19236     18-30      10
## 19237     18-30      10
## 19238     30-35       7
## 19239     35-40       6
## 19240     18-30      10
## 19241     18-30      10
## 19242     18-30      10
## 19243     30-35       7
## 19244     18-30      10
## 19245     18-30      10
## 19246     18-30      10
## 19247     18-30      10
## 19248     18-30      10
## 19249     30-35       7
## 19250     18-30      10
## 19251     18-30      10
## 19252     18-30      10
## 19253     35-40       6
## 19254     30-35       7
## 19255     18-30      10
## 19256     35-40       6
## 19257     35-40       6
## 19258     40-50       5
## 19259     35-40       6
## 19260     18-30      10
## 19261     18-30      10
## 19262     18-30      10
## 19263     40-50       5
## 19264     18-30      10
## 19265     18-30      10
## 19266     18-30      10
## 19267     18-30      10
## 19268     18-30      10
## 19269     18-30      10
## 19270     35-40       6
## 19271     18-30      10
## 19272     40-50       5
## 19273     18-30      10
## 19274     18-30      10
## 19275     30-35       7
## 19276     35-40       6
## 19277     40-50       5
## 19278     40-50       5
## 19279     18-30      10
## 19280     40-50       5
## 19281     18-30      10
## 19282     18-30      10
## 19283     18-30      10
## 19284     18-30      10
## 19285     40-50       5
## 19286     18-30      10
## 19287     18-30      10
## 19288     18-30      10
## 19289     40-50       5
## 19290     18-30      10
## 19291     18-30      10
## 19292     18-30      10
## 19293     35-40       6
## 19294     18-30      10
## 19295       65+       4
## 19296     18-30      10
## 19297     18-30      10
## 19298     40-50       5
## 19299     50-60       5
## 19300     35-40       6
## 19301     50-60       5
## 19302     18-30      10
## 19303     18-30      10
## 19304     18-30      10
## 19305     18-30      10
## 19306     18-30      10
## 19307     30-35       7
## 19308     18-30      10
## 19309     18-30      10
## 19310     40-50       5
## 19311     18-30      10
## 19312     18-30      10
## 19313     30-35       7
## 19314     35-40       6
## 19315     18-30      10
## 19316     40-50       5
## 19317     30-35       7
## 19318     18-30      10
## 19319     18-30      10
## 19320     30-35       7
## 19321     30-35       7
## 19322     30-35       7
## 19323     30-35       7
## 19324     35-40       6
## 19325     18-30      10
## 19326     30-35       7
## 19327     18-30      10
## 19328     30-35       7
## 19329     18-30      10
## 19330     18-30      10
## 19331     35-40       6
## 19332     18-30      10
## 19333     50-60       5
## 19334     40-50       5
## 19335     35-40       6
## 19336     35-40       6
## 19337     35-40       6
## 19338     18-30      10
## 19339     18-30      10
## 19340     30-35       7
## 19341     18-30      10
## 19342     30-35       7
## 19343     30-35       7
## 19344     50-60       5
## 19345     18-30      10
## 19346     35-40       6
## 19347     18-30      10
## 19348     18-30      10
## 19349     35-40       6
## 19350     30-35       7
## 19351     30-35       7
## 19352     18-30      10
## 19353       65+       4
## 19354     18-30      10
## 19355     18-30      10
## 19356     30-35       7
## 19357     18-30      10
## 19358     18-30      10
## 19359     30-35       7
## 19360     18-30      10
## 19361     35-40       6
## 19362     30-35       7
## 19363     18-30      10
## 19364       65+       4
## 19365     18-30      10
## 19366     18-30      10
## 19367     35-40       6
## 19368     18-30      10
## 19369     30-35       7
## 19370     40-50       5
## 19371     18-30      10
## 19372     18-30      10
## 19373     18-30      10
## 19374     40-50       5
## 19375     40-50       5
## 19376     50-60       5
## 19377     18-30      10
## 19378     30-35       7
## 19379     18-30      10
## 19380     30-35       7
## 19381     18-30      10
## 19382     18-30      10
## 19383     50-60       5
## 19384     18-30      10
## 19385     18-30      10
## 19386     50-60       5
## 19387     30-35       7
## 19388     18-30      10
## 19389     18-30      10
## 19390     18-30      10
## 19391     18-30      10
## 19392     40-50       5
## 19393     18-30      10
## 19394     30-35       7
## 19395     18-30      10
## 19396     50-60       5
## 19397     50-60       5
## 19398     18-30      10
## 19399     18-30      10
## 19400       65+       4
## 19401     18-30      10
## 19402     18-30      10
## 19403     30-35       7
## 19404     35-40       6
## 19405     18-30      10
## 19406     30-35       7
## 19407     50-60       5
## 19408     18-30      10
## 19409     18-30      10
## 19410     18-30      10
## 19411     30-35       7
## 19412     18-30      10
## 19413     18-30      10
## 19414     30-35       7
## 19415     18-30      10
## 19416     40-50       5
## 19417     30-35       7
## 19418     35-40       6
## 19419     40-50       5
## 19420     18-30      10
## 19421     18-30      10
## 19422     18-30      10
## 19423     18-30      10
## 19424     18-30      10
## 19425     18-30      10
## 19426     30-35       7
## 19427     18-30      10
## 19428     18-30      10
## 19429     35-40       6
## 19430     18-30      10
## 19431     18-30      10
## 19432     35-40       6
## 19433     30-35       7
## 19434     35-40       6
## 19435       65+       4
## 19436     40-50       5
## 19437     40-50       5
## 19438     40-50       5
## 19439     35-40       6
## 19440     18-30      10
## 19441     30-35       7
## 19442     30-35       7
## 19443     30-35       7
## 19444     18-30      10
## 19445     50-60       5
## 19446     18-30      10
## 19447     30-35       7
## 19448     50-60       5
## 19449     50-60       5
## 19450     35-40       6
## 19451     18-30      10
## 19452     18-30      10
## 19453     18-30      10
## 19454     18-30      10
## 19455     18-30      10
## 19456     35-40       6
## 19457     40-50       5
## 19458     35-40       6
## 19459     18-30      10
## 19460     18-30      10
## 19461     18-30      10
## 19462     18-30      10
## 19463     18-30      10
## 19464     35-40       6
## 19465     30-35       7
## 19466     18-30      10
## 19467     18-30      10
## 19468     18-30      10
## 19469     18-30      10
## 19470     18-30      10
## 19471     40-50       5
## 19472     18-30      10
## 19473     18-30      10
## 19474     18-30      10
## 19475     18-30      10
## 19476     40-50       5
## 19477     18-30      10
## 19478     18-30      10
## 19479     35-40       6
## 19480     35-40       6
## 19481     18-30      10
## 19482     18-30      10
## 19483     18-30      10
## 19484     18-30      10
## 19485     18-30      10
## 19486     30-35       7
## 19487     40-50       5
## 19488     18-30      10
## 19489     40-50       5
## 19490     30-35       7
## 19491     30-35       7
## 19492     18-30      10
## 19493     18-30      10
## 19494     18-30      10
## 19495     30-35       7
## 19496     40-50       5
## 19497     18-30      10
## 19498     30-35       7
## 19499     18-30      10
## 19500     18-30      10
## 19501     30-35       7
## 19502     18-30      10
## 19503     35-40       6
## 19504     35-40       6
## 19505     18-30      10
## 19506     18-30      10
## 19507     18-30      10
## 19508     18-30      10
## 19509     18-30      10
## 19510     18-30      10
## 19511     18-30      10
## 19512     18-30      10
## 19513     35-40       6
## 19514     18-30      10
## 19515     18-30      10
## 19516     30-35       7
## 19517     30-35       7
## 19518     40-50       5
## 19519     18-30      10
## 19520     18-30      10
## 19521     18-30      10
## 19522     18-30      10
## 19523     30-35       7
## 19524     30-35       7
## 19525     18-30      10
## 19526     30-35       7
## 19527       65+       4
## 19528     35-40       6
## 19529     18-30      10
## 19530     18-30      10
## 19531     18-30      10
## 19532     18-30      10
## 19533     35-40       6
## 19534     18-30      10
## 19535     40-50       5
## 19536     18-30      10
## 19537     30-35       7
## 19538     30-35       7
## 19539     18-30      10
## 19540     30-35       7
## 19541     18-30      10
## 19542     30-35       7
## 19543     18-30      10
## 19544     18-30      10
## 19545     18-30      10
## 19546     18-30      10
## 19547     50-60       5
## 19548     18-30      10
## 19549     35-40       6
## 19550     18-30      10
## 19551     18-30      10
## 19552     18-30      10
## 19553     30-35       7
## 19554     35-40       6
## 19555     18-30      10
## 19556     40-50       5
## 19557     30-35       7
## 19558     18-30      10
## 19559     35-40       6
## 19560     18-30      10
## 19561     18-30      10
## 19562     30-35       7
## 19563     40-50       5
## 19564     30-35       7
## 19565     18-30      10
## 19566     50-60       5
## 19567     18-30      10
## 19568     40-50       5
## 19569     35-40       6
## 19570     18-30      10
## 19571     18-30      10
## 19572     18-30      10
## 19573     30-35       7
## 19574     18-30      10
## 19575     30-35       7
## 19576     30-35       7
## 19577     18-30      10
## 19578     18-30      10
## 19579     30-35       7
## 19580     18-30      10
## 19581     18-30      10
## 19582     30-35       7
## 19583     18-30      10
## 19584     35-40       6
## 19585     18-30      10
## 19586     18-30      10
## 19587     18-30      10
## 19588     40-50       5
## 19589     18-30      10
## 19590     18-30      10
## 19591     18-30      10
## 19592     18-30      10
## 19593     18-30      10
## 19594     18-30      10
## 19595     40-50       5
## 19596     18-30      10
## 19597     18-30      10
## 19598     18-30      10
## 19599     18-30      10
## 19600     18-30      10
## 19601     18-30      10
## 19602     18-30      10
## 19603     30-35       7
## 19604     30-35       7
## 19605     18-30      10
## 19606     18-30      10
## 19607     18-30      10
## 19608     18-30      10
## 19609     18-30      10
## 19610     18-30      10
## 19611     50-60       5
## 19612     18-30      10
## 19613     18-30      10
## 19614     18-30      10
## 19615     35-40       6
## 19616     18-30      10
## 19617     35-40       6
## 19618     30-35       7
## 19619     18-30      10
## 19620     40-50       5
## 19621     18-30      10
## 19622     18-30      10
## 19623     18-30      10
## 19624     40-50       5
## 19625     30-35       7
## 19626     18-30      10
## 19627     18-30      10
## 19628     40-50       5
## 19629     35-40       6
## 19630     40-50       5
## 19631     18-30      10
## 19632     18-30      10
## 19633     18-30      10
## 19634     35-40       6
## 19635     18-30      10
## 19636       65+       4
## 19637     35-40       6
## 19638     18-30      10
## 19639     40-50       5
## 19640     40-50       5
## 19641     30-35       7
## 19642     35-40       6
## 19643     18-30      10
## 19644     30-35       7
## 19645     18-30      10
## 19646     18-30      10
## 19647     30-35       7
## 19648     18-30      10
## 19649     50-60       5
## 19650     50-60       5
## 19651     35-40       6
## 19652     18-30      10
## 19653     35-40       6
## 19654     30-35       7
## 19655     35-40       6
## 19656     50-60       5
## 19657     35-40       6
## 19658     40-50       5
## 19659     30-35       7
## 19660     18-30      10
## 19661     18-30      10
## 19662     35-40       6
## 19663     18-30      10
## 19664     30-35       7
## 19665     30-35       7
## 19666     18-30      10
## 19667     30-35       7
## 19668     35-40       6
## 19669     18-30      10
## 19670     30-35       7
## 19671     18-30      10
## 19672     35-40       6
## 19673     30-35       7
## 19674     18-30      10
## 19675     18-30      10
## 19676     18-30      10
## 19677     18-30      10
## 19678     18-30      10
## 19679     18-30      10
## 19680     35-40       6
## 19681     30-35       7
## 19682     18-30      10
## 19683     18-30      10
## 19684     30-35       7
## 19685     35-40       6
## 19686     30-35       7
## 19687     35-40       6
## 19688     18-30      10
## 19689     35-40       6
## 19690     18-30      10
## 19691     30-35       7
## 19692     18-30      10
## 19693     30-35       7
## 19694     18-30      10
## 19695     18-30      10
## 19696     18-30      10
## 19697     18-30      10
## 19698     30-35       7
## 19699     40-50       5
## 19700     30-35       7
## 19701     35-40       6
## 19702     18-30      10
## 19703     40-50       5
## 19704     30-35       7
## 19705     40-50       5
## 19706     30-35       7
## 19707     30-35       7
## 19708     18-30      10
## 19709     18-30      10
## 19710     40-50       5
## 19711     35-40       6
## 19712     18-30      10
## 19713     40-50       5
## 19714     30-35       7
## 19715     18-30      10
## 19716     18-30      10
## 19717     18-30      10
## 19718     50-60       5
## 19719     30-35       7
## 19720     18-30      10
## 19721     18-30      10
## 19722     18-30      10
## 19723     18-30      10
## 19724     18-30      10
## 19725     18-30      10
## 19726     30-35       7
## 19727     18-30      10
## 19728     18-30      10
## 19729     18-30      10
## 19730     40-50       5
## 19731     18-30      10
## 19732     18-30      10
## 19733     30-35       7
## 19734     18-30      10
## 19735     40-50       5
## 19736     30-35       7
## 19737     18-30      10
## 19738     18-30      10
## 19739     18-30      10
## 19740     30-35       7
## 19741     30-35       7
## 19742     30-35       7
## 19743     18-30      10
## 19744     18-30      10
## 19745     18-30      10
## 19746     40-50       5
## 19747     18-30      10
## 19748     40-50       5
## 19749     18-30      10
## 19750     35-40       6
## 19751     30-35       7
## 19752     30-35       7
## 19753     35-40       6
## 19754     30-35       7
## 19755     35-40       6
## 19756     18-30      10
## 19757     35-40       6
## 19758     18-30      10
## 19759     18-30      10
## 19760     18-30      10
## 19761     18-30      10
## 19762     30-35       7
## 19763     40-50       5
## 19764     18-30      10
## 19765     40-50       5
## 19766     18-30      10
## 19767     40-50       5
## 19768     35-40       6
## 19769     35-40       6
## 19770     30-35       7
## 19771     30-35       7
## 19772     40-50       5
## 19773     18-30      10
## 19774     35-40       6
## 19775     18-30      10
## 19776       65+       4
## 19777     18-30      10
## 19778     18-30      10
## 19779       65+       4
## 19780     30-35       7
## 19781     18-30      10
## 19782     50-60       5
## 19783     18-30      10
## 19784     18-30      10
## 19785       65+       4
## 19786     40-50       5
## 19787     50-60       5
## 19788     30-35       7
## 19789     18-30      10
## 19790     18-30      10
## 19791     40-50       5
## 19792     40-50       5
## 19793       65+       4
## 19794     35-40       6
## 19795     40-50       5
## 19796     40-50       5
## 19797     35-40       6
## 19798     30-35       7
## 19799     50-60       5
## 19800     18-30      10
## 19801     30-35       7
## 19802     18-30      10
## 19803     40-50       5
## 19804     18-30      10
## 19805     18-30      10
## 19806     35-40       6
## 19807     18-30      10
## 19808     18-30      10
## 19809     18-30      10
## 19810     18-30      10
## 19811     18-30      10
## 19812     40-50       5
## 19813     40-50       5
## 19814     40-50       5
## 19815     18-30      10
## 19816     18-30      10
## 19817     40-50       5
## 19818     40-50       5
## 19819     30-35       7
## 19820     40-50       5
## 19821     30-35       7
## 19822       65+       4
## 19823     40-50       5
## 19824     50-60       5
## 19825     18-30      10
## 19826     35-40       6
## 19827     18-30      10
## 19828     35-40       6
## 19829     40-50       5
## 19830     18-30      10
## 19831     18-30      10
## 19832     18-30      10
## 19833     30-35       7
## 19834     18-30      10
## 19835     18-30      10
## 19836     40-50       5
## 19837     30-35       7
## 19838     18-30      10
## 19839     40-50       5
## 19840     30-35       7
## 19841     30-35       7
## 19842     18-30      10
## 19843     40-50       5
## 19844     18-30      10
## 19845     18-30      10
## 19846     30-35       7
## 19847     35-40       6
## 19848     18-30      10
## 19849     40-50       5
## 19850     40-50       5
## 19851     18-30      10
## 19852     30-35       7
## 19853     35-40       6
## 19854     18-30      10
## 19855     40-50       5
## 19856     30-35       7
## 19857     18-30      10
## 19858     35-40       6
## 19859     50-60       5
## 19860     30-35       7
## 19861     35-40       6
## 19862     50-60       5
## 19863     18-30      10
## 19864     30-35       7
## 19865     18-30      10
## 19866     35-40       6
## 19867     40-50       5
## 19868     30-35       7
## 19869     30-35       7
## 19870     35-40       6
## 19871     18-30      10
## 19872     35-40       6
## 19873     18-30      10
## 19874     50-60       5
## 19875     40-50       5
## 19876     50-60       5
## 19877     30-35       7
## 19878     30-35       7
## 19879     30-35       7
## 19880     18-30      10
## 19881     35-40       6
## 19882     30-35       7
## 19883     18-30      10
## 19884     30-35       7
## 19885     35-40       6
## 19886     18-30      10
## 19887     40-50       5
## 19888     18-30      10
## 19889     30-35       7
## 19890     40-50       5
## 19891     30-35       7
## 19892     35-40       6
## 19893     35-40       6
## 19894     40-50       5
## 19895     35-40       6
## 19896     50-60       5
## 19897     40-50       5
## 19898     30-35       7
## 19899     40-50       5
## 19900     35-40       6
## 19901     30-35       7
## 19902     30-35       7
## 19903     30-35       7
## 19904     18-30      10
## 19905     18-30      10
## 19906     35-40       6
## 19907     40-50       5
## 19908     40-50       5
## 19909     40-50       5
## 19910     30-35       7
## 19911     18-30      10
## 19912     35-40       6
## 19913       65+       4
## 19914     30-35       7
## 19915     50-60       5
## 19916     35-40       6
## 19917     18-30      10
## 19918     50-60       5
## 19919     18-30      10
## 19920     30-35       7
## 19921     40-50       5
## 19922     40-50       5
## 19923     50-60       5
## 19924     50-60       5
## 19925     18-30      10
## 19926     35-40       6
## 19927     18-30      10
## 19928     30-35       7
## 19929     18-30      10
## 19930     35-40       6
## 19931     40-50       5
## 19932     18-30      10
## 19933     50-60       5
## 19934     35-40       6
## 19935     18-30      10
## 19936     30-35       7
## 19937     30-35       7
## 19938     40-50       5
## 19939     18-30      10
## 19940     40-50       5
## 19941     30-35       7
## 19942     35-40       6
## 19943     18-30      10
## 19944     35-40       6
## 19945     30-35       7
## 19946     40-50       5
## 19947     18-30      10
## 19948     40-50       5
## 19949     18-30      10
## 19950     18-30      10
## 19951     40-50       5
## 19952     40-50       5
## 19953     18-30      10
## 19954     30-35       7
## 19955     35-40       6
## 19956     35-40       6
## 19957     18-30      10
## 19958     18-30      10
## 19959     35-40       6
## 19960     30-35       7
## 19961     18-30      10
## 19962     40-50       5
## 19963     18-30      10
## 19964     18-30      10
## 19965     18-30      10
## 19966     35-40       6
## 19967     50-60       5
## 19968     18-30      10
## 19969     18-30      10
## 19970     18-30      10
## 19971     35-40       6
## 19972     30-35       7
## 19973     35-40       6
## 19974     30-35       7
## 19975     18-30      10
## 19976     30-35       7
## 19977     18-30      10
## 19978     18-30      10
## 19979     18-30      10
## 19980     40-50       5
## 19981     18-30      10
## 19982     18-30      10
## 19983     18-30      10
## 19984     40-50       5
## 19985     35-40       6
## 19986     30-35       7
## 19987     18-30      10
## 19988     40-50       5
## 19989     30-35       7
## 19990     18-30      10
## 19991     18-30      10
## 19992     18-30      10
## 19993     18-30      10
## 19994     40-50       5
## 19995     18-30      10
## 19996     40-50       5
## 19997     40-50       5
## 19998     18-30      10
## 19999     50-60       5
## 20000     18-30      10
## 20001     30-35       7
## 20002     18-30      10
## 20003     18-30      10
## 20004     18-30      10
## 20005     18-30      10
## 20006     18-30      10
## 20007     18-30      10
## 20008     18-30      10
## 20009     18-30      10
## 20010     30-35       7
## 20011     18-30      10
## 20012     35-40       6
## 20013     18-30      10
## 20014     40-50       5
## 20015     18-30      10
## 20016     30-35       7
## 20017     40-50       5
## 20018     18-30      10
## 20019     35-40       6
## 20020     30-35       7
## 20021     18-30      10
## 20022     18-30      10
## 20023     18-30      10
## 20024     18-30      10
## 20025     30-35       7
## 20026     18-30      10
## 20027     30-35       7
## 20028     40-50       5
## 20029     18-30      10
## 20030     18-30      10
## 20031     40-50       5
## 20032     18-30      10
## 20033     30-35       7
## 20034     40-50       5
## 20035     30-35       7
## 20036     30-35       7
## 20037     30-35       7
## 20038     18-30      10
## 20039       65+       4
## 20040     18-30      10
## 20041     18-30      10
## 20042     18-30      10
## 20043     30-35       7
## 20044     30-35       7
## 20045     18-30      10
## 20046     18-30      10
## 20047     18-30      10
## 20048     35-40       6
## 20049     30-35       7
## 20050     30-35       7
## 20051     18-30      10
## 20052     50-60       5
## 20053     35-40       6
## 20054     50-60       5
## 20055     18-30      10
## 20056     18-30      10
## 20057     35-40       6
## 20058     40-50       5
## 20059     40-50       5
## 20060     18-30      10
## 20061     40-50       5
## 20062     18-30      10
## 20063     30-35       7
## 20064     18-30      10
## 20065     40-50       5
## 20066     35-40       6
## 20067     18-30      10
## 20068     18-30      10
## 20069     18-30      10
## 20070     18-30      10
## 20071     18-30      10
## 20072     18-30      10
## 20073     18-30      10
## 20074     18-30      10
## 20075     30-35       7
## 20076     50-60       5
## 20077     40-50       5
## 20078     35-40       6
## 20079     35-40       6
## 20080     18-30      10
## 20081     40-50       5
## 20082     30-35       7
## 20083     18-30      10
## 20084     18-30      10
## 20085     40-50       5
## 20086     50-60       5
## 20087     18-30      10
## 20088     35-40       6
## 20089     30-35       7
## 20090     35-40       6
## 20091     18-30      10
## 20092       65+       4
## 20093     30-35       7
## 20094     18-30      10
## 20095     40-50       5
## 20096     18-30      10
## 20097     30-35       7
## 20098     18-30      10
## 20099     18-30      10
## 20100       65+       4
## 20101     40-50       5
## 20102     18-30      10
## 20103     18-30      10
## 20104     40-50       5
## 20105     50-60       5
## 20106     30-35       7
## 20107     18-30      10
## 20108     18-30      10
## 20109     18-30      10
## 20110     30-35       7
## 20111     30-35       7
## 20112     40-50       5
## 20113     18-30      10
## 20114     40-50       5
## 20115     35-40       6
## 20116     18-30      10
## 20117     40-50       5
## 20118     18-30      10
## 20119     18-30      10
## 20120       65+       4
## 20121     18-30      10
## 20122     18-30      10
## 20123     40-50       5
## 20124     18-30      10
## 20125     30-35       7
## 20126     35-40       6
## 20127     30-35       7
## 20128     40-50       5
## 20129     30-35       7
## 20130     30-35       7
## 20131     18-30      10
## 20132     18-30      10
## 20133     35-40       6
## 20134     18-30      10
## 20135     18-30      10
## 20136     18-30      10
## 20137     18-30      10
## 20138     18-30      10
## 20139     18-30      10
## 20140     18-30      10
## 20141     18-30      10
## 20142     18-30      10
## 20143     18-30      10
## 20144     18-30      10
## 20145     18-30      10
## 20146     18-30      10
## 20147     18-30      10
## 20148     18-30      10
## 20149     18-30      10
## 20150     18-30      10
## 20151     18-30      10
## 20152     40-50       5
## 20153     18-30      10
## 20154     30-35       7
## 20155     18-30      10
## 20156     30-35       7
## 20157     18-30      10
## 20158     40-50       5
## 20159     40-50       5
## 20160     30-35       7
## 20161     40-50       5
## 20162     30-35       7
## 20163     40-50       5
## 20164     18-30      10
## 20165     40-50       5
## 20166     35-40       6
## 20167     50-60       5
## 20168     30-35       7
## 20169     40-50       5
## 20170     50-60       5
## 20171     35-40       6
## 20172     30-35       7
## 20173     18-30      10
## 20174     18-30      10
## 20175     50-60       5
## 20176     35-40       6
## 20177     18-30      10
## 20178     18-30      10
## 20179     18-30      10
## 20180     18-30      10
## 20181     18-30      10
## 20182     18-30      10
## 20183     18-30      10
## 20184     18-30      10
## 20185     35-40       6
## 20186     18-30      10
## 20187     40-50       5
## 20188     40-50       5
## 20189     35-40       6
## 20190     18-30      10
## 20191     18-30      10
## 20192     18-30      10
## 20193     50-60       5
## 20194     18-30      10
## 20195     30-35       7
## 20196     50-60       5
## 20197     35-40       6
## 20198     18-30      10
## 20199     18-30      10
## 20200     35-40       6
## 20201     40-50       5
## 20202     35-40       6
## 20203     30-35       7
## 20204     40-50       5
## 20205     30-35       7
## 20206     30-35       7
## 20207     18-30      10
## 20208     30-35       7
## 20209     30-35       7
## 20210     50-60       5
## 20211     30-35       7
## 20212     18-30      10
## 20213     30-35       7
## 20214     30-35       7
## 20215     30-35       7
## 20216     50-60       5
## 20217     18-30      10
## 20218     35-40       6
## 20219     30-35       7
## 20220     18-30      10
## 20221     18-30      10
## 20222     30-35       7
## 20223     18-30      10
## 20224     18-30      10
## 20225       65+       4
## 20226     50-60       5
## 20227     35-40       6
## 20228     40-50       5
## 20229     18-30      10
## 20230     40-50       5
## 20231     18-30      10
## 20232     18-30      10
## 20233       65+       4
## 20234     35-40       6
## 20235     18-30      10
## 20236     35-40       6
## 20237     35-40       6
## 20238     30-35       7
## 20239     30-35       7
## 20240     30-35       7
## 20241     50-60       5
## 20242     35-40       6
## 20243     35-40       6
## 20244     40-50       5
## 20245     35-40       6
## 20246     40-50       5
## 20247     18-30      10
## 20248     40-50       5
## 20249     30-35       7
## 20250     30-35       7
## 20251     40-50       5
## 20252     30-35       7
## 20253     18-30      10
## 20254     30-35       7
## 20255     40-50       5
## 20256     30-35       7
## 20257     30-35       7
## 20258     30-35       7
## 20259     18-30      10
## 20260     30-35       7
## 20261     30-35       7
## 20262     35-40       6
## 20263     30-35       7
## 20264     18-30      10
## 20265     40-50       5
## 20266     18-30      10
## 20267     35-40       6
## 20268     40-50       5
## 20269     18-30      10
## 20270     30-35       7
## 20271     18-30      10
## 20272     18-30      10
## 20273     18-30      10
## 20274     18-30      10
## 20275     18-30      10
## 20276     18-30      10
## 20277     50-60       5
## 20278     18-30      10
## 20279     18-30      10
## 20280     30-35       7
## 20281     18-30      10
## 20282     30-35       7
## 20283     30-35       7
## 20284     35-40       6
## 20285     18-30      10
## 20286       65+       4
## 20287     30-35       7
## 20288     18-30      10
## 20289     18-30      10
## 20290     30-35       7
## 20291     30-35       7
## 20292     18-30      10
## 20293     18-30      10
## 20294     18-30      10
## 20295     40-50       5
## 20296     35-40       6
## 20297     18-30      10
## 20298     18-30      10
## 20299     18-30      10
## 20300     18-30      10
## 20301     50-60       5
## 20302     40-50       5
## 20303     30-35       7
## 20304     18-30      10
## 20305     35-40       6
## 20306     30-35       7
## 20307     18-30      10
## 20308     35-40       6
## 20309     40-50       5
## 20310     18-30      10
## 20311     40-50       5
## 20312     35-40       6
## 20313     30-35       7
## 20314     35-40       6
## 20315     18-30      10
## 20316     18-30      10
## 20317     18-30      10
## 20318     18-30      10
## 20319     18-30      10
## 20320     35-40       6
## 20321     18-30      10
## 20322     40-50       5
## 20323     18-30      10
## 20324     35-40       6
## 20325     18-30      10
## 20326     35-40       6
## 20327     18-30      10
## 20328     40-50       5
## 20329     40-50       5
## 20330     35-40       6
## 20331     30-35       7
## 20332     18-30      10
## 20333     30-35       7
## 20334     18-30      10
## 20335     40-50       5
## 20336     30-35       7
## 20337     18-30      10
## 20338     18-30      10
## 20339     18-30      10
## 20340     18-30      10
## 20341     35-40       6
## 20342     30-35       7
## 20343     35-40       6
## 20344     18-30      10
## 20345     30-35       7
## 20346     18-30      10
## 20347     18-30      10
## 20348     18-30      10
## 20349     35-40       6
## 20350     18-30      10
## 20351     18-30      10
## 20352     18-30      10
## 20353     35-40       6
## 20354     30-35       7
## 20355     30-35       7
## 20356     50-60       5
## 20357     18-30      10
## 20358     30-35       7
## 20359     30-35       7
## 20360     18-30      10
## 20361     30-35       7
## 20362     40-50       5
## 20363     50-60       5
## 20364     40-50       5
## 20365     18-30      10
## 20366     18-30      10
## 20367     40-50       5
## 20368     35-40       6
## 20369     35-40       6
## 20370     40-50       5
## 20371     18-30      10
## 20372     18-30      10
## 20373     18-30      10
## 20374     18-30      10
## 20375     18-30      10
## 20376     18-30      10
## 20377     18-30      10
## 20378     18-30      10
## 20379     40-50       5
## 20380     40-50       5
## 20381     18-30      10
## 20382     18-30      10
## 20383     18-30      10
## 20384     30-35       7
## 20385     18-30      10
## 20386     18-30      10
## 20387     30-35       7
## 20388     30-35       7
## 20389     18-30      10
## 20390     35-40       6
## 20391     40-50       5
## 20392     18-30      10
## 20393     18-30      10
## 20394     30-35       7
## 20395     18-30      10
## 20396     40-50       5
## 20397     40-50       5
## 20398     18-30      10
## 20399     50-60       5
## 20400     18-30      10
## 20401     35-40       6
## 20402     40-50       5
## 20403     30-35       7
## 20404     30-35       7
## 20405     40-50       5
## 20406     18-30      10
## 20407     35-40       6
## 20408     18-30      10
## 20409     18-30      10
## 20410       65+       4
## 20411     18-30      10
## 20412     18-30      10
## 20413     35-40       6
## 20414     40-50       5
## 20415     18-30      10
## 20416     18-30      10
## 20417     35-40       6
## 20418     18-30      10
## 20419     18-30      10
## 20420     18-30      10
## 20421     40-50       5
## 20422     18-30      10
## 20423     35-40       6
## 20424     30-35       7
## 20425     18-30      10
## 20426     18-30      10
## 20427     50-60       5
## 20428     40-50       5
## 20429     18-30      10
## 20430     40-50       5
## 20431     30-35       7
## 20432     18-30      10
## 20433     35-40       6
## 20434     18-30      10
## 20435     30-35       7
## 20436     18-30      10
## 20437     50-60       5
## 20438     50-60       5
## 20439     18-30      10
## 20440     18-30      10
## 20441     40-50       5
## 20442     18-30      10
## 20443     18-30      10
## 20444     18-30      10
## 20445     50-60       5
## 20446     18-30      10
## 20447     40-50       5
## 20448     18-30      10
## 20449     18-30      10
## 20450     40-50       5
## 20451     18-30      10
## 20452     30-35       7
## 20453     18-30      10
## 20454     18-30      10
## 20455     35-40       6
## 20456     18-30      10
## 20457     30-35       7
## 20458     30-35       7
## 20459     18-30      10
## 20460     40-50       5
## 20461     30-35       7
## 20462     50-60       5
## 20463     35-40       6
## 20464     35-40       6
## 20465     18-30      10
## 20466     18-30      10
## 20467     18-30      10
## 20468     18-30      10
## 20469     18-30      10
## 20470     18-30      10
## 20471     18-30      10
## 20472     18-30      10
## 20473     40-50       5
## 20474     18-30      10
## 20475     30-35       7
## 20476     40-50       5
## 20477     40-50       5
## 20478     35-40       6
## 20479     35-40       6
## 20480     35-40       6
## 20481     30-35       7
## 20482     18-30      10
## 20483     40-50       5
## 20484     18-30      10
## 20485     18-30      10
## 20486     30-35       7
## 20487     18-30      10
## 20488     18-30      10
## 20489     18-30      10
## 20490     30-35       7
## 20491     18-30      10
## 20492     30-35       7
## 20493     18-30      10
## 20494     30-35       7
## 20495     35-40       6
## 20496     50-60       5
## 20497     18-30      10
## 20498     40-50       5
## 20499     40-50       5
## 20500     35-40       6
## 20501     18-30      10
## 20502     30-35       7
## 20503     18-30      10
## 20504     18-30      10
## 20505     40-50       5
## 20506     18-30      10
## 20507     30-35       7
## 20508     18-30      10
## 20509     18-30      10
## 20510     18-30      10
## 20511     18-30      10
## 20512     18-30      10
## 20513     30-35       7
## 20514     40-50       5
## 20515     18-30      10
## 20516     18-30      10
## 20517     40-50       5
## 20518     18-30      10
## 20519     18-30      10
## 20520     30-35       7
## 20521     50-60       5
## 20522     18-30      10
## 20523     18-30      10
## 20524     18-30      10
## 20525     40-50       5
## 20526     18-30      10
## 20527     18-30      10
## 20528     18-30      10
## 20529     18-30      10
## 20530     30-35       7
## 20531     18-30      10
## 20532     30-35       7
## 20533     35-40       6
## 20534     18-30      10
## 20535     35-40       6
## 20536     18-30      10
## 20537     40-50       5
## 20538     30-35       7
## 20539     18-30      10
## 20540     18-30      10
## 20541     18-30      10
## 20542     40-50       5
## 20543     40-50       5
## 20544     40-50       5
## 20545     18-30      10
## 20546     35-40       6
## 20547     18-30      10
## 20548     40-50       5
## 20549     18-30      10
## 20550     18-30      10
## 20551     30-35       7
## 20552     18-30      10
## 20553     18-30      10
## 20554     18-30      10
## 20555     30-35       7
## 20556     18-30      10
## 20557     18-30      10
## 20558     18-30      10
## 20559     18-30      10
## 20560     18-30      10
## 20561     18-30      10
## 20562       65+       4
## 20563     18-30      10
## 20564     18-30      10
## 20565     30-35       7
## 20566     30-35       7
## 20567     18-30      10
## 20568     40-50       5
## 20569     30-35       7
## 20570     18-30      10
## 20571     30-35       7
## 20572     35-40       6
## 20573     40-50       5
## 20574     18-30      10
## 20575     18-30      10
## 20576     18-30      10
## 20577     18-30      10
## 20578     18-30      10
## 20579     18-30      10
## 20580     18-30      10
## 20581     18-30      10
## 20582     35-40       6
## 20583     30-35       7
## 20584     40-50       5
## 20585     30-35       7
## 20586     40-50       5
## 20587     50-60       5
## 20588     30-35       7
## 20589     18-30      10
## 20590     50-60       5
## 20591     18-30      10
## 20592     30-35       7
## 20593     18-30      10
## 20594     18-30      10
## 20595     35-40       6
## 20596     35-40       6
## 20597     18-30      10
## 20598     50-60       5
## 20599     18-30      10
## 20600     18-30      10
## 20601     35-40       6
## 20602     18-30      10
## 20603     18-30      10
## 20604     18-30      10
## 20605     18-30      10
## 20606     30-35       7
## 20607     30-35       7
## 20608     35-40       6
## 20609     18-30      10
## 20610     18-30      10
## 20611     40-50       5
## 20612     18-30      10
## 20613     18-30      10
## 20614     18-30      10
## 20615     18-30      10
## 20616     18-30      10
## 20617     30-35       7
## 20618     18-30      10
## 20619     30-35       7
## 20620     18-30      10
## 20621     18-30      10
## 20622     35-40       6
## 20623     18-30      10
## 20624     18-30      10
## 20625     18-30      10
## 20626     18-30      10
## 20627     18-30      10
## 20628     18-30      10
## 20629     35-40       6
## 20630     18-30      10
## 20631     18-30      10
## 20632     18-30      10
## 20633     18-30      10
## 20634     18-30      10
## 20635       65+       4
## 20636     18-30      10
## 20637     18-30      10
## 20638     18-30      10
## 20639     18-30      10
## 20640     18-30      10
## 20641     18-30      10
## 20642     30-35       7
## 20643     18-30      10
## 20644     18-30      10
## 20645     18-30      10
## 20646     30-35       7
## 20647     18-30      10
## 20648     18-30      10
## 20649       65+       4
## 20650     18-30      10
## 20651     35-40       6
## 20652     18-30      10
## 20653     35-40       6
## 20654     30-35       7
## 20655     18-30      10
## 20656     18-30      10
## 20657     18-30      10
## 20658     18-30      10
## 20659     18-30      10
## 20660     18-30      10
## 20661     18-30      10
## 20662     18-30      10
## 20663     18-30      10
## 20664     30-35       7
## 20665     30-35       7
## 20666     18-30      10
## 20667     40-50       5
## 20668     18-30      10
## 20669     18-30      10
## 20670     18-30      10
## 20671     18-30      10
## 20672     18-30      10
## 20673     35-40       6
## 20674     40-50       5
## 20675     18-30      10
## 20676     18-30      10
## 20677     18-30      10
## 20678     30-35       7
## 20679     40-50       5
## 20680     30-35       7
## 20681     30-35       7
## 20682     30-35       7
## 20683     18-30      10
## 20684     18-30      10
## 20685     18-30      10
## 20686     35-40       6
## 20687     18-30      10
## 20688     30-35       7
## 20689     18-30      10
## 20690     18-30      10
## 20691     30-35       7
## 20692     30-35       7
## 20693     35-40       6
## 20694     40-50       5
## 20695     40-50       5
## 20696     18-30      10
## 20697     30-35       7
## 20698     35-40       6
## 20699     18-30      10
## 20700     35-40       6
## 20701     18-30      10
## 20702     18-30      10
## 20703     40-50       5
## 20704     18-30      10
## 20705     18-30      10
## 20706     18-30      10
## 20707     18-30      10
## 20708     18-30      10
## 20709     18-30      10
## 20710     40-50       5
## 20711     35-40       6
## 20712     50-60       5
## 20713     30-35       7
## 20714     30-35       7
## 20715     18-30      10
## 20716     35-40       6
## 20717     18-30      10
## 20718     50-60       5
## 20719       65+       4
## 20720     50-60       5
## 20721     30-35       7
## 20722     40-50       5
## 20723     18-30      10
## 20724     18-30      10
## 20725     18-30      10
## 20726     18-30      10
## 20727     30-35       7
## 20728     18-30      10
## 20729     18-30      10
## 20730     30-35       7
## 20731     35-40       6
## 20732     35-40       6
## 20733     30-35       7
## 20734     30-35       7
## 20735     18-30      10
## 20736     18-30      10
## 20737     18-30      10
## 20738     30-35       7
## 20739     18-30      10
## 20740     30-35       7
## 20741     18-30      10
## 20742     50-60       5
## 20743     35-40       6
## 20744     30-35       7
## 20745     18-30      10
## 20746     18-30      10
## 20747     18-30      10
## 20748     30-35       7
## 20749     30-35       7
## 20750     18-30      10
## 20751     18-30      10
## 20752     18-30      10
## 20753     30-35       7
## 20754     50-60       5
## 20755     18-30      10
## 20756     18-30      10
## 20757     40-50       5
## 20758     18-30      10
## 20759     40-50       5
## 20760     18-30      10
## 20761     50-60       5
## 20762     18-30      10
## 20763     30-35       7
## 20764     30-35       7
## 20765     18-30      10
## 20766     40-50       5
## 20767     18-30      10
## 20768     18-30      10
## 20769     35-40       6
## 20770     30-35       7
## 20771     50-60       5
## 20772     40-50       5
## 20773     40-50       5
## 20774     18-30      10
## 20775     35-40       6
## 20776     30-35       7
## 20777     18-30      10
## 20778     35-40       6
## 20779     18-30      10
## 20780     50-60       5
## 20781     40-50       5
## 20782     30-35       7
## 20783     40-50       5
## 20784     40-50       5
## 20785     30-35       7
## 20786     30-35       7
## 20787     18-30      10
## 20788     35-40       6
## 20789     18-30      10
## 20790     18-30      10
## 20791     18-30      10
## 20792     18-30      10
## 20793     30-35       7
## 20794     30-35       7
## 20795     30-35       7
## 20796     30-35       7
## 20797     18-30      10
## 20798     18-30      10
## 20799     40-50       5
## 20800     18-30      10
## 20801     30-35       7
## 20802     18-30      10
## 20803     18-30      10
## 20804     18-30      10
## 20805     30-35       7
## 20806     30-35       7
## 20807     30-35       7
## 20808     30-35       7
## 20809     30-35       7
## 20810     18-30      10
## 20811     35-40       6
## 20812     18-30      10
## 20813     30-35       7
## 20814     18-30      10
## 20815     18-30      10
## 20816     40-50       5
## 20817       65+       4
## 20818     18-30      10
## 20819     18-30      10
## 20820     30-35       7
## 20821     35-40       6
## 20822     40-50       5
## 20823     18-30      10
## 20824     35-40       6
## 20825     18-30      10
## 20826     35-40       6
## 20827     35-40       6
## 20828     30-35       7
## 20829     18-30      10
## 20830     40-50       5
## 20831     18-30      10
## 20832     50-60       5
## 20833     18-30      10
## 20834     18-30      10
## 20835     30-35       7
## 20836     18-30      10
## 20837     30-35       7
## 20838     18-30      10
## 20839     18-30      10
## 20840     40-50       5
## 20841     18-30      10
## 20842     30-35       7
## 20843     40-50       5
## 20844     18-30      10
## 20845     40-50       5
## 20846     30-35       7
## 20847     35-40       6
## 20848     30-35       7
## 20849     18-30      10
## 20850     18-30      10
## 20851     18-30      10
## 20852     18-30      10
## 20853     18-30      10
## 20854     30-35       7
## 20855     18-30      10
## 20856     40-50       5
## 20857     35-40       6
## 20858     40-50       5
## 20859     18-30      10
## 20860     35-40       6
## 20861     30-35       7
## 20862     18-30      10
## 20863     30-35       7
## 20864     30-35       7
## 20865     18-30      10
## 20866     35-40       6
## 20867     18-30      10
## 20868     35-40       6
## 20869     50-60       5
## 20870     18-30      10
## 20871     18-30      10
## 20872     30-35       7
## 20873     40-50       5
## 20874     18-30      10
## 20875     18-30      10
## 20876     18-30      10
## 20877     50-60       5
## 20878     18-30      10
## 20879     50-60       5
## 20880     18-30      10
## 20881     18-30      10
## 20882     35-40       6
## 20883     35-40       6
## 20884     40-50       5
## 20885     35-40       6
## 20886     30-35       7
## 20887     30-35       7
## 20888     35-40       6
## 20889     18-30      10
## 20890     35-40       6
## 20891     40-50       5
## 20892     50-60       5
## 20893     40-50       5
## 20894     35-40       6
## 20895     18-30      10
## 20896     30-35       7
## 20897     18-30      10
## 20898     18-30      10
## 20899     30-35       7
## 20900     30-35       7
## 20901     35-40       6
## 20902     30-35       7
## 20903     30-35       7
## 20904     18-30      10
## 20905     18-30      10
## 20906     18-30      10
## 20907     18-30      10
## 20908     35-40       6
## 20909     18-30      10
## 20910     50-60       5
## 20911     40-50       5
## 20912     18-30      10
## 20913     30-35       7
## 20914     30-35       7
## 20915     35-40       6
## 20916     30-35       7
## 20917     18-30      10
## 20918     18-30      10
## 20919     18-30      10
## 20920     35-40       6
## 20921     40-50       5
## 20922     40-50       5
## 20923     30-35       7
## 20924     18-30      10
## 20925     18-30      10
## 20926     18-30      10
## 20927     18-30      10
## 20928     18-30      10
## 20929     40-50       5
## 20930     18-30      10
## 20931     18-30      10
## 20932     35-40       6
## 20933     18-30      10
## 20934     35-40       6
## 20935     18-30      10
## 20936     18-30      10
## 20937     35-40       6
## 20938     35-40       6
## 20939     18-30      10
## 20940     40-50       5
## 20941     18-30      10
## 20942     18-30      10
## 20943     18-30      10
## 20944     18-30      10
## 20945     30-35       7
## 20946     18-30      10
## 20947     18-30      10
## 20948     18-30      10
## 20949     30-35       7
## 20950     18-30      10
## 20951     40-50       5
## 20952     18-30      10
## 20953     18-30      10
## 20954     18-30      10
## 20955     18-30      10
## 20956     40-50       5
## 20957     30-35       7
## 20958     18-30      10
## 20959     30-35       7
## 20960     18-30      10
## 20961     40-50       5
## 20962     50-60       5
## 20963     18-30      10
## 20964     40-50       5
## 20965     18-30      10
## 20966     18-30      10
## 20967     18-30      10
## 20968     18-30      10
## 20969     35-40       6
## 20970     30-35       7
## 20971     18-30      10
## 20972     18-30      10
## 20973     50-60       5
## 20974     40-50       5
## 20975     18-30      10
## 20976     30-35       7
## 20977     18-30      10
## 20978     40-50       5
## 20979     18-30      10
## 20980     18-30      10
## 20981     18-30      10
## 20982     18-30      10
## 20983     18-30      10
## 20984     18-30      10
## 20985     35-40       6
## 20986     18-30      10
## 20987     40-50       5
## 20988     35-40       6
## 20989     18-30      10
## 20990     40-50       5
## 20991     18-30      10
## 20992       65+       4
## 20993     35-40       6
## 20994     18-30      10
## 20995     18-30      10
## 20996     18-30      10
## 20997     40-50       5
## 20998     35-40       6
## 20999     18-30      10
## 21000     18-30      10
## 21001     18-30      10
## 21002     18-30      10
## 21003     30-35       7
## 21004     35-40       6
## 21005     35-40       6
## 21006     30-35       7
## 21007     30-35       7
## 21008     18-30      10
## 21009     18-30      10
## 21010     30-35       7
## 21011     50-60       5
## 21012     30-35       7
## 21013     40-50       5
## 21014     40-50       5
## 21015     18-30      10
## 21016     40-50       5
## 21017     18-30      10
## 21018     18-30      10
## 21019     30-35       7
## 21020     30-35       7
## 21021     18-30      10
## 21022     18-30      10
## 21023     18-30      10
## 21024     18-30      10
## 21025     18-30      10
## 21026     50-60       5
## 21027     30-35       7
## 21028     35-40       6
## 21029     18-30      10
## 21030     30-35       7
## 21031     18-30      10
## 21032     30-35       7
## 21033     30-35       7
## 21034     18-30      10
## 21035     18-30      10
## 21036     40-50       5
## 21037     18-30      10
## 21038     18-30      10
## 21039     30-35       7
## 21040     18-30      10
## 21041     18-30      10
## 21042     18-30      10
## 21043       65+       4
## 21044     18-30      10
## 21045     18-30      10
## 21046     18-30      10
## 21047     18-30      10
## 21048     18-30      10
## 21049     30-35       7
## 21050     35-40       6
## 21051     18-30      10
## 21052     40-50       5
## 21053     40-50       5
## 21054     35-40       6
## 21055     18-30      10
## 21056     30-35       7
## 21057     50-60       5
## 21058     18-30      10
## 21059     18-30      10
## 21060     40-50       5
## 21061     50-60       5
## 21062       65+       4
## 21063     18-30      10
## 21064     30-35       7
## 21065     35-40       6
## 21066     18-30      10
## 21067     18-30      10
## 21068     18-30      10
## 21069     18-30      10
## 21070     30-35       7
## 21071     18-30      10
## 21072     18-30      10
## 21073     18-30      10
## 21074     30-35       7
## 21075     18-30      10
## 21076     18-30      10
## 21077     30-35       7
## 21078     35-40       6
## 21079     30-35       7
## 21080     18-30      10
## 21081     40-50       5
## 21082     40-50       5
## 21083     18-30      10
## 21084     18-30      10
## 21085     35-40       6
## 21086     50-60       5
## 21087     18-30      10
## 21088     30-35       7
## 21089     18-30      10
## 21090     18-30      10
## 21091     18-30      10
## 21092     30-35       7
## 21093     18-30      10
## 21094     35-40       6
## 21095     18-30      10
## 21096     18-30      10
## 21097     30-35       7
## 21098     30-35       7
## 21099     18-30      10
## 21100     35-40       6
## 21101     18-30      10
## 21102     40-50       5
## 21103     18-30      10
## 21104     30-35       7
## 21105     18-30      10
## 21106     30-35       7
## 21107     18-30      10
## 21108     35-40       6
## 21109     18-30      10
## 21110     35-40       6
## 21111     18-30      10
## 21112     18-30      10
## 21113     50-60       5
## 21114     30-35       7
## 21115     18-30      10
## 21116     18-30      10
## 21117     35-40       6
## 21118     18-30      10
## 21119     18-30      10
## 21120     18-30      10
## 21121     18-30      10
## 21122     18-30      10
## 21123     18-30      10
## 21124     40-50       5
## 21125     18-30      10
## 21126     30-35       7
## 21127     18-30      10
## 21128     18-30      10
## 21129     18-30      10
## 21130     30-35       7
## 21131     18-30      10
## 21132     30-35       7
## 21133     40-50       5
## 21134     40-50       5
## 21135     18-30      10
## 21136     35-40       6
## 21137     40-50       5
## 21138     18-30      10
## 21139     35-40       6
## 21140     30-35       7
## 21141     18-30      10
## 21142     18-30      10
## 21143     40-50       5
## 21144     18-30      10
## 21145     18-30      10
## 21146     35-40       6
## 21147     30-35       7
## 21148     18-30      10
## 21149     18-30      10
## 21150     30-35       7
## 21151     35-40       6
## 21152     40-50       5
## 21153     18-30      10
## 21154     30-35       7
## 21155     18-30      10
## 21156     18-30      10
## 21157     18-30      10
## 21158       65+       4
## 21159     30-35       7
## 21160     18-30      10
## 21161     18-30      10
## 21162     30-35       7
## 21163     35-40       6
## 21164     18-30      10
## 21165     40-50       5
## 21166     18-30      10
## 21167     50-60       5
## 21168     18-30      10
## 21169     40-50       5
## 21170     50-60       5
## 21171     18-30      10
## 21172     30-35       7
## 21173     30-35       7
## 21174     35-40       6
## 21175     18-30      10
## 21176     35-40       6
## 21177     35-40       6
## 21178     18-30      10
## 21179     18-30      10
## 21180     18-30      10
## 21181     50-60       5
## 21182     30-35       7
## 21183     18-30      10
## 21184     18-30      10
## 21185     30-35       7
## 21186     35-40       6
## 21187     18-30      10
## 21188     18-30      10
## 21189     18-30      10
## 21190     50-60       5
## 21191     40-50       5
## 21192     30-35       7
## 21193     50-60       5
## 21194     18-30      10
## 21195     18-30      10
## 21196     35-40       6
## 21197     18-30      10
## 21198     18-30      10
## 21199     18-30      10
## 21200     18-30      10
## 21201     18-30      10
## 21202     30-35       7
## 21203     30-35       7
## 21204     18-30      10
## 21205     18-30      10
## 21206     30-35       7
## 21207     18-30      10
## 21208     35-40       6
## 21209     18-30      10
## 21210     18-30      10
## 21211     18-30      10
## 21212     30-35       7
## 21213     18-30      10
## 21214     30-35       7
## 21215     18-30      10
## 21216     35-40       6
## 21217     18-30      10
## 21218     30-35       7
## 21219     18-30      10
## 21220     30-35       7
## 21221     35-40       6
## 21222     18-30      10
## 21223     30-35       7
## 21224     18-30      10
## 21225       65+       4
## 21226     30-35       7
## 21227     40-50       5
## 21228     40-50       5
## 21229     35-40       6
## 21230     18-30      10
## 21231     18-30      10
## 21232     30-35       7
## 21233     35-40       6
## 21234     18-30      10
## 21235     18-30      10
## 21236     30-35       7
## 21237     18-30      10
## 21238     18-30      10
## 21239     40-50       5
## 21240     18-30      10
## 21241     18-30      10
## 21242     18-30      10
## 21243     35-40       6
## 21244     35-40       6
## 21245     30-35       7
## 21246     18-30      10
## 21247     35-40       6
## 21248     18-30      10
## 21249     35-40       6
## 21250     50-60       5
## 21251     18-30      10
## 21252     18-30      10
## 21253     35-40       6
## 21254     18-30      10
## 21255     18-30      10
## 21256     30-35       7
## 21257     18-30      10
## 21258     30-35       7
## 21259     40-50       5
## 21260     18-30      10
## 21261     18-30      10
## 21262     40-50       5
## 21263     18-30      10
## 21264     30-35       7
## 21265     18-30      10
## 21266     18-30      10
## 21267     35-40       6
## 21268     18-30      10
## 21269     18-30      10
## 21270     30-35       7
## 21271     18-30      10
## 21272     40-50       5
## 21273     18-30      10
## 21274     18-30      10
## 21275     35-40       6
## 21276     18-30      10
## 21277     35-40       6
## 21278       65+       4
## 21279     40-50       5
## 21280     30-35       7
## 21281     40-50       5
## 21282     35-40       6
## 21283     18-30      10
## 21284     50-60       5
## 21285     18-30      10
## 21286     18-30      10
## 21287     18-30      10
## 21288     30-35       7
## 21289     40-50       5
## 21290     18-30      10
## 21291     18-30      10
## 21292     18-30      10
## 21293     18-30      10
## 21294     18-30      10
## 21295     18-30      10
## 21296     18-30      10
## 21297     40-50       5
## 21298     40-50       5
## 21299     18-30      10
## 21300     30-35       7
## 21301     18-30      10
## 21302     40-50       5
## 21303     30-35       7
## 21304     35-40       6
## 21305     35-40       6
## 21306     30-35       7
## 21307     40-50       5
## 21308     18-30      10
## 21309     18-30      10
## 21310       65+       4
## 21311     40-50       5
## 21312     50-60       5
## 21313     18-30      10
## 21314     18-30      10
## 21315     35-40       6
## 21316     18-30      10
## 21317     30-35       7
## 21318     18-30      10
## 21319     30-35       7
## 21320     35-40       6
## 21321     18-30      10
## 21322     18-30      10
## 21323     40-50       5
## 21324     30-35       7
## 21325     18-30      10
## 21326     35-40       6
## 21327     50-60       5
## 21328     18-30      10
## 21329     18-30      10
## 21330     30-35       7
## 21331     18-30      10
## 21332     18-30      10
## 21333       65+       4
## 21334     18-30      10
## 21335     18-30      10
## 21336     18-30      10
## 21337     18-30      10
## 21338     18-30      10
## 21339     18-30      10
## 21340     40-50       5
## 21341     40-50       5
## 21342     40-50       5
## 21343     35-40       6
## 21344     40-50       5
## 21345     18-30      10
## 21346     40-50       5
## 21347     30-35       7
## 21348     35-40       6
## 21349     30-35       7
## 21350     30-35       7
## 21351     30-35       7
## 21352     40-50       5
## 21353     30-35       7
## 21354     30-35       7
## 21355     40-50       5
## 21356     35-40       6
## 21357     18-30      10
## 21358     35-40       6
## 21359     18-30      10
## 21360     18-30      10
## 21361     18-30      10
## 21362     18-30      10
## 21363     18-30      10
## 21364     30-35       7
## 21365     18-30      10
## 21366     30-35       7
## 21367     18-30      10
## 21368     18-30      10
## 21369     30-35       7
## 21370     18-30      10
## 21371     18-30      10
## 21372     18-30      10
## 21373     35-40       6
## 21374     30-35       7
## 21375     18-30      10
## 21376     35-40       6
## 21377     50-60       5
## 21378     40-50       5
## 21379     30-35       7
## 21380     18-30      10
## 21381     18-30      10
## 21382     40-50       5
## 21383     30-35       7
## 21384     35-40       6
## 21385     30-35       7
## 21386     18-30      10
## 21387     35-40       6
## 21388     18-30      10
## 21389     40-50       5
## 21390     30-35       7
## 21391     18-30      10
## 21392     18-30      10
## 21393     30-35       7
## 21394     50-60       5
## 21395     18-30      10
## 21396     18-30      10
## 21397     18-30      10
## 21398     40-50       5
## 21399     40-50       5
## 21400     18-30      10
## 21401     40-50       5
## 21402     18-30      10
## 21403     35-40       6
## 21404     18-30      10
## 21405     40-50       5
## 21406     30-35       7
## 21407     40-50       5
## 21408     50-60       5
## 21409     18-30      10
## 21410     18-30      10
## 21411     18-30      10
## 21412     50-60       5
## 21413     30-35       7
## 21414     18-30      10
## 21415     18-30      10
## 21416     18-30      10
## 21417     18-30      10
## 21418     18-30      10
## 21419     30-35       7
## 21420     30-35       7
## 21421     18-30      10
## 21422     18-30      10
## 21423     40-50       5
## 21424     40-50       5
## 21425     18-30      10
## 21426     40-50       5
## 21427     18-30      10
## 21428     30-35       7
## 21429     35-40       6
## 21430     18-30      10
## 21431     18-30      10
## 21432     18-30      10
## 21433     18-30      10
## 21434     18-30      10
## 21435     18-30      10
## 21436     18-30      10
## 21437     18-30      10
## 21438     18-30      10
## 21439     30-35       7
## 21440     18-30      10
## 21441     18-30      10
## 21442     18-30      10
## 21443     18-30      10
## 21444     18-30      10
## 21445     30-35       7
## 21446     18-30      10
## 21447     18-30      10
## 21448     18-30      10
## 21449     40-50       5
## 21450     18-30      10
## 21451     30-35       7
## 21452     30-35       7
## 21453     40-50       5
## 21454     30-35       7
## 21455     18-30      10
## 21456     18-30      10
## 21457     30-35       7
## 21458     35-40       6
## 21459     50-60       5
## 21460     18-30      10
## 21461     18-30      10
## 21462     40-50       5
## 21463     18-30      10
## 21464     18-30      10
## 21465     40-50       5
## 21466     18-30      10
## 21467     30-35       7
## 21468     30-35       7
## 21469     35-40       6
## 21470     18-30      10
## 21471     30-35       7
## 21472     35-40       6
## 21473     40-50       5
## 21474     18-30      10
## 21475     35-40       6
## 21476     35-40       6
## 21477     18-30      10
## 21478     30-35       7
## 21479     18-30      10
## 21480     30-35       7
## 21481     30-35       7
## 21482     30-35       7
## 21483     18-30      10
## 21484     18-30      10
## 21485     18-30      10
## 21486     30-35       7
## 21487     18-30      10
## 21488     35-40       6
## 21489     50-60       5
## 21490     18-30      10
## 21491     30-35       7
## 21492     18-30      10
## 21493     18-30      10
## 21494     18-30      10
## 21495     30-35       7
## 21496     18-30      10
## 21497     18-30      10
## 21498     50-60       5
## 21499     18-30      10
## 21500     18-30      10
## 21501     35-40       6
## 21502     18-30      10
## 21503     35-40       6
## 21504     30-35       7
## 21505     18-30      10
## 21506     18-30      10
## 21507     40-50       5
## 21508     30-35       7
## 21509     18-30      10
## 21510     18-30      10
## 21511     18-30      10
## 21512     40-50       5
## 21513     18-30      10
## 21514     18-30      10
## 21515     35-40       6
## 21516     30-35       7
## 21517     18-30      10
## 21518     35-40       6
## 21519     18-30      10
## 21520     18-30      10
## 21521     18-30      10
## 21522     40-50       5
## 21523     18-30      10
## 21524     50-60       5
## 21525     18-30      10
## 21526     18-30      10
## 21527     18-30      10
## 21528     35-40       6
## 21529     40-50       5
## 21530     18-30      10
## 21531     18-30      10
## 21532     18-30      10
## 21533     18-30      10
## 21534     18-30      10
## 21535     18-30      10
## 21536     18-30      10
## 21537     30-35       7
## 21538     18-30      10
## 21539     18-30      10
## 21540     18-30      10
## 21541     18-30      10
## 21542     18-30      10
## 21543     30-35       7
## 21544     18-30      10
## 21545     30-35       7
## 21546     30-35       7
## 21547     35-40       6
## 21548     18-30      10
## 21549     18-30      10
## 21550     35-40       6
## 21551     18-30      10
## 21552     30-35       7
## 21553     18-30      10
## 21554     35-40       6
## 21555     30-35       7
## 21556     18-30      10
## 21557     18-30      10
## 21558     18-30      10
## 21559     18-30      10
## 21560     18-30      10
## 21561     18-30      10
## 21562     18-30      10
## 21563     18-30      10
## 21564     18-30      10
## 21565     18-30      10
## 21566     40-50       5
## 21567     40-50       5
## 21568     18-30      10
## 21569     18-30      10
## 21570     30-35       7
## 21571     18-30      10
## 21572     18-30      10
## 21573     18-30      10
## 21574     18-30      10
## 21575     18-30      10
## 21576     18-30      10
## 21577     18-30      10
## 21578     18-30      10
## 21579     18-30      10
## 21580     18-30      10
## 21581     18-30      10
## 21582     18-30      10
## 21583     18-30      10
## 21584     30-35       7
## 21585     35-40       6
## 21586     30-35       7
## 21587     40-50       5
## 21588     18-30      10
## 21589     50-60       5
## 21590     40-50       5
## 21591     18-30      10
## 21592     18-30      10
## 21593     35-40       6
## 21594     18-30      10
## 21595     35-40       6
## 21596     30-35       7
## 21597     18-30      10
## 21598     18-30      10
## 21599     18-30      10
## 21600     18-30      10
## 21601     40-50       5
## 21602     30-35       7
## 21603     18-30      10
## 21604     35-40       6
## 21605     18-30      10
## 21606     18-30      10
## 21607     18-30      10
## 21608     18-30      10
## 21609     30-35       7
## 21610     30-35       7
## 21611     40-50       5
## 21612     18-30      10
## 21613     35-40       6
## 21614     35-40       6
## 21615     18-30      10
## 21616     30-35       7
## 21617     18-30      10
## 21618     18-30      10
## 21619     18-30      10
## 21620     18-30      10
## 21621     18-30      10
## 21622     18-30      10
## 21623     18-30      10
## 21624     30-35       7
## 21625     18-30      10
## 21626     35-40       6
## 21627     18-30      10
## 21628     18-30      10
## 21629     18-30      10
## 21630     30-35       7
## 21631     40-50       5
## 21632     18-30      10
## 21633     18-30      10
## 21634     18-30      10
## 21635     18-30      10
## 21636     18-30      10
## 21637     18-30      10
## 21638     18-30      10
## 21639     18-30      10
## 21640     18-30      10
## 21641     18-30      10
## 21642     40-50       5
## 21643     35-40       6
## 21644     18-30      10
## 21645     40-50       5
## 21646     18-30      10
## 21647     18-30      10
## 21648     18-30      10
## 21649     18-30      10
## 21650     18-30      10
## 21651     40-50       5
## 21652     18-30      10
## 21653     18-30      10
## 21654     18-30      10
## 21655     18-30      10
## 21656     30-35       7
## 21657       65+       4
## 21658     30-35       7
## 21659     18-30      10
## 21660     30-35       7
## 21661     18-30      10
## 21662     40-50       5
## 21663     30-35       7
## 21664     18-30      10
## 21665     18-30      10
## 21666     40-50       5
## 21667     18-30      10
## 21668     18-30      10
## 21669     50-60       5
## 21670     18-30      10
## 21671       65+       4
## 21672     18-30      10
## 21673     18-30      10
## 21674     18-30      10
## 21675     18-30      10
## 21676     18-30      10
## 21677     18-30      10
## 21678     18-30      10
## 21679     18-30      10
## 21680     50-60       5
## 21681     30-35       7
## 21682     50-60       5
## 21683     18-30      10
## 21684     40-50       5
## 21685     35-40       6
## 21686     18-30      10
## 21687       65+       4
## 21688     40-50       5
## 21689     18-30      10
## 21690     40-50       5
## 21691     18-30      10
## 21692     18-30      10
## 21693     50-60       5
## 21694     18-30      10
## 21695     30-35       7
## 21696     18-30      10
## 21697     30-35       7
## 21698     35-40       6
## 21699     30-35       7
## 21700     40-50       5
## 21701     35-40       6
## 21702     18-30      10
## 21703     18-30      10
## 21704     30-35       7
## 21705     18-30      10
## 21706     18-30      10
## 21707     35-40       6
## 21708     18-30      10
## 21709     30-35       7
## 21710     18-30      10
## 21711     35-40       6
## 21712     18-30      10
## 21713     18-30      10
## 21714     18-30      10
## 21715     18-30      10
## 21716     30-35       7
## 21717     50-60       5
## 21718     50-60       5
## 21719     18-30      10
## 21720       65+       4
## 21721     18-30      10
## 21722     30-35       7
## 21723     18-30      10
## 21724     40-50       5
## 21725     50-60       5
## 21726     30-35       7
## 21727     18-30      10
## 21728     18-30      10
## 21729     30-35       7
## 21730     18-30      10
## 21731     30-35       7
## 21732     18-30      10
## 21733     18-30      10
## 21734     35-40       6
## 21735     18-30      10
## 21736     30-35       7
## 21737     50-60       5
## 21738     35-40       6
## 21739     18-30      10
## 21740     18-30      10
## 21741     18-30      10
## 21742     18-30      10
## 21743     30-35       7
## 21744     18-30      10
## 21745     18-30      10
## 21746     18-30      10
## 21747     18-30      10
## 21748     18-30      10
## 21749     50-60       5
## 21750     18-30      10
## 21751     35-40       6
## 21752     30-35       7
## 21753     35-40       6
## 21754     35-40       6
## 21755     18-30      10
## 21756     18-30      10
## 21757     18-30      10
## 21758     30-35       7
## 21759     30-35       7
## 21760     18-30      10
## 21761     18-30      10
## 21762     50-60       5
## 21763     18-30      10
## 21764     30-35       7
## 21765     18-30      10
## 21766     50-60       5
## 21767     18-30      10
## 21768     40-50       5
## 21769     18-30      10
## 21770     30-35       7
## 21771     18-30      10
## 21772     18-30      10
## 21773     35-40       6
## 21774     18-30      10
## 21775     50-60       5
## 21776     18-30      10
## 21777     50-60       5
## 21778     35-40       6
## 21779     18-30      10
## 21780     30-35       7
## 21781     35-40       6
## 21782     18-30      10
## 21783     18-30      10
## 21784     30-35       7
## 21785     18-30      10
## 21786     18-30      10
## 21787     18-30      10
## 21788     40-50       5
## 21789     18-30      10
## 21790     40-50       5
## 21791     18-30      10
## 21792     30-35       7
## 21793     18-30      10
## 21794     18-30      10
## 21795     18-30      10
## 21796     18-30      10
## 21797     35-40       6
## 21798     30-35       7
## 21799     40-50       5
## 21800     35-40       6
## 21801     18-30      10
## 21802     18-30      10
## 21803     30-35       7
## 21804     30-35       7
## 21805     40-50       5
## 21806     35-40       6
## 21807     18-30      10
## 21808     18-30      10
## 21809     30-35       7
## 21810     18-30      10
## 21811     18-30      10
## 21812     30-35       7
## 21813     18-30      10
## 21814     18-30      10
## 21815     35-40       6
## 21816       65+       4
## 21817     40-50       5
## 21818       65+       4
## 21819     50-60       5
## 21820     30-35       7
## 21821     50-60       5
## 21822     30-35       7
## 21823     18-30      10
## 21824     40-50       5
## 21825     40-50       5
## 21826     50-60       5
## 21827     18-30      10
## 21828     18-30      10
## 21829     35-40       6
## 21830     40-50       5
## 21831     18-30      10
## 21832     50-60       5
## 21833     30-35       7
## 21834     18-30      10
## 21835     35-40       6
## 21836     30-35       7
## 21837     18-30      10
## 21838       65+       4
## 21839     18-30      10
## 21840     18-30      10
## 21841     18-30      10
## 21842     50-60       5
## 21843     35-40       6
## 21844     18-30      10
## 21845     18-30      10
## 21846     18-30      10
## 21847     40-50       5
## 21848     35-40       6
## 21849     35-40       6
## 21850     35-40       6
## 21851     18-30      10
## 21852     18-30      10
## 21853     18-30      10
## 21854     18-30      10
## 21855     30-35       7
## 21856     30-35       7
## 21857     30-35       7
## 21858     30-35       7
## 21859     40-50       5
## 21860     35-40       6
## 21861     30-35       7
## 21862     30-35       7
## 21863     30-35       7
## 21864     18-30      10
## 21865     30-35       7
## 21866     18-30      10
## 21867     40-50       5
## 21868     35-40       6
## 21869     40-50       5
## 21870     18-30      10
## 21871     18-30      10
## 21872     30-35       7
## 21873     18-30      10
## 21874     18-30      10
## 21875     18-30      10
## 21876     40-50       5
## 21877     30-35       7
## 21878     40-50       5
## 21879     50-60       5
## 21880     18-30      10
## 21881     18-30      10
## 21882     30-35       7
## 21883     18-30      10
## 21884     18-30      10
## 21885       65+       4
## 21886     18-30      10
## 21887     18-30      10
## 21888     18-30      10
## 21889     18-30      10
## 21890     18-30      10
## 21891     30-35       7
## 21892     18-30      10
## 21893     18-30      10
## 21894     18-30      10
## 21895     35-40       6
## 21896     30-35       7
## 21897     18-30      10
## 21898     40-50       5
## 21899     50-60       5
## 21900     30-35       7
## 21901     40-50       5
## 21902     18-30      10
## 21903     40-50       5
## 21904     40-50       5
## 21905     18-30      10
## 21906     18-30      10
## 21907     35-40       6
## 21908     18-30      10
## 21909     18-30      10
## 21910     18-30      10
## 21911     18-30      10
## 21912     30-35       7
## 21913     30-35       7
## 21914     35-40       6
## 21915     18-30      10
## 21916     40-50       5
## 21917     50-60       5
## 21918     18-30      10
## 21919     18-30      10
## 21920     40-50       5
## 21921     18-30      10
## 21922     18-30      10
## 21923     50-60       5
## 21924     40-50       5
## 21925     35-40       6
## 21926     40-50       5
## 21927     40-50       5
## 21928     18-30      10
## 21929     18-30      10
## 21930     35-40       6
## 21931     18-30      10
## 21932     18-30      10
## 21933     18-30      10
## 21934     40-50       5
## 21935     35-40       6
## 21936     40-50       5
## 21937     40-50       5
## 21938     18-30      10
## 21939     18-30      10
## 21940     18-30      10
## 21941     18-30      10
## 21942     18-30      10
## 21943     18-30      10
## 21944     18-30      10
## 21945     50-60       5
## 21946     18-30      10
## 21947     18-30      10
## 21948       65+       4
## 21949     18-30      10
## 21950     30-35       7
## 21951     18-30      10
## 21952     18-30      10
## 21953     40-50       5
## 21954     35-40       6
## 21955     35-40       6
## 21956     18-30      10
## 21957     35-40       6
## 21958     40-50       5
## 21959     40-50       5
## 21960     18-30      10
## 21961     18-30      10
## 21962     30-35       7
## 21963     18-30      10
## 21964     18-30      10
## 21965     18-30      10
## 21966     18-30      10
## 21967     30-35       7
## 21968     30-35       7
## 21969     18-30      10
## 21970     18-30      10
## 21971     18-30      10
## 21972     40-50       5
## 21973     18-30      10
## 21974     18-30      10
## 21975     18-30      10
## 21976     18-30      10
## 21977     40-50       5
## 21978     18-30      10
## 21979     40-50       5
## 21980     40-50       5
## 21981     18-30      10
## 21982     18-30      10
## 21983     40-50       5
## 21984     18-30      10
## 21985     18-30      10
## 21986     18-30      10
## 21987     50-60       5
## 21988     40-50       5
## 21989     40-50       5
## 21990     18-30      10
## 21991     30-35       7
## 21992     18-30      10
## 21993     40-50       5
## 21994     35-40       6
## 21995     18-30      10
## 21996     40-50       5
## 21997     18-30      10
## 21998     18-30      10
## 21999     35-40       6
## 22000     40-50       5
## 22001     18-30      10
## 22002     30-35       7
## 22003     18-30      10
## 22004     30-35       7
## 22005     40-50       5
## 22006     30-35       7
## 22007     30-35       7
## 22008     35-40       6
## 22009     50-60       5
## 22010     35-40       6
## 22011     30-35       7
## 22012     18-30      10
## 22013     35-40       6
## 22014     35-40       6
## 22015     50-60       5
## 22016     35-40       6
## 22017     18-30      10
## 22018     35-40       6
## 22019     35-40       6
## 22020     18-30      10
## 22021     30-35       7
## 22022     18-30      10
## 22023     35-40       6
## 22024     18-30      10
## 22025     18-30      10
## 22026     18-30      10
## 22027     18-30      10
## 22028     35-40       6
## 22029     40-50       5
## 22030     18-30      10
## 22031     30-35       7
## 22032     18-30      10
## 22033     18-30      10
## 22034     30-35       7
## 22035     30-35       7
## 22036     18-30      10
## 22037     18-30      10
## 22038     18-30      10
## 22039     18-30      10
## 22040     18-30      10
## 22041     18-30      10
## 22042     18-30      10
## 22043     30-35       7
## 22044     18-30      10
## 22045     18-30      10
## 22046     18-30      10
## 22047     18-30      10
## 22048     40-50       5
## 22049     18-30      10
## 22050     18-30      10
## 22051     18-30      10
## 22052     18-30      10
## 22053     18-30      10
## 22054     30-35       7
## 22055     30-35       7
## 22056     30-35       7
## 22057     18-30      10
## 22058     18-30      10
## 22059     35-40       6
## 22060     18-30      10
## 22061       65+       4
## 22062     18-30      10
## 22063     35-40       6
## 22064     18-30      10
## 22065     18-30      10
## 22066     18-30      10
## 22067     18-30      10
## 22068     30-35       7
## 22069     18-30      10
## 22070     50-60       5
## 22071     18-30      10
## 22072     40-50       5
## 22073     30-35       7
## 22074     30-35       7
## 22075     35-40       6
## 22076     18-30      10
## 22077     40-50       5
## 22078     18-30      10
## 22079     30-35       7
## 22080     35-40       6
## 22081     18-30      10
## 22082     18-30      10
## 22083     18-30      10
## 22084     40-50       5
## 22085     30-35       7
## 22086     18-30      10
## 22087     30-35       7
## 22088     18-30      10
## 22089     40-50       5
## 22090     18-30      10
## 22091     35-40       6
## 22092     30-35       7
## 22093     18-30      10
## 22094     18-30      10
## 22095     30-35       7
## 22096     18-30      10
## 22097     18-30      10
## 22098     18-30      10
## 22099     18-30      10
## 22100     18-30      10
## 22101     40-50       5
## 22102     18-30      10
## 22103     18-30      10
## 22104     35-40       6
## 22105     18-30      10
## 22106     18-30      10
## 22107     18-30      10
## 22108     18-30      10
## 22109     18-30      10
## 22110     18-30      10
## 22111     35-40       6
## 22112     18-30      10
## 22113     30-35       7
## 22114     35-40       6
## 22115     18-30      10
## 22116     18-30      10
## 22117     18-30      10
## 22118     18-30      10
## 22119     18-30      10
## 22120     18-30      10
## 22121     30-35       7
## 22122     30-35       7
## 22123     18-30      10
## 22124     18-30      10
## 22125       65+       4
## 22126     35-40       6
## 22127     30-35       7
## 22128     30-35       7
## 22129     18-30      10
## 22130     18-30      10
## 22131     40-50       5
## 22132     18-30      10
## 22133     50-60       5
## 22134     18-30      10
## 22135     18-30      10
## 22136     18-30      10
## 22137     40-50       5
## 22138     40-50       5
## 22139     18-30      10
## 22140     18-30      10
## 22141     40-50       5
## 22142     40-50       5
## 22143     50-60       5
## 22144     30-35       7
## 22145     18-30      10
## 22146     30-35       7
## 22147     50-60       5
## 22148     30-35       7
## 22149     18-30      10
## 22150     18-30      10
## 22151     30-35       7
## 22152     18-30      10
## 22153     40-50       5
## 22154     50-60       5
## 22155     18-30      10
## 22156     40-50       5
## 22157     18-30      10
## 22158     18-30      10
## 22159     18-30      10
## 22160     35-40       6
## 22161     35-40       6
## 22162     40-50       5
## 22163     35-40       6
## 22164     18-30      10
## 22165     30-35       7
## 22166     18-30      10
## 22167     18-30      10
## 22168     18-30      10
## 22169     18-30      10
## 22170     40-50       5
## 22171     35-40       6
## 22172     18-30      10
## 22173     18-30      10
## 22174     18-30      10
## 22175     40-50       5
## 22176     35-40       6
## 22177     18-30      10
## 22178     18-30      10
## 22179     18-30      10
## 22180     18-30      10
## 22181     18-30      10
## 22182     40-50       5
## 22183     18-30      10
## 22184     18-30      10
## 22185     30-35       7
## 22186     18-30      10
## 22187     35-40       6
## 22188     18-30      10
## 22189     18-30      10
## 22190     30-35       7
## 22191     18-30      10
## 22192     18-30      10
## 22193     18-30      10
## 22194     30-35       7
## 22195     30-35       7
## 22196     18-30      10
## 22197     35-40       6
## 22198     18-30      10
## 22199     18-30      10
## 22200     50-60       5
## 22201     18-30      10
## 22202     40-50       5
## 22203     40-50       5
## 22204     18-30      10
## 22205     18-30      10
## 22206     35-40       6
## 22207     40-50       5
## 22208     30-35       7
## 22209     18-30      10
## 22210     18-30      10
## 22211     18-30      10
## 22212     18-30      10
## 22213     18-30      10
## 22214     30-35       7
## 22215     18-30      10
## 22216     40-50       5
## 22217     18-30      10
## 22218     18-30      10
## 22219     40-50       5
## 22220     30-35       7
## 22221     18-30      10
## 22222     18-30      10
## 22223     35-40       6
## 22224     18-30      10
## 22225     18-30      10
## 22226     18-30      10
## 22227     18-30      10
## 22228     30-35       7
## 22229     18-30      10
## 22230     40-50       5
## 22231     18-30      10
## 22232     18-30      10
## 22233     18-30      10
## 22234     35-40       6
## 22235     18-30      10
## 22236     18-30      10
## 22237     18-30      10
## 22238     30-35       7
## 22239     18-30      10
## 22240     40-50       5
## 22241     18-30      10
## 22242     18-30      10
## 22243     18-30      10
## 22244     30-35       7
## 22245     18-30      10
## 22246     18-30      10
## 22247     35-40       6
## 22248     18-30      10
## 22249     40-50       5
## 22250     40-50       5
## 22251     18-30      10
## 22252     18-30      10
## 22253     18-30      10
## 22254     30-35       7
## 22255     18-30      10
## 22256     18-30      10
## 22257     40-50       5
## 22258     40-50       5
## 22259     18-30      10
## 22260     40-50       5
## 22261     18-30      10
## 22262     30-35       7
## 22263     30-35       7
## 22264     18-30      10
## 22265     18-30      10
## 22266     18-30      10
## 22267     40-50       5
## 22268     18-30      10
## 22269     18-30      10
## 22270     35-40       6
## 22271     18-30      10
## 22272     35-40       6
## 22273     18-30      10
## 22274     30-35       7
## 22275     40-50       5
## 22276     35-40       6
## 22277     35-40       6
## 22278     18-30      10
## 22279     30-35       7
## 22280     18-30      10
## 22281     18-30      10
## 22282     18-30      10
## 22283     40-50       5
## 22284     30-35       7
## 22285     40-50       5
## 22286     18-30      10
## 22287     35-40       6
## 22288     30-35       7
## 22289     18-30      10
## 22290     18-30      10
## 22291     18-30      10
## 22292     18-30      10
## 22293     35-40       6
## 22294     35-40       6
## 22295     18-30      10
## 22296     18-30      10
## 22297     18-30      10
## 22298     50-60       5
## 22299     30-35       7
## 22300     18-30      10
## 22301     18-30      10
## 22302     18-30      10
## 22303     30-35       7
## 22304     18-30      10
## 22305     40-50       5
## 22306     18-30      10
## 22307     30-35       7
## 22308     35-40       6
## 22309     18-30      10
## 22310     40-50       5
## 22311     18-30      10
## 22312     35-40       6
## 22313     30-35       7
## 22314     18-30      10
## 22315     30-35       7
## 22316     35-40       6
## 22317     50-60       5
## 22318     40-50       5
## 22319     30-35       7
## 22320     30-35       7
## 22321     30-35       7
## 22322     18-30      10
## 22323     18-30      10
## 22324     30-35       7
## 22325     40-50       5
## 22326     18-30      10
## 22327     18-30      10
## 22328     18-30      10
## 22329       65+       4
## 22330     18-30      10
## 22331     18-30      10
## 22332     30-35       7
## 22333     30-35       7
## 22334     18-30      10
## 22335     40-50       5
## 22336     18-30      10
## 22337     30-35       7
## 22338     18-30      10
## 22339     18-30      10
## 22340     18-30      10
## 22341     30-35       7
## 22342     18-30      10
## 22343     18-30      10
## 22344     40-50       5
## 22345     40-50       5
## 22346     18-30      10
## 22347     18-30      10
## 22348     18-30      10
## 22349     18-30      10
## 22350     18-30      10
## 22351     18-30      10
## 22352     40-50       5
## 22353     18-30      10
## 22354     35-40       6
## 22355     18-30      10
## 22356     18-30      10
## 22357     18-30      10
## 22358     30-35       7
## 22359     18-30      10
## 22360     18-30      10
## 22361     18-30      10
## 22362     35-40       6
## 22363       65+       4
## 22364     18-30      10
## 22365     18-30      10
## 22366     18-30      10
## 22367     18-30      10
## 22368     18-30      10
## 22369     18-30      10
## 22370     30-35       7
## 22371     18-30      10
## 22372     18-30      10
## 22373     18-30      10
## 22374     18-30      10
## 22375     35-40       6
## 22376     18-30      10
## 22377     40-50       5
## 22378     40-50       5
## 22379     50-60       5
## 22380     30-35       7
## 22381     35-40       6
## 22382     40-50       5
## 22383     18-30      10
## 22384     18-30      10
## 22385     18-30      10
## 22386     30-35       7
## 22387     18-30      10
## 22388     30-35       7
## 22389     18-30      10
## 22390     18-30      10
## 22391     18-30      10
## 22392     18-30      10
## 22393     18-30      10
## 22394     30-35       7
## 22395     18-30      10
## 22396     18-30      10
## 22397     18-30      10
## 22398     18-30      10
## 22399     18-30      10
## 22400     18-30      10
## 22401     18-30      10
## 22402     40-50       5
## 22403     18-30      10
## 22404     18-30      10
## 22405     18-30      10
## 22406     30-35       7
## 22407     35-40       6
## 22408     30-35       7
## 22409     18-30      10
## 22410     40-50       5
## 22411     18-30      10
## 22412     18-30      10
## 22413     30-35       7
## 22414     18-30      10
## 22415     35-40       6
## 22416     18-30      10
## 22417     18-30      10
## 22418     18-30      10
## 22419     30-35       7
## 22420     18-30      10
## 22421     18-30      10
## 22422     18-30      10
## 22423     18-30      10
## 22424     35-40       6
## 22425     18-30      10
## 22426     18-30      10
## 22427     18-30      10
## 22428     18-30      10
## 22429     18-30      10
## 22430     18-30      10
## 22431     30-35       7
## 22432     18-30      10
## 22433     40-50       5
## 22434     30-35       7
## 22435     18-30      10
## 22436     30-35       7
## 22437     18-30      10
## 22438     18-30      10
## 22439     18-30      10
## 22440     18-30      10
## 22441     18-30      10
## 22442     18-30      10
## 22443     30-35       7
## 22444     30-35       7
## 22445     18-30      10
## 22446     18-30      10
## 22447     35-40       6
## 22448     18-30      10
## 22449     18-30      10
## 22450     40-50       5
## 22451     30-35       7
## 22452     30-35       7
## 22453     35-40       6
## 22454     18-30      10
## 22455     18-30      10
## 22456     35-40       6
## 22457     30-35       7
## 22458     35-40       6
## 22459     50-60       5
## 22460     18-30      10
## 22461     18-30      10
## 22462     40-50       5
## 22463     18-30      10
## 22464     18-30      10
## 22465     18-30      10
## 22466     30-35       7
## 22467     35-40       6
## 22468     18-30      10
## 22469     18-30      10
## 22470     35-40       6
## 22471     40-50       5
## 22472     18-30      10
## 22473     30-35       7
## 22474     18-30      10
## 22475     18-30      10
## 22476     30-35       7
## 22477     18-30      10
## 22478     18-30      10
## 22479     35-40       6
## 22480     35-40       6
## 22481     50-60       5
## 22482     35-40       6
## 22483     18-30      10
## 22484     18-30      10
## 22485     30-35       7
## 22486     40-50       5
## 22487     40-50       5
## 22488     35-40       6
## 22489     18-30      10
## 22490     18-30      10
## 22491     18-30      10
## 22492     40-50       5
## 22493     18-30      10
## 22494     30-35       7
## 22495     40-50       5
## 22496     18-30      10
## 22497     18-30      10
## 22498     18-30      10
## 22499     30-35       7
## 22500     18-30      10
## 22501     30-35       7
## 22502     18-30      10
## 22503     30-35       7
## 22504     18-30      10
## 22505     30-35       7
## 22506     18-30      10
## 22507     18-30      10
## 22508     30-35       7
## 22509     18-30      10
## 22510     18-30      10
## 22511     18-30      10
## 22512     18-30      10
## 22513     30-35       7
## 22514     40-50       5
## 22515     18-30      10
## 22516     18-30      10
## 22517     18-30      10
## 22518     18-30      10
## 22519       65+       4
## 22520     30-35       7
## 22521     18-30      10
## 22522     18-30      10
## 22523     18-30      10
## 22524     18-30      10
## 22525     35-40       6
## 22526     18-30      10
## 22527     18-30      10
## 22528     30-35       7
## 22529     18-30      10
## 22530     18-30      10
## 22531     18-30      10
## 22532     30-35       7
## 22533     18-30      10
## 22534     30-35       7
## 22535     18-30      10
## 22536     50-60       5
## 22537     30-35       7
## 22538     18-30      10
## 22539     18-30      10
## 22540     18-30      10
## 22541     18-30      10
## 22542     18-30      10
## 22543     18-30      10
## 22544     40-50       5
## 22545     40-50       5
## 22546     35-40       6
## 22547     18-30      10
## 22548     40-50       5
## 22549     40-50       5
## 22550     18-30      10
## 22551     18-30      10
## 22552     18-30      10
## 22553     18-30      10
## 22554     18-30      10
## 22555     50-60       5
## 22556     18-30      10
## 22557     35-40       6
## 22558     18-30      10
## 22559     18-30      10
## 22560     18-30      10
## 22561     30-35       7
## 22562     18-30      10
## 22563     40-50       5
## 22564     18-30      10
## 22565     18-30      10
## 22566     18-30      10
## 22567     18-30      10
## 22568     30-35       7
## 22569     18-30      10
## 22570     18-30      10
## 22571     18-30      10
## 22572     35-40       6
## 22573     18-30      10
## 22574     18-30      10
## 22575     18-30      10
## 22576     35-40       6
## 22577     18-30      10
## 22578     30-35       7
## 22579     35-40       6
## 22580     30-35       7
## 22581     18-30      10
## 22582     40-50       5
## 22583       65+       4
## 22584     18-30      10
## 22585     18-30      10
## 22586     18-30      10
## 22587     30-35       7
## 22588     35-40       6
## 22589     30-35       7
## 22590     30-35       7
## 22591     18-30      10
## 22592     30-35       7
## 22593     18-30      10
## 22594     18-30      10
## 22595     18-30      10
## 22596     18-30      10
## 22597     18-30      10
## 22598     30-35       7
## 22599     30-35       7
## 22600     18-30      10
## 22601     35-40       6
## 22602     30-35       7
## 22603     40-50       5
## 22604     18-30      10
## 22605     18-30      10
## 22606     18-30      10
## 22607     30-35       7
## 22608     18-30      10
## 22609     18-30      10
## 22610     30-35       7
## 22611     30-35       7
## 22612     40-50       5
## 22613     35-40       6
## 22614     30-35       7
## 22615     30-35       7
## 22616     40-50       5
## 22617     40-50       5
## 22618     18-30      10
## 22619     18-30      10
## 22620     30-35       7
## 22621     18-30      10
## 22622     18-30      10
## 22623     50-60       5
## 22624       65+       4
## 22625     18-30      10
## 22626     18-30      10
## 22627     18-30      10
## 22628     30-35       7
## 22629     30-35       7
## 22630     18-30      10
## 22631     18-30      10
## 22632     30-35       7
## 22633     18-30      10
## 22634     35-40       6
## 22635     18-30      10
## 22636     18-30      10
## 22637     18-30      10
## 22638     40-50       5
## 22639     18-30      10
## 22640     18-30      10
## 22641     18-30      10
## 22642     30-35       7
## 22643     35-40       6
## 22644     18-30      10
## 22645     18-30      10
## 22646     35-40       6
## 22647     18-30      10
## 22648     18-30      10
## 22649       65+       4
## 22650     18-30      10
## 22651     18-30      10
## 22652     18-30      10
## 22653     30-35       7
## 22654     18-30      10
## 22655     18-30      10
## 22656     18-30      10
## 22657     18-30      10
## 22658     35-40       6
## 22659     18-30      10
## 22660     18-30      10
## 22661     18-30      10
## 22662     18-30      10
## 22663     30-35       7
## 22664     30-35       7
## 22665     18-30      10
## 22666     18-30      10
## 22667     18-30      10
## 22668     18-30      10
## 22669     35-40       6
## 22670     18-30      10
## 22671     18-30      10
## 22672     18-30      10
## 22673     18-30      10
## 22674     18-30      10
## 22675     40-50       5
## 22676     18-30      10
## 22677     50-60       5
## 22678     18-30      10
## 22679     18-30      10
## 22680     18-30      10
## 22681     18-30      10
## 22682     18-30      10
## 22683     30-35       7
## 22684     40-50       5
## 22685     18-30      10
## 22686     30-35       7
## 22687     50-60       5
## 22688     18-30      10
## 22689     18-30      10
## 22690     18-30      10
## 22691     18-30      10
## 22692     18-30      10
## 22693     18-30      10
## 22694     40-50       5
## 22695     18-30      10
## 22696     18-30      10
## 22697     35-40       6
## 22698     18-30      10
## 22699     18-30      10
## 22700     40-50       5
## 22701     18-30      10
## 22702     18-30      10
## 22703     30-35       7
## 22704     30-35       7
## 22705     18-30      10
## 22706     40-50       5
## 22707     40-50       5
## 22708     40-50       5
## 22709     18-30      10
## 22710     35-40       6
## 22711     18-30      10
## 22712     18-30      10
## 22713     40-50       5
## 22714     18-30      10
## 22715     18-30      10
## 22716     40-50       5
## 22717     30-35       7
## 22718     18-30      10
## 22719     18-30      10
## 22720     35-40       6
## 22721     50-60       5
## 22722     18-30      10
## 22723     18-30      10
## 22724     30-35       7
## 22725     50-60       5
## 22726     18-30      10
## 22727     35-40       6
## 22728     18-30      10
## 22729     18-30      10
## 22730     30-35       7
## 22731     18-30      10
## 22732     50-60       5
## 22733     18-30      10
## 22734     18-30      10
## 22735     35-40       6
## 22736     18-30      10
## 22737     30-35       7
## 22738     50-60       5
## 22739     18-30      10
## 22740     30-35       7
## 22741     18-30      10
## 22742     35-40       6
## 22743     18-30      10
## 22744     18-30      10
## 22745     18-30      10
## 22746     18-30      10
## 22747     35-40       6
## 22748     50-60       5
## 22749     18-30      10
## 22750     18-30      10
## 22751     30-35       7
## 22752     40-50       5
## 22753     18-30      10
## 22754     35-40       6
## 22755     35-40       6
## 22756     18-30      10
## 22757     50-60       5
## 22758     35-40       6
## 22759     18-30      10
## 22760     18-30      10
## 22761     18-30      10
## 22762     30-35       7
## 22763     30-35       7
## 22764     18-30      10
## 22765     18-30      10
## 22766     30-35       7
## 22767     30-35       7
## 22768     40-50       5
## 22769     18-30      10
## 22770     18-30      10
## 22771     30-35       7
## 22772     18-30      10
## 22773     30-35       7
## 22774     18-30      10
## 22775     30-35       7
## 22776     30-35       7
## 22777     30-35       7
## 22778     18-30      10
## 22779     18-30      10
## 22780     30-35       7
## 22781     18-30      10
## 22782     18-30      10
## 22783     40-50       5
## 22784     18-30      10
## 22785     35-40       6
## 22786     30-35       7
## 22787     40-50       5
## 22788     50-60       5
## 22789     30-35       7
## 22790     30-35       7
## 22791     18-30      10
## 22792     18-30      10
## 22793     18-30      10
## 22794     30-35       7
## 22795     18-30      10
## 22796     18-30      10
## 22797     18-30      10
## 22798     18-30      10
## 22799     18-30      10
## 22800     18-30      10
## 22801     18-30      10
## 22802     40-50       5
## 22803     35-40       6
## 22804     18-30      10
## 22805     18-30      10
## 22806     18-30      10
## 22807     18-30      10
## 22808     18-30      10
## 22809     18-30      10
## 22810     30-35       7
## 22811     30-35       7
## 22812     35-40       6
## 22813     18-30      10
## 22814     18-30      10
## 22815     18-30      10
## 22816     40-50       5
## 22817     18-30      10
## 22818     18-30      10
## 22819     18-30      10
## 22820     18-30      10
## 22821     18-30      10
## 22822     18-30      10
## 22823     18-30      10
## 22824     30-35       7
## 22825     18-30      10
## 22826     18-30      10
## 22827     30-35       7
## 22828     18-30      10
## 22829     30-35       7
## 22830     30-35       7
## 22831     30-35       7
## 22832     18-30      10
## 22833     30-35       7
## 22834     35-40       6
## 22835     35-40       6
## 22836     18-30      10
## 22837     18-30      10
## 22838     18-30      10
## 22839     35-40       6
## 22840     18-30      10
## 22841     40-50       5
## 22842     18-30      10
## 22843     18-30      10
## 22844     40-50       5
## 22845     18-30      10
## 22846     18-30      10
## 22847     18-30      10
## 22848     18-30      10
## 22849     35-40       6
## 22850     35-40       6
## 22851     30-35       7
## 22852     35-40       6
## 22853     30-35       7
## 22854     50-60       5
## 22855     18-30      10
## 22856     35-40       6
## 22857     30-35       7
## 22858     50-60       5
## 22859     35-40       6
## 22860     40-50       5
## 22861     30-35       7
## 22862     40-50       5
## 22863     18-30      10
## 22864     18-30      10
## 22865     18-30      10
## 22866     35-40       6
## 22867     18-30      10
## 22868     18-30      10
## 22869     18-30      10
## 22870     50-60       5
## 22871     18-30      10
## 22872     35-40       6
## 22873     50-60       5
## 22874     30-35       7
## 22875     18-30      10
## 22876     30-35       7
## 22877     40-50       5
## 22878     35-40       6
## 22879       65+       4
## 22880     30-35       7
## 22881     35-40       6
## 22882     18-30      10
## 22883     30-35       7
## 22884     18-30      10
## 22885     18-30      10
## 22886     30-35       7
## 22887     18-30      10
## 22888     18-30      10
## 22889     18-30      10
## 22890     18-30      10
## 22891     50-60       5
## 22892     18-30      10
## 22893     30-35       7
## 22894     18-30      10
## 22895     18-30      10
## 22896     18-30      10
## 22897     18-30      10
## 22898     40-50       5
## 22899     18-30      10
## 22900     18-30      10
## 22901     40-50       5
## 22902     18-30      10
## 22903     18-30      10
## 22904     18-30      10
## 22905     18-30      10
## 22906     40-50       5
## 22907     18-30      10
## 22908     18-30      10
## 22909     18-30      10
## 22910     18-30      10
## 22911     18-30      10
## 22912     30-35       7
## 22913     35-40       6
## 22914     18-30      10
## 22915     30-35       7
## 22916     30-35       7
## 22917     30-35       7
## 22918     18-30      10
## 22919     35-40       6
## 22920     18-30      10
## 22921     40-50       5
## 22922     18-30      10
## 22923     18-30      10
## 22924     18-30      10
## 22925     35-40       6
## 22926     18-30      10
## 22927     35-40       6
## 22928     18-30      10
## 22929     35-40       6
## 22930     18-30      10
## 22931     18-30      10
## 22932     30-35       7
## 22933     18-30      10
## 22934     18-30      10
## 22935     18-30      10
## 22936     18-30      10
## 22937     18-30      10
## 22938     18-30      10
## 22939     18-30      10
## 22940     18-30      10
## 22941     18-30      10
## 22942     18-30      10
## 22943     40-50       5
## 22944     35-40       6
## 22945     40-50       5
## 22946     30-35       7
## 22947     40-50       5
## 22948     18-30      10
## 22949     40-50       5
## 22950     30-35       7
## 22951     18-30      10
## 22952     18-30      10
## 22953     18-30      10
## 22954     18-30      10
## 22955     18-30      10
## 22956     18-30      10
## 22957     18-30      10
## 22958     30-35       7
## 22959     18-30      10
## 22960       65+       4
## 22961     40-50       5
## 22962     18-30      10
## 22963     18-30      10
## 22964     18-30      10
## 22965     18-30      10
## 22966     18-30      10
## 22967     30-35       7
## 22968     18-30      10
## 22969     18-30      10
## 22970     35-40       6
## 22971     30-35       7
## 22972     50-60       5
## 22973     18-30      10
## 22974     18-30      10
## 22975     35-40       6
## 22976     30-35       7
## 22977     18-30      10
## 22978     35-40       6
## 22979     18-30      10
## 22980     18-30      10
## 22981     18-30      10
## 22982     30-35       7
## 22983     18-30      10
## 22984     18-30      10
## 22985     18-30      10
## 22986     40-50       5
## 22987     18-30      10
## 22988     18-30      10
## 22989     18-30      10
## 22990     35-40       6
## 22991     18-30      10
## 22992     18-30      10
## 22993     18-30      10
## 22994     30-35       7
## 22995     30-35       7
## 22996     50-60       5
## 22997     18-30      10
## 22998     35-40       6
## 22999     35-40       6
## 23000     18-30      10
## 23001     35-40       6
## 23002     35-40       6
## 23003     18-30      10
## 23004     30-35       7
## 23005     18-30      10
## 23006     40-50       5
## 23007     18-30      10
## 23008     18-30      10
## 23009     40-50       5
## 23010     40-50       5
## 23011     18-30      10
## 23012     40-50       5
## 23013     18-30      10
## 23014     18-30      10
## 23015     30-35       7
## 23016     35-40       6
## 23017       65+       4
## 23018     30-35       7
## 23019     35-40       6
## 23020     30-35       7
## 23021     18-30      10
## 23022     35-40       6
## 23023     18-30      10
## 23024     18-30      10
## 23025     18-30      10
## 23026     30-35       7
## 23027     18-30      10
## 23028     35-40       6
## 23029     35-40       6
## 23030     18-30      10
## 23031     18-30      10
## 23032     30-35       7
## 23033     18-30      10
## 23034     18-30      10
## 23035     35-40       6
## 23036     35-40       6
## 23037     30-35       7
## 23038     18-30      10
## 23039     18-30      10
## 23040     30-35       7
## 23041     35-40       6
## 23042     35-40       6
## 23043     18-30      10
## 23044     35-40       6
## 23045     18-30      10
## 23046     30-35       7
## 23047       65+       4
## 23048     18-30      10
## 23049     30-35       7
## 23050     18-30      10
## 23051     18-30      10
## 23052     40-50       5
## 23053     35-40       6
## 23054       65+       4
## 23055     18-30      10
## 23056     30-35       7
## 23057     18-30      10
## 23058     18-30      10
## 23059     18-30      10
## 23060     40-50       5
## 23061     18-30      10
## 23062     18-30      10
## 23063     18-30      10
## 23064     18-30      10
## 23065     40-50       5
## 23066     30-35       7
## 23067     18-30      10
## 23068     18-30      10
## 23069     18-30      10
## 23070     18-30      10
## 23071     18-30      10
## 23072     18-30      10
## 23073     50-60       5
## 23074     30-35       7
## 23075     18-30      10
## 23076     18-30      10
## 23077     18-30      10
## 23078     18-30      10
## 23079     30-35       7
## 23080     18-30      10
## 23081     40-50       5
## 23082     18-30      10
## 23083     18-30      10
## 23084     18-30      10
## 23085     18-30      10
## 23086     18-30      10
## 23087     18-30      10
## 23088     30-35       7
## 23089     18-30      10
## 23090     40-50       5
## 23091     18-30      10
## 23092     18-30      10
## 23093     40-50       5
## 23094     30-35       7
## 23095     18-30      10
## 23096     30-35       7
## 23097     18-30      10
## 23098     30-35       7
## 23099     30-35       7
## 23100     18-30      10
## 23101     18-30      10
## 23102     18-30      10
## 23103     35-40       6
## 23104     30-35       7
## 23105     18-30      10
## 23106     18-30      10
## 23107     18-30      10
## 23108     40-50       5
## 23109     35-40       6
## 23110     18-30      10
## 23111     30-35       7
## 23112       65+       4
## 23113     18-30      10
## 23114     30-35       7
## 23115     18-30      10
## 23116     40-50       5
## 23117     18-30      10
## 23118     30-35       7
## 23119     30-35       7
## 23120     18-30      10
## 23121     50-60       5
## 23122     18-30      10
## 23123     18-30      10
## 23124     35-40       6
## 23125     30-35       7
## 23126     18-30      10
## 23127     18-30      10
## 23128     35-40       6
## 23129     18-30      10
## 23130     30-35       7
## 23131     30-35       7
## 23132     35-40       6
## 23133     18-30      10
## 23134     30-35       7
## 23135     18-30      10
## 23136     18-30      10
## 23137     18-30      10
## 23138     50-60       5
## 23139     30-35       7
## 23140     18-30      10
## 23141     30-35       7
## 23142     18-30      10
## 23143     35-40       6
## 23144     30-35       7
## 23145     18-30      10
## 23146     18-30      10
## 23147     18-30      10
## 23148     18-30      10
## 23149     18-30      10
## 23150     18-30      10
## 23151     18-30      10
## 23152     18-30      10
## 23153     40-50       5
## 23154     40-50       5
## 23155     18-30      10
## 23156     35-40       6
## 23157     35-40       6
## 23158     35-40       6
## 23159     18-30      10
## 23160     18-30      10
## 23161     18-30      10
## 23162     30-35       7
## 23163     18-30      10
## 23164     18-30      10
## 23165     18-30      10
## 23166     18-30      10
## 23167     35-40       6
## 23168     18-30      10
## 23169     18-30      10
## 23170     30-35       7
## 23171     18-30      10
## 23172     40-50       5
## 23173     18-30      10
## 23174     30-35       7
## 23175     35-40       6
## 23176     18-30      10
## 23177     50-60       5
## 23178     18-30      10
## 23179     35-40       6
## 23180     18-30      10
## 23181     18-30      10
## 23182     35-40       6
## 23183     18-30      10
## 23184     18-30      10
## 23185     18-30      10
## 23186     18-30      10
## 23187     18-30      10
## 23188     40-50       5
## 23189     40-50       5
## 23190     18-30      10
## 23191     30-35       7
## 23192     18-30      10
## 23193     30-35       7
## 23194     35-40       6
## 23195     18-30      10
## 23196     35-40       6
## 23197     18-30      10
## 23198     30-35       7
## 23199     18-30      10
## 23200     18-30      10
## 23201     35-40       6
## 23202     18-30      10
## 23203     18-30      10
## 23204     18-30      10
## 23205     18-30      10
## 23206     18-30      10
## 23207     30-35       7
## 23208     18-30      10
## 23209     18-30      10
## 23210     18-30      10
## 23211     30-35       7
## 23212     18-30      10
## 23213     30-35       7
## 23214       65+       4
## 23215     18-30      10
## 23216     18-30      10
## 23217     18-30      10
## 23218     50-60       5
## 23219     18-30      10
## 23220     18-30      10
## 23221       65+       4
## 23222     18-30      10
## 23223     18-30      10
## 23224     40-50       5
## 23225     30-35       7
## 23226     50-60       5
## 23227     30-35       7
## 23228     18-30      10
## 23229     18-30      10
## 23230     18-30      10
## 23231     30-35       7
## 23232     35-40       6
## 23233     18-30      10
## 23234     30-35       7
## 23235     18-30      10
## 23236     18-30      10
## 23237     18-30      10
## 23238     18-30      10
## 23239     35-40       6
## 23240     40-50       5
## 23241     30-35       7
## 23242     18-30      10
## 23243     18-30      10
## 23244     18-30      10
## 23245     35-40       6
## 23246     40-50       5
## 23247     30-35       7
## 23248     18-30      10
## 23249     18-30      10
## 23250     50-60       5
## 23251     18-30      10
## 23252     30-35       7
## 23253     30-35       7
## 23254     18-30      10
## 23255     18-30      10
## 23256     35-40       6
## 23257     30-35       7
## 23258     40-50       5
## 23259     30-35       7
## 23260     35-40       6
## 23261     18-30      10
## 23262     18-30      10
## 23263     18-30      10
## 23264     30-35       7
## 23265     35-40       6
## 23266     18-30      10
## 23267     18-30      10
## 23268     30-35       7
## 23269     18-30      10
## 23270     18-30      10
## 23271     18-30      10
## 23272     18-30      10
## 23273     18-30      10
## 23274     18-30      10
## 23275     18-30      10
## 23276     18-30      10
## 23277     35-40       6
## 23278     40-50       5
## 23279     30-35       7
## 23280     18-30      10
## 23281     18-30      10
## 23282     30-35       7
## 23283     18-30      10
## 23284     18-30      10
## 23285     40-50       5
## 23286       65+       4
## 23287     30-35       7
## 23288     18-30      10
## 23289     30-35       7
## 23290     18-30      10
## 23291     40-50       5
## 23292     35-40       6
## 23293     18-30      10
## 23294     35-40       6
## 23295     35-40       6
## 23296     18-30      10
## 23297     18-30      10
## 23298     30-35       7
## 23299     18-30      10
## 23300     18-30      10
## 23301     30-35       7
## 23302     35-40       6
## 23303     30-35       7
## 23304     40-50       5
## 23305     18-30      10
## 23306     18-30      10
## 23307     18-30      10
## 23308     30-35       7
## 23309     40-50       5
## 23310     18-30      10
## 23311     18-30      10
## 23312     18-30      10
## 23313     18-30      10
## 23314     18-30      10
## 23315     18-30      10
## 23316     30-35       7
## 23317     18-30      10
## 23318     18-30      10
## 23319     18-30      10
## 23320     18-30      10
## 23321     40-50       5
## 23322     30-35       7
## 23323     30-35       7
## 23324     18-30      10
## 23325     18-30      10
## 23326     18-30      10
## 23327     18-30      10
## 23328     18-30      10
## 23329     30-35       7
## 23330     30-35       7
## 23331     35-40       6
## 23332     18-30      10
## 23333     40-50       5
## 23334     18-30      10
## 23335     18-30      10
## 23336     18-30      10
## 23337     18-30      10
## 23338     18-30      10
## 23339     18-30      10
## 23340     30-35       7
## 23341     18-30      10
## 23342     30-35       7
## 23343     18-30      10
## 23344     35-40       6
## 23345     18-30      10
## 23346     18-30      10
## 23347     40-50       5
## 23348     30-35       7
## 23349     18-30      10
## 23350     50-60       5
## 23351     18-30      10
## 23352     40-50       5
## 23353     18-30      10
## 23354     18-30      10
## 23355     18-30      10
## 23356     18-30      10
## 23357     30-35       7
## 23358     18-30      10
## 23359     18-30      10
## 23360     18-30      10
## 23361     35-40       6
## 23362     30-35       7
## 23363     18-30      10
## 23364     18-30      10
## 23365     40-50       5
## 23366     30-35       7
## 23367     18-30      10
## 23368     18-30      10
## 23369     35-40       6
## 23370     18-30      10
## 23371     18-30      10
## 23372     18-30      10
## 23373     18-30      10
## 23374     18-30      10
## 23375     18-30      10
## 23376     35-40       6
## 23377     18-30      10
## 23378     18-30      10
## 23379     30-35       7
## 23380     35-40       6
## 23381     18-30      10
## 23382     35-40       6
## 23383     30-35       7
## 23384     18-30      10
## 23385     30-35       7
## 23386     18-30      10
## 23387     18-30      10
## 23388     30-35       7
## 23389     40-50       5
## 23390     30-35       7
## 23391     30-35       7
## 23392     18-30      10
## 23393     30-35       7
## 23394     30-35       7
## 23395     30-35       7
## 23396     18-30      10
## 23397     30-35       7
## 23398     35-40       6
## 23399     18-30      10
## 23400     18-30      10
## 23401     18-30      10
## 23402     18-30      10
## 23403     40-50       5
## 23404     30-35       7
## 23405     40-50       5
## 23406     18-30      10
## 23407     40-50       5
## 23408     30-35       7
## 23409     18-30      10
## 23410     18-30      10
## 23411     18-30      10
## 23412     18-30      10
## 23413     18-30      10
## 23414     30-35       7
## 23415     18-30      10
## 23416     35-40       6
## 23417     30-35       7
## 23418     18-30      10
## 23419     18-30      10
## 23420     18-30      10
## 23421     18-30      10
## 23422     30-35       7
## 23423     50-60       5
## 23424     35-40       6
## 23425     18-30      10
## 23426     40-50       5
## 23427     30-35       7
## 23428     18-30      10
## 23429     18-30      10
## 23430     18-30      10
## 23431     35-40       6
## 23432     18-30      10
## 23433     18-30      10
## 23434     18-30      10
## 23435     18-30      10
## 23436     30-35       7
## 23437     18-30      10
## 23438     30-35       7
## 23439     18-30      10
## 23440     18-30      10
## 23441     18-30      10
## 23442     30-35       7
## 23443     40-50       5
## 23444     18-30      10
## 23445     18-30      10
## 23446     18-30      10
## 23447     18-30      10
## 23448     18-30      10
## 23449     18-30      10
## 23450     40-50       5
## 23451     40-50       5
## 23452     35-40       6
## 23453     18-30      10
## 23454     18-30      10
## 23455     18-30      10
## 23456     18-30      10
## 23457     30-35       7
## 23458     18-30      10
## 23459     30-35       7
## 23460     18-30      10
## 23461     30-35       7
## 23462     18-30      10
## 23463     30-35       7
## 23464     35-40       6
## 23465     40-50       5
## 23466     30-35       7
## 23467     35-40       6
## 23468     18-30      10
## 23469     50-60       5
## 23470     18-30      10
## 23471     35-40       6
## 23472     18-30      10
## 23473     18-30      10
## 23474     40-50       5
## 23475     30-35       7
## 23476     18-30      10
## 23477     18-30      10
## 23478     35-40       6
## 23479     30-35       7
## 23480     30-35       7
## 23481     18-30      10
## 23482     18-30      10
## 23483     18-30      10
## 23484     18-30      10
## 23485     35-40       6
## 23486     30-35       7
## 23487     30-35       7
## 23488     18-30      10
## 23489     18-30      10
## 23490     18-30      10
## 23491     18-30      10
## 23492     18-30      10
## 23493     18-30      10
## 23494     30-35       7
## 23495     30-35       7
## 23496     40-50       5
## 23497     30-35       7
## 23498     40-50       5
## 23499     30-35       7
## 23500     18-30      10
## 23501     18-30      10
## 23502     18-30      10
## 23503     18-30      10
## 23504     18-30      10
## 23505     18-30      10
## 23506     30-35       7
## 23507     18-30      10
## 23508     18-30      10
## 23509     18-30      10
## 23510       65+       4
## 23511     30-35       7
## 23512     18-30      10
## 23513     18-30      10
## 23514     18-30      10
## 23515     18-30      10
## 23516     35-40       6
## 23517     30-35       7
## 23518     18-30      10
## 23519     40-50       5
## 23520     18-30      10
## 23521     18-30      10
## 23522     30-35       7
## 23523     18-30      10
## 23524     40-50       5
## 23525     18-30      10
## 23526     35-40       6
## 23527     18-30      10
## 23528     18-30      10
## 23529     18-30      10
## 23530     18-30      10
## 23531     18-30      10
## 23532     18-30      10
## 23533     40-50       5
## 23534     18-30      10
## 23535     18-30      10
## 23536     18-30      10
## 23537     40-50       5
## 23538     18-30      10
## 23539     40-50       5
## 23540     18-30      10
## 23541     18-30      10
## 23542     18-30      10
## 23543     18-30      10
## 23544     30-35       7
## 23545     30-35       7
## 23546     35-40       6
## 23547     18-30      10
## 23548     40-50       5
## 23549     18-30      10
## 23550     18-30      10
## 23551     18-30      10
## 23552     18-30      10
## 23553     18-30      10
## 23554     18-30      10
## 23555     18-30      10
## 23556     18-30      10
## 23557     35-40       6
## 23558     18-30      10
## 23559     18-30      10
## 23560     18-30      10
## 23561     18-30      10
## 23562     50-60       5
## 23563     50-60       5
## 23564     30-35       7
## 23565     30-35       7
## 23566     18-30      10
## 23567     40-50       5
## 23568     18-30      10
## 23569     18-30      10
## 23570     40-50       5
## 23571     40-50       5
## 23572     40-50       5
## 23573     18-30      10
## 23574     18-30      10
## 23575     18-30      10
## 23576     18-30      10
## 23577     18-30      10
## 23578     30-35       7
## 23579     18-30      10
## 23580     30-35       7
## 23581     18-30      10
## 23582     18-30      10
## 23583     18-30      10
## 23584     50-60       5
## 23585     18-30      10
## 23586     35-40       6
## 23587     18-30      10
## 23588     40-50       5
## 23589     30-35       7
## 23590     35-40       6
## 23591     40-50       5
## 23592     18-30      10
## 23593     35-40       6
## 23594     50-60       5
## 23595     40-50       5
## 23596     18-30      10
## 23597     18-30      10
## 23598     18-30      10
## 23599     18-30      10
## 23600     18-30      10
## 23601     18-30      10
## 23602     40-50       5
## 23603     18-30      10
## 23604     18-30      10
## 23605     18-30      10
## 23606     40-50       5
## 23607     18-30      10
## 23608     30-35       7
## 23609     18-30      10
## 23610     40-50       5
## 23611     40-50       5
## 23612     18-30      10
## 23613     18-30      10
## 23614     18-30      10
## 23615     35-40       6
## 23616     18-30      10
## 23617     18-30      10
## 23618     18-30      10
## 23619     18-30      10
## 23620     18-30      10
## 23621     40-50       5
## 23622     18-30      10
## 23623       65+       4
## 23624     30-35       7
## 23625     30-35       7
## 23626     30-35       7
## 23627     18-30      10
## 23628     18-30      10
## 23629     30-35       7
## 23630     30-35       7
## 23631     18-30      10
## 23632     18-30      10
## 23633     35-40       6
## 23634     40-50       5
## 23635     30-35       7
## 23636     18-30      10
## 23637     18-30      10
## 23638     18-30      10
## 23639     18-30      10
## 23640     18-30      10
## 23641     30-35       7
## 23642     18-30      10
## 23643     35-40       6
## 23644     30-35       7
## 23645     18-30      10
## 23646     40-50       5
## 23647     18-30      10
## 23648     30-35       7
## 23649     30-35       7
## 23650     18-30      10
## 23651     30-35       7
## 23652     18-30      10
## 23653     18-30      10
## 23654     30-35       7
## 23655     18-30      10
## 23656     40-50       5
## 23657     18-30      10
## 23658     30-35       7
## 23659     30-35       7
## 23660     18-30      10
## 23661     18-30      10
## 23662     35-40       6
## 23663     18-30      10
## 23664     18-30      10
## 23665     18-30      10
## 23666     40-50       5
## 23667     40-50       5
## 23668     18-30      10
## 23669     18-30      10
## 23670     35-40       6
## 23671     18-30      10
## 23672     18-30      10
## 23673     18-30      10
## 23674     18-30      10
## 23675     18-30      10
## 23676     18-30      10
## 23677     18-30      10
## 23678     30-35       7
## 23679     18-30      10
## 23680     18-30      10
## 23681     30-35       7
## 23682     50-60       5
## 23683     18-30      10
## 23684     18-30      10
## 23685     18-30      10
## 23686     40-50       5
## 23687     40-50       5
## 23688     18-30      10
## 23689     18-30      10
## 23690     18-30      10
## 23691     18-30      10
## 23692     18-30      10
## 23693     18-30      10
## 23694     40-50       5
## 23695     30-35       7
## 23696     18-30      10
## 23697     35-40       6
## 23698     40-50       5
## 23699     30-35       7
## 23700     18-30      10
## 23701     40-50       5
## 23702     30-35       7
## 23703     18-30      10
## 23704     30-35       7
## 23705     18-30      10
## 23706     30-35       7
## 23707     18-30      10
## 23708     18-30      10
## 23709     40-50       5
## 23710     50-60       5
## 23711     30-35       7
## 23712       65+       4
## 23713     18-30      10
## 23714     18-30      10
## 23715     40-50       5
## 23716     18-30      10
## 23717     18-30      10
## 23718     40-50       5
## 23719     18-30      10
## 23720     50-60       5
## 23721     35-40       6
## 23722     35-40       6
## 23723     35-40       6
## 23724     18-30      10
## 23725     18-30      10
## 23726     18-30      10
## 23727     18-30      10
## 23728     18-30      10
## 23729     18-30      10
## 23730     18-30      10
## 23731     35-40       6
## 23732     30-35       7
## 23733     18-30      10
## 23734     40-50       5
## 23735       65+       4
## 23736     35-40       6
## 23737     18-30      10
## 23738     18-30      10
## 23739     18-30      10
## 23740     18-30      10
## 23741     35-40       6
## 23742     35-40       6
## 23743     30-35       7
## 23744     18-30      10
## 23745     30-35       7
## 23746     18-30      10
## 23747     30-35       7
## 23748     18-30      10
## 23749     50-60       5
## 23750     30-35       7
## 23751     30-35       7
## 23752     35-40       6
## 23753     18-30      10
## 23754     18-30      10
## 23755     18-30      10
## 23756     18-30      10
## 23757     50-60       5
## 23758     30-35       7
## 23759     18-30      10
## 23760     30-35       7
## 23761     18-30      10
## 23762     40-50       5
## 23763     30-35       7
## 23764     18-30      10
## 23765     18-30      10
## 23766     18-30      10
## 23767     18-30      10
## 23768     30-35       7
## 23769       65+       4
## 23770     40-50       5
## 23771     18-30      10
## 23772     18-30      10
## 23773     18-30      10
## 23774     40-50       5
## 23775     35-40       6
## 23776     18-30      10
## 23777     30-35       7
## 23778     18-30      10
## 23779     18-30      10
## 23780     30-35       7
## 23781     18-30      10
## 23782     18-30      10
## 23783     30-35       7
## 23784     30-35       7
## 23785     18-30      10
## 23786     18-30      10
## 23787     18-30      10
## 23788     35-40       6
## 23789     18-30      10
## 23790     18-30      10
## 23791     35-40       6
## 23792     30-35       7
## 23793     35-40       6
## 23794     18-30      10
## 23795     18-30      10
## 23796     30-35       7
## 23797     18-30      10
## 23798     30-35       7
## 23799     35-40       6
## 23800     30-35       7
## 23801     18-30      10
## 23802     18-30      10
## 23803     30-35       7
## 23804     35-40       6
## 23805     18-30      10
## 23806     18-30      10
## 23807     18-30      10
## 23808     40-50       5
## 23809     18-30      10
## 23810     30-35       7
## 23811     18-30      10
## 23812     30-35       7
## 23813     30-35       7
## 23814     35-40       6
## 23815     35-40       6
## 23816     35-40       6
## 23817     30-35       7
## 23818     30-35       7
## 23819     30-35       7
## 23820     18-30      10
## 23821     50-60       5
## 23822     18-30      10
## 23823     18-30      10
## 23824     18-30      10
## 23825     18-30      10
## 23826     18-30      10
## 23827     40-50       5
## 23828     18-30      10
## 23829     40-50       5
## 23830     18-30      10
## 23831     18-30      10
## 23832     18-30      10
## 23833     18-30      10
## 23834     18-30      10
## 23835     18-30      10
## 23836     30-35       7
## 23837     18-30      10
## 23838     40-50       5
## 23839     18-30      10
## 23840     35-40       6
## 23841     50-60       5
## 23842     18-30      10
## 23843     30-35       7
## 23844     18-30      10
## 23845     30-35       7
## 23846     18-30      10
## 23847     18-30      10
## 23848     30-35       7
## 23849     18-30      10
## 23850     18-30      10
## 23851       65+       4
## 23852     50-60       5
## 23853     18-30      10
## 23854     30-35       7
## 23855     30-35       7
## 23856     40-50       5
## 23857     18-30      10
## 23858     40-50       5
## 23859     40-50       5
## 23860     35-40       6
## 23861       65+       4
## 23862       65+       4
## 23863     35-40       6
## 23864     18-30      10
## 23865     18-30      10
## 23866     35-40       6
## 23867     18-30      10
## 23868     30-35       7
## 23869     40-50       5
## 23870     18-30      10
## 23871     30-35       7
## 23872     18-30      10
## 23873     18-30      10
## 23874     40-50       5
## 23875     18-30      10
## 23876     18-30      10
## 23877     18-30      10
## 23878     18-30      10
## 23879     18-30      10
## 23880     18-30      10
## 23881     18-30      10
## 23882     18-30      10
## 23883     18-30      10
## 23884     40-50       5
## 23885     35-40       6
## 23886     35-40       6
## 23887     30-35       7
## 23888     40-50       5
## 23889       65+       4
## 23890     35-40       6
## 23891     18-30      10
## 23892     30-35       7
## 23893     40-50       5
## 23894     18-30      10
## 23895     18-30      10
## 23896     40-50       5
## 23897     18-30      10
## 23898     18-30      10
## 23899     18-30      10
## 23900     18-30      10
## 23901     30-35       7
## 23902     40-50       5
## 23903     18-30      10
## 23904     18-30      10
## 23905     18-30      10
## 23906     30-35       7
## 23907     30-35       7
## 23908     18-30      10
## 23909     18-30      10
## 23910     18-30      10
## 23911     18-30      10
## 23912     18-30      10
## 23913     30-35       7
## 23914     40-50       5
## 23915     30-35       7
## 23916     30-35       7
## 23917     40-50       5
## 23918     18-30      10
## 23919     18-30      10
## 23920     18-30      10
## 23921     35-40       6
## 23922     18-30      10
## 23923     18-30      10
## 23924     30-35       7
## 23925     18-30      10
## 23926     18-30      10
## 23927     18-30      10
## 23928     18-30      10
## 23929     35-40       6
## 23930     50-60       5
## 23931     18-30      10
## 23932     30-35       7
## 23933     18-30      10
## 23934     40-50       5
## 23935     35-40       6
## 23936     18-30      10
## 23937     35-40       6
## 23938     40-50       5
## 23939     50-60       5
## 23940     30-35       7
## 23941     40-50       5
## 23942     18-30      10
## 23943     18-30      10
## 23944     40-50       5
## 23945     40-50       5
## 23946     30-35       7
## 23947     18-30      10
## 23948     40-50       5
## 23949     18-30      10
## 23950     30-35       7
## 23951     18-30      10
## 23952     40-50       5
## 23953     30-35       7
## 23954     50-60       5
## 23955     30-35       7
## 23956     50-60       5
## 23957     35-40       6
## 23958     30-35       7
## 23959     40-50       5
## 23960     30-35       7
## 23961     50-60       5
## 23962     18-30      10
## 23963     18-30      10
## 23964     30-35       7
## 23965     30-35       7
## 23966     18-30      10
## 23967     30-35       7
## 23968     40-50       5
## 23969     40-50       5
## 23970     18-30      10
## 23971     40-50       5
## 23972     35-40       6
## 23973     18-30      10
## 23974     30-35       7
## 23975     50-60       5
## 23976     30-35       7
## 23977     40-50       5
## 23978     18-30      10
## 23979     18-30      10
## 23980     18-30      10
## 23981     30-35       7
## 23982     40-50       5
## 23983     40-50       5
## 23984     30-35       7
## 23985     35-40       6
## 23986       65+       4
## 23987     40-50       5
## 23988     18-30      10
## 23989     18-30      10
## 23990     18-30      10
## 23991     18-30      10
## 23992     40-50       5
## 23993     30-35       7
## 23994     18-30      10
## 23995     18-30      10
## 23996     18-30      10
## 23997     30-35       7
## 23998     50-60       5
## 23999     40-50       5
## 24000     18-30      10
## 24001     40-50       5
## 24002     18-30      10
## 24003     30-35       7
## 24004     30-35       7
## 24005     18-30      10
## 24006     30-35       7
## 24007     18-30      10
## 24008     18-30      10
## 24009     50-60       5
## 24010     18-30      10
## 24011     18-30      10
## 24012     18-30      10
## 24013     40-50       5
## 24014     18-30      10
## 24015     18-30      10
## 24016     18-30      10
## 24017     18-30      10
## 24018     18-30      10
## 24019     30-35       7
## 24020     18-30      10
## 24021     18-30      10
## 24022     40-50       5
## 24023     18-30      10
## 24024     18-30      10
## 24025     50-60       5
## 24026     18-30      10
## 24027     30-35       7
## 24028     40-50       5
## 24029     18-30      10
## 24030     18-30      10
## 24031     18-30      10
## 24032     18-30      10
## 24033     18-30      10
## 24034     18-30      10
## 24035     18-30      10
## 24036     30-35       7
## 24037     18-30      10
## 24038     30-35       7
## 24039     35-40       6
## 24040     18-30      10
## 24041     18-30      10
## 24042     35-40       6
## 24043     18-30      10
## 24044     30-35       7
## 24045     40-50       5
## 24046     18-30      10
## 24047     40-50       5
## 24048     18-30      10
## 24049     50-60       5
## 24050     35-40       6
## 24051     30-35       7
## 24052     18-30      10
## 24053     40-50       5
## 24054     30-35       7
## 24055     50-60       5
## 24056     18-30      10
## 24057     30-35       7
## 24058     30-35       7
## 24059     35-40       6
## 24060     35-40       6
## 24061     40-50       5
## 24062     50-60       5
## 24063     30-35       7
## 24064     35-40       6
## 24065     18-30      10
## 24066     35-40       6
## 24067     30-35       7
## 24068     18-30      10
## 24069     18-30      10
## 24070     18-30      10
## 24071     18-30      10
## 24072     50-60       5
## 24073     18-30      10
## 24074     35-40       6
## 24075     18-30      10
## 24076     35-40       6
## 24077     18-30      10
## 24078     30-35       7
## 24079     35-40       6
## 24080     18-30      10
## 24081     30-35       7
## 24082     40-50       5
## 24083     40-50       5
## 24084     18-30      10
## 24085     35-40       6
## 24086     35-40       6
## 24087     18-30      10
## 24088     18-30      10
## 24089     18-30      10
## 24090     18-30      10
## 24091     18-30      10
## 24092     18-30      10
## 24093     18-30      10
## 24094     18-30      10
## 24095     18-30      10
## 24096     35-40       6
## 24097     30-35       7
## 24098     18-30      10
## 24099     18-30      10
## 24100     30-35       7
## 24101     18-30      10
## 24102     30-35       7
## 24103     30-35       7
## 24104     18-30      10
## 24105     35-40       6
## 24106     18-30      10
## 24107     35-40       6
## 24108     30-35       7
## 24109     18-30      10
## 24110     18-30      10
## 24111     18-30      10
## 24112     30-35       7
## 24113     18-30      10
## 24114     35-40       6
## 24115     30-35       7
## 24116     30-35       7
## 24117     18-30      10
## 24118     18-30      10
## 24119     30-35       7
## 24120     18-30      10
## 24121     18-30      10
## 24122     50-60       5
## 24123     18-30      10
## 24124     35-40       6
## 24125     18-30      10
## 24126     18-30      10
## 24127     18-30      10
## 24128     30-35       7
## 24129     18-30      10
## 24130     50-60       5
## 24131     18-30      10
## 24132     30-35       7
## 24133     18-30      10
## 24134     30-35       7
## 24135     18-30      10
## 24136     40-50       5
## 24137     18-30      10
## 24138     30-35       7
## 24139     40-50       5
## 24140     18-30      10
## 24141     30-35       7
## 24142     30-35       7
## 24143     30-35       7
## 24144     18-30      10
## 24145     18-30      10
## 24146     35-40       6
## 24147     18-30      10
## 24148     18-30      10
## 24149     18-30      10
## 24150     30-35       7
## 24151     35-40       6
## 24152     18-30      10
## 24153     18-30      10
## 24154     18-30      10
## 24155     18-30      10
## 24156     35-40       6
## 24157     40-50       5
## 24158     35-40       6
## 24159     35-40       6
## 24160     18-30      10
## 24161     18-30      10
## 24162     40-50       5
## 24163     30-35       7
## 24164     18-30      10
## 24165     40-50       5
## 24166     35-40       6
## 24167     18-30      10
## 24168     30-35       7
## 24169     35-40       6
## 24170     35-40       6
## 24171     18-30      10
## 24172       65+       4
## 24173     50-60       5
## 24174     30-35       7
## 24175     18-30      10
## 24176     18-30      10
## 24177     35-40       6
## 24178     18-30      10
## 24179     30-35       7
## 24180     35-40       6
## 24181     30-35       7
## 24182     30-35       7
## 24183     30-35       7
## 24184     40-50       5
## 24185     18-30      10
## 24186     18-30      10
## 24187     40-50       5
## 24188     18-30      10
## 24189     30-35       7
## 24190     50-60       5
## 24191     35-40       6
## 24192     18-30      10
## 24193     18-30      10
## 24194     35-40       6
## 24195     35-40       6
## 24196     18-30      10
## 24197     40-50       5
## 24198     18-30      10
## 24199     35-40       6
## 24200     30-35       7
## 24201     18-30      10
## 24202     18-30      10
## 24203     18-30      10
## 24204     40-50       5
## 24205     18-30      10
## 24206     18-30      10
## 24207     18-30      10
## 24208     18-30      10
## 24209     18-30      10
## 24210     35-40       6
## 24211     18-30      10
## 24212     35-40       6
## 24213     18-30      10
## 24214     18-30      10
## 24215     40-50       5
## 24216     18-30      10
## 24217     40-50       5
## 24218     18-30      10
## 24219     30-35       7
## 24220     18-30      10
## 24221     30-35       7
## 24222     18-30      10
## 24223     18-30      10
## 24224     35-40       6
## 24225     18-30      10
## 24226     18-30      10
## 24227     18-30      10
## 24228     18-30      10
## 24229     18-30      10
## 24230     50-60       5
## 24231     18-30      10
## 24232     35-40       6
## 24233     35-40       6
## 24234     18-30      10
## 24235     18-30      10
## 24236     30-35       7
## 24237     18-30      10
## 24238     35-40       6
## 24239     18-30      10
## 24240     35-40       6
## 24241     35-40       6
## 24242     18-30      10
## 24243     30-35       7
## 24244     50-60       5
## 24245     30-35       7
## 24246     18-30      10
## 24247     30-35       7
## 24248     35-40       6
## 24249     18-30      10
## 24250     40-50       5
## 24251     18-30      10
## 24252     18-30      10
## 24253     18-30      10
## 24254     18-30      10
## 24255     18-30      10
## 24256     18-30      10
## 24257     18-30      10
## 24258     35-40       6
## 24259     18-30      10
## 24260     40-50       5
## 24261       65+       4
## 24262     18-30      10
## 24263     40-50       5
## 24264     18-30      10
## 24265     18-30      10
## 24266     18-30      10
## 24267     18-30      10
## 24268     18-30      10
## 24269     18-30      10
## 24270     40-50       5
## 24271     18-30      10
## 24272     18-30      10
## 24273     30-35       7
## 24274     18-30      10
## 24275     30-35       7
## 24276     18-30      10
## 24277     40-50       5
## 24278     30-35       7
## 24279     18-30      10
## 24280     18-30      10
## 24281     18-30      10
## 24282     18-30      10
## 24283     18-30      10
## 24284     30-35       7
## 24285     30-35       7
## 24286     18-30      10
## 24287     30-35       7
## 24288     18-30      10
## 24289     30-35       7
## 24290     18-30      10
## 24291     40-50       5
## 24292     30-35       7
## 24293     30-35       7
## 24294     30-35       7
## 24295     18-30      10
## 24296     18-30      10
## 24297     40-50       5
## 24298     18-30      10
## 24299     18-30      10
## 24300     18-30      10
## 24301     18-30      10
## 24302     18-30      10
## 24303     30-35       7
## 24304     40-50       5
## 24305     18-30      10
## 24306     18-30      10
## 24307     30-35       7
## 24308     18-30      10
## 24309     30-35       7
## 24310     30-35       7
## 24311     18-30      10
## 24312     18-30      10
## 24313     18-30      10
## 24314     18-30      10
## 24315     18-30      10
## 24316     35-40       6
## 24317     35-40       6
## 24318     18-30      10
## 24319     18-30      10
## 24320     18-30      10
## 24321       65+       4
## 24322     18-30      10
## 24323       65+       4
## 24324     40-50       5
## 24325     30-35       7
## 24326     18-30      10
## 24327     40-50       5
## 24328     18-30      10
## 24329     30-35       7
## 24330     18-30      10
## 24331     18-30      10
## 24332     18-30      10
## 24333     30-35       7
## 24334     18-30      10
## 24335     35-40       6
## 24336     35-40       6
## 24337     18-30      10
## 24338     50-60       5
## 24339     40-50       5
## 24340     30-35       7
## 24341     30-35       7
## 24342     30-35       7
## 24343     40-50       5
## 24344     18-30      10
## 24345     30-35       7
## 24346     18-30      10
## 24347     18-30      10
## 24348     30-35       7
## 24349     18-30      10
## 24350     18-30      10
## 24351     18-30      10
## 24352     18-30      10
## 24353     18-30      10
## 24354     40-50       5
## 24355     30-35       7
## 24356     18-30      10
## 24357     30-35       7
## 24358     40-50       5
## 24359     40-50       5
## 24360     40-50       5
## 24361     30-35       7
## 24362     18-30      10
## 24363     30-35       7
## 24364     18-30      10
## 24365     18-30      10
## 24366     18-30      10
## 24367     18-30      10
## 24368     18-30      10
## 24369     40-50       5
## 24370     18-30      10
## 24371     30-35       7
## 24372     35-40       6
## 24373     40-50       5
## 24374     35-40       6
## 24375     18-30      10
## 24376     18-30      10
## 24377     18-30      10
## 24378     18-30      10
## 24379     30-35       7
## 24380     40-50       5
## 24381     18-30      10
## 24382     18-30      10
## 24383     35-40       6
## 24384     40-50       5
## 24385     18-30      10
## 24386     35-40       6
## 24387     18-30      10
## 24388     50-60       5
## 24389     50-60       5
## 24390     30-35       7
## 24391     35-40       6
## 24392     18-30      10
## 24393     18-30      10
## 24394     18-30      10
## 24395     18-30      10
## 24396     18-30      10
## 24397     18-30      10
## 24398     30-35       7
## 24399     18-30      10
## 24400     18-30      10
## 24401     18-30      10
## 24402     18-30      10
## 24403     18-30      10
## 24404     18-30      10
## 24405     18-30      10
## 24406     18-30      10
## 24407     30-35       7
## 24408     18-30      10
## 24409     18-30      10
## 24410     18-30      10
## 24411     18-30      10
## 24412     18-30      10
## 24413     30-35       7
## 24414     18-30      10
## 24415     18-30      10
## 24416     18-30      10
## 24417     18-30      10
## 24418     18-30      10
## 24419     40-50       5
## 24420     30-35       7
## 24421     40-50       5
## 24422     18-30      10
## 24423     18-30      10
## 24424     18-30      10
## 24425     35-40       6
## 24426     18-30      10
## 24427     50-60       5
## 24428     40-50       5
## 24429     18-30      10
## 24430     18-30      10
## 24431     40-50       5
## 24432     35-40       6
## 24433     30-35       7
## 24434     18-30      10
## 24435     40-50       5
## 24436       65+       4
## 24437     40-50       5
## 24438     18-30      10
## 24439     18-30      10
## 24440     18-30      10
## 24441     30-35       7
## 24442     18-30      10
## 24443     18-30      10
## 24444     30-35       7
## 24445     40-50       5
## 24446     40-50       5
## 24447     40-50       5
## 24448     35-40       6
## 24449     18-30      10
## 24450     18-30      10
## 24451     18-30      10
## 24452     40-50       5
## 24453     18-30      10
## 24454     18-30      10
## 24455     40-50       5
## 24456     18-30      10
## 24457     18-30      10
## 24458     30-35       7
## 24459     18-30      10
## 24460     35-40       6
## 24461     35-40       6
## 24462     18-30      10
## 24463     18-30      10
## 24464     30-35       7
## 24465     40-50       5
## 24466     18-30      10
## 24467     35-40       6
## 24468     50-60       5
## 24469     30-35       7
## 24470     40-50       5
## 24471     18-30      10
## 24472     30-35       7
## 24473     18-30      10
## 24474     40-50       5
## 24475     18-30      10
## 24476     30-35       7
## 24477     35-40       6
## 24478     18-30      10
## 24479     18-30      10
## 24480     18-30      10
## 24481     18-30      10
## 24482     40-50       5
## 24483     30-35       7
## 24484     18-30      10
## 24485     40-50       5
## 24486     35-40       6
## 24487     18-30      10
## 24488     18-30      10
## 24489     18-30      10
## 24490     30-35       7
## 24491     18-30      10
## 24492     35-40       6
## 24493     18-30      10
## 24494     18-30      10
## 24495     30-35       7
## 24496     18-30      10
## 24497     18-30      10
## 24498     18-30      10
## 24499     40-50       5
## 24500     18-30      10
## 24501     18-30      10
## 24502     18-30      10
## 24503     18-30      10
## 24504     30-35       7
## 24505     40-50       5
## 24506     40-50       5
## 24507     18-30      10
## 24508     18-30      10
## 24509     50-60       5
## 24510     30-35       7
## 24511     18-30      10
## 24512     35-40       6
## 24513     35-40       6
## 24514     18-30      10
## 24515     18-30      10
## 24516     18-30      10
## 24517     18-30      10
## 24518     18-30      10
## 24519     18-30      10
## 24520     18-30      10
## 24521     18-30      10
## 24522     40-50       5
## 24523     18-30      10
## 24524     18-30      10
## 24525     40-50       5
## 24526     18-30      10
## 24527     35-40       6
## 24528     18-30      10
## 24529     18-30      10
## 24530     35-40       6
## 24531     40-50       5
## 24532     30-35       7
## 24533     18-30      10
## 24534     35-40       6
## 24535     50-60       5
## 24536     18-30      10
## 24537     35-40       6
## 24538     18-30      10
## 24539     50-60       5
## 24540     18-30      10
## 24541       65+       4
## 24542     30-35       7
## 24543     35-40       6
## 24544     35-40       6
## 24545     18-30      10
## 24546     18-30      10
## 24547     18-30      10
## 24548     18-30      10
## 24549     18-30      10
## 24550     30-35       7
## 24551     35-40       6
## 24552     35-40       6
## 24553     30-35       7
## 24554     18-30      10
## 24555     40-50       5
## 24556     18-30      10
## 24557     30-35       7
## 24558     18-30      10
## 24559     18-30      10
## 24560     35-40       6
## 24561     18-30      10
## 24562     30-35       7
## 24563     18-30      10
## 24564     50-60       5
## 24565     18-30      10
## 24566     18-30      10
## 24567     18-30      10
## 24568     18-30      10
## 24569     30-35       7
## 24570     35-40       6
## 24571     18-30      10
## 24572     30-35       7
## 24573     18-30      10
## 24574     30-35       7
## 24575     30-35       7
## 24576     18-30      10
## 24577     18-30      10
## 24578     18-30      10
## 24579     18-30      10
## 24580     18-30      10
## 24581     18-30      10
## 24582     40-50       5
## 24583     18-30      10
## 24584     18-30      10
## 24585     35-40       6
## 24586     50-60       5
## 24587     30-35       7
## 24588     30-35       7
## 24589     30-35       7
## 24590     18-30      10
## 24591     35-40       6
## 24592     30-35       7
## 24593     30-35       7
## 24594     18-30      10
## 24595     35-40       6
## 24596     30-35       7
## 24597     40-50       5
## 24598     30-35       7
## 24599     35-40       6
## 24600     30-35       7
## 24601     30-35       7
## 24602     40-50       5
## 24603     30-35       7
## 24604     18-30      10
## 24605     40-50       5
## 24606     18-30      10
## 24607     18-30      10
## 24608     35-40       6
## 24609     18-30      10
## 24610     50-60       5
## 24611     30-35       7
## 24612     18-30      10
## 24613     35-40       6
## 24614     18-30      10
## 24615       65+       4
## 24616     18-30      10
## 24617     18-30      10
## 24618     18-30      10
## 24619     35-40       6
## 24620     18-30      10
## 24621     30-35       7
## 24622     18-30      10
## 24623     18-30      10
## 24624     40-50       5
## 24625     30-35       7
## 24626     35-40       6
## 24627     18-30      10
## 24628     30-35       7
## 24629     30-35       7
## 24630     40-50       5
## 24631     35-40       6
## 24632     40-50       5
## 24633     30-35       7
## 24634     50-60       5
## 24635     18-30      10
## 24636     30-35       7
## 24637     18-30      10
## 24638     18-30      10
## 24639     18-30      10
## 24640     18-30      10
## 24641     30-35       7
## 24642     40-50       5
## 24643     30-35       7
## 24644     18-30      10
## 24645     40-50       5
## 24646     50-60       5
## 24647     18-30      10
## 24648     35-40       6
## 24649     30-35       7
## 24650     18-30      10
## 24651     30-35       7
## 24652     18-30      10
## 24653     40-50       5
## 24654     18-30      10
## 24655     40-50       5
## 24656     50-60       5
## 24657     35-40       6
## 24658     30-35       7
## 24659     18-30      10
## 24660     50-60       5
## 24661     50-60       5
## 24662     40-50       5
## 24663     18-30      10
## 24664     30-35       7
## 24665     40-50       5
## 24666     18-30      10
## 24667     50-60       5
## 24668     35-40       6
## 24669     35-40       6
## 24670     50-60       5
## 24671     18-30      10
## 24672     18-30      10
## 24673     18-30      10
## 24674     18-30      10
## 24675     40-50       5
## 24676     18-30      10
## 24677     40-50       5
## 24678     40-50       5
## 24679     18-30      10
## 24680     18-30      10
## 24681     30-35       7
## 24682     18-30      10
## 24683     40-50       5
## 24684     18-30      10
## 24685     18-30      10
## 24686     35-40       6
## 24687     18-30      10
## 24688     40-50       5
## 24689     35-40       6
## 24690     18-30      10
## 24691     18-30      10
## 24692     18-30      10
## 24693     35-40       6
## 24694     18-30      10
## 24695     35-40       6
## 24696     18-30      10
## 24697     18-30      10
## 24698     18-30      10
## 24699     18-30      10
## 24700     40-50       5
## 24701     35-40       6
## 24702     18-30      10
## 24703     40-50       5
## 24704     18-30      10
## 24705     30-35       7
## 24706     40-50       5
## 24707     18-30      10
## 24708     18-30      10
## 24709     35-40       6
## 24710     18-30      10
## 24711     35-40       6
## 24712     18-30      10
## 24713     18-30      10
## 24714     40-50       5
## 24715     50-60       5
## 24716     18-30      10
## 24717     35-40       6
## 24718     30-35       7
## 24719     18-30      10
## 24720     18-30      10
## 24721     40-50       5
## 24722     40-50       5
## 24723     18-30      10
## 24724     30-35       7
## 24725     50-60       5
## 24726     18-30      10
## 24727     18-30      10
## 24728     18-30      10
## 24729     18-30      10
## 24730     40-50       5
## 24731     40-50       5
## 24732     18-30      10
## 24733     30-35       7
## 24734     35-40       6
## 24735     18-30      10
## 24736     35-40       6
## 24737     35-40       6
## 24738     35-40       6
## 24739     40-50       5
## 24740     40-50       5
## 24741     18-30      10
## 24742     18-30      10
## 24743     50-60       5
## 24744     18-30      10
## 24745     18-30      10
## 24746     18-30      10
## 24747     18-30      10
## 24748     18-30      10
## 24749     18-30      10
## 24750     18-30      10
## 24751     30-35       7
## 24752     40-50       5
## 24753     30-35       7
## 24754     30-35       7
## 24755     30-35       7
## 24756     30-35       7
## 24757     18-30      10
## 24758     35-40       6
## 24759     18-30      10
## 24760     18-30      10
## 24761     35-40       6
## 24762     18-30      10
## 24763     30-35       7
## 24764     18-30      10
## 24765     18-30      10
## 24766     35-40       6
## 24767     35-40       6
## 24768     18-30      10
## 24769     18-30      10
## 24770     18-30      10
## 24771     18-30      10
## 24772     30-35       7
## 24773     18-30      10
## 24774     40-50       5
## 24775     18-30      10
## 24776     30-35       7
## 24777     18-30      10
## 24778     30-35       7
## 24779     18-30      10
## 24780     18-30      10
## 24781     18-30      10
## 24782     18-30      10
## 24783     30-35       7
## 24784     18-30      10
## 24785     18-30      10
## 24786     30-35       7
## 24787     18-30      10
## 24788     18-30      10
## 24789     18-30      10
## 24790     18-30      10
## 24791     18-30      10
## 24792     18-30      10
## 24793     18-30      10
## 24794     50-60       5
## 24795     18-30      10
## 24796     18-30      10
## 24797     40-50       5
## 24798     50-60       5
## 24799     18-30      10
## 24800     18-30      10
## 24801     30-35       7
## 24802     40-50       5
## 24803     18-30      10
## 24804     18-30      10
## 24805     30-35       7
## 24806     18-30      10
## 24807     18-30      10
## 24808     18-30      10
## 24809     18-30      10
## 24810     35-40       6
## 24811     18-30      10
## 24812     18-30      10
## 24813     40-50       5
## 24814     18-30      10
## 24815     30-35       7
## 24816     18-30      10
## 24817     18-30      10
## 24818     18-30      10
## 24819     30-35       7
## 24820     35-40       6
## 24821     40-50       5
## 24822     18-30      10
## 24823     18-30      10
## 24824     18-30      10
## 24825     18-30      10
## 24826     35-40       6
## 24827     18-30      10
## 24828     18-30      10
## 24829     30-35       7
## 24830     18-30      10
## 24831     18-30      10
## 24832     30-35       7
## 24833     18-30      10
## 24834     18-30      10
## 24835     18-30      10
## 24836     18-30      10
## 24837     35-40       6
## 24838     18-30      10
## 24839     18-30      10
## 24840     18-30      10
## 24841     35-40       6
## 24842     18-30      10
## 24843     30-35       7
## 24844     35-40       6
## 24845     18-30      10
## 24846     18-30      10
## 24847     50-60       5
## 24848     35-40       6
## 24849     30-35       7
## 24850     18-30      10
## 24851     18-30      10
## 24852     18-30      10
## 24853     18-30      10
## 24854     30-35       7
## 24855     18-30      10
## 24856     35-40       6
## 24857     18-30      10
## 24858     18-30      10
## 24859       65+       4
## 24860     50-60       5
## 24861     35-40       6
## 24862     18-30      10
## 24863     18-30      10
## 24864     40-50       5
## 24865     35-40       6
## 24866     30-35       7
## 24867     35-40       6
## 24868     18-30      10
## 24869     18-30      10
## 24870     30-35       7
## 24871     35-40       6
## 24872     18-30      10
## 24873     18-30      10
## 24874     18-30      10
## 24875     35-40       6
## 24876     35-40       6
## 24877     18-30      10
## 24878     18-30      10
## 24879     50-60       5
## 24880     35-40       6
## 24881     18-30      10
## 24882     18-30      10
## 24883     18-30      10
## 24884     18-30      10
## 24885     18-30      10
## 24886     18-30      10
## 24887     18-30      10
## 24888     18-30      10
## 24889     40-50       5
## 24890     30-35       7
## 24891     50-60       5
## 24892     40-50       5
## 24893     18-30      10
## 24894     18-30      10
## 24895     50-60       5
## 24896     40-50       5
## 24897     18-30      10
## 24898     18-30      10
## 24899     18-30      10
## 24900     18-30      10
## 24901     18-30      10
## 24902     18-30      10
## 24903     18-30      10
## 24904     18-30      10
## 24905     18-30      10
## 24906     40-50       5
## 24907     30-35       7
## 24908     18-30      10
## 24909     18-30      10
## 24910     18-30      10
## 24911     18-30      10
## 24912     18-30      10
## 24913     30-35       7
## 24914     18-30      10
## 24915     18-30      10
## 24916     18-30      10
## 24917     18-30      10
## 24918     18-30      10
## 24919     18-30      10
## 24920     18-30      10
## 24921     40-50       5
## 24922     30-35       7
## 24923     40-50       5
## 24924     40-50       5
## 24925     40-50       5
## 24926     35-40       6
## 24927     50-60       5
## 24928     35-40       6
## 24929     35-40       6
## 24930     18-30      10
## 24931     18-30      10
## 24932     30-35       7
## 24933     18-30      10
## 24934     18-30      10
## 24935     18-30      10
## 24936     18-30      10
## 24937     30-35       7
## 24938     18-30      10
## 24939     18-30      10
## 24940     40-50       5
## 24941     40-50       5
## 24942     18-30      10
## 24943     18-30      10
## 24944     30-35       7
## 24945     30-35       7
## 24946     18-30      10
## 24947     18-30      10
## 24948     18-30      10
## 24949     18-30      10
## 24950     30-35       7
## 24951     18-30      10
## 24952     18-30      10
## 24953     35-40       6
## 24954     30-35       7
## 24955     18-30      10
## 24956     18-30      10
## 24957     18-30      10
## 24958     40-50       5
## 24959       65+       4
## 24960     18-30      10
## 24961     30-35       7
## 24962     18-30      10
## 24963     18-30      10
## 24964     18-30      10
## 24965     18-30      10
## 24966     18-30      10
## 24967     40-50       5
## 24968     18-30      10
## 24969     18-30      10
## 24970     18-30      10
## 24971     18-30      10
## 24972     18-30      10
## 24973     18-30      10
## 24974     35-40       6
## 24975     30-35       7
## 24976     18-30      10
## 24977     18-30      10
## 24978     40-50       5
## 24979     18-30      10
## 24980     18-30      10
## 24981     18-30      10
## 24982     18-30      10
## 24983     50-60       5
## 24984     18-30      10
## 24985     50-60       5
## 24986     18-30      10
## 24987     35-40       6
## 24988     18-30      10
## 24989     35-40       6
## 24990     30-35       7
## 24991     30-35       7
## 24992     35-40       6
## 24993     18-30      10
## 24994     18-30      10
## 24995     30-35       7
## 24996     18-30      10
## 24997     18-30      10
## 24998     35-40       6
## 24999     18-30      10
## 25000     50-60       5
## 25001     50-60       5
## 25002     30-35       7
## 25003     40-50       5
## 25004     35-40       6
## 25005     18-30      10
## 25006     30-35       7
## 25007     18-30      10
## 25008     40-50       5
## 25009     50-60       5
## 25010     35-40       6
## 25011     18-30      10
## 25012     40-50       5
## 25013     35-40       6
## 25014     18-30      10
## 25015     18-30      10
## 25016     18-30      10
## 25017     18-30      10
## 25018     40-50       5
## 25019     35-40       6
## 25020     35-40       6
## 25021     40-50       5
## 25022     40-50       5
## 25023     40-50       5
## 25024     40-50       5
## 25025     40-50       5
## 25026     18-30      10
## 25027     18-30      10
## 25028     30-35       7
## 25029     35-40       6
## 25030     18-30      10
## 25031     50-60       5
## 25032     18-30      10
## 25033     18-30      10
## 25034     35-40       6
## 25035     30-35       7
## 25036     40-50       5
## 25037     18-30      10
## 25038     18-30      10
## 25039     18-30      10
## 25040     18-30      10
## 25041     18-30      10
## 25042     30-35       7
## 25043     50-60       5
## 25044     30-35       7
## 25045     18-30      10
## 25046     35-40       6
## 25047     18-30      10
## 25048     30-35       7
## 25049     18-30      10
## 25050     50-60       5
## 25051     35-40       6
## 25052       65+       4
## 25053     30-35       7
## 25054       65+       4
## 25055     40-50       5
## 25056     30-35       7
## 25057     18-30      10
## 25058     40-50       5
## 25059     18-30      10
## 25060     30-35       7
## 25061     50-60       5
## 25062     50-60       5
## 25063     18-30      10
## 25064     50-60       5
## 25065     18-30      10
## 25066     18-30      10
## 25067     18-30      10
## 25068     18-30      10
## 25069     18-30      10
## 25070     50-60       5
## 25071     35-40       6
## 25072     35-40       6
## 25073     50-60       5
## 25074     30-35       7
## 25075     18-30      10
## 25076     18-30      10
## 25077     18-30      10
## 25078     40-50       5
## 25079     50-60       5
## 25080     35-40       6
## 25081     18-30      10
## 25082     18-30      10
## 25083     35-40       6
## 25084     30-35       7
## 25085     40-50       5
## 25086     18-30      10
## 25087     30-35       7
## 25088     35-40       6
## 25089     30-35       7
## 25090     18-30      10
## 25091     18-30      10
## 25092     18-30      10
## 25093     18-30      10
## 25094     30-35       7
## 25095     35-40       6
## 25096     18-30      10
## 25097     30-35       7
## 25098     50-60       5
## 25099     50-60       5
## 25100     18-30      10
## 25101     18-30      10
## 25102     30-35       7
## 25103     18-30      10
## 25104     18-30      10
## 25105     40-50       5
## 25106     35-40       6
## 25107     18-30      10
## 25108     18-30      10
## 25109     18-30      10
## 25110     40-50       5
## 25111     18-30      10
## 25112     18-30      10
## 25113     35-40       6
## 25114     18-30      10
## 25115     18-30      10
## 25116     50-60       5
## 25117     50-60       5
## 25118     30-35       7
## 25119     40-50       5
## 25120     18-30      10
## 25121     18-30      10
## 25122     40-50       5
## 25123     18-30      10
## 25124     18-30      10
## 25125     18-30      10
## 25126     18-30      10
## 25127     50-60       5
## 25128     30-35       7
## 25129     50-60       5
## 25130     18-30      10
## 25131     18-30      10
## 25132     18-30      10
## 25133     18-30      10
## 25134     30-35       7
## 25135     50-60       5
## 25136     18-30      10
## 25137     30-35       7
## 25138     40-50       5
## 25139     40-50       5
## 25140     18-30      10
## 25141     18-30      10
## 25142     35-40       6
## 25143     40-50       5
## 25144     35-40       6
## 25145     18-30      10
## 25146     18-30      10
## 25147     18-30      10
## 25148     30-35       7
## 25149     30-35       7
## 25150     40-50       5
## 25151     18-30      10
## 25152     30-35       7
## 25153     30-35       7
## 25154     40-50       5
## 25155     18-30      10
## 25156     18-30      10
## 25157     18-30      10
## 25158     50-60       5
## 25159     18-30      10
## 25160     18-30      10
## 25161     18-30      10
## 25162     18-30      10
## 25163     18-30      10
## 25164     18-30      10
## 25165     18-30      10
## 25166     18-30      10
## 25167     30-35       7
## 25168     18-30      10
## 25169     18-30      10
## 25170     18-30      10
## 25171     18-30      10
## 25172     40-50       5
## 25173     18-30      10
## 25174     18-30      10
## 25175     40-50       5
## 25176     18-30      10
## 25177     40-50       5
## 25178     18-30      10
## 25179     30-35       7
## 25180     30-35       7
## 25181     30-35       7
## 25182     18-30      10
## 25183     18-30      10
## 25184     40-50       5
## 25185     18-30      10
## 25186     35-40       6
## 25187     18-30      10
## 25188     18-30      10
## 25189     18-30      10
## 25190     30-35       7
## 25191     18-30      10
## 25192     30-35       7
## 25193     40-50       5
## 25194     18-30      10
## 25195     30-35       7
## 25196     50-60       5
## 25197     18-30      10
## 25198     18-30      10
## 25199     30-35       7
## 25200     50-60       5
## 25201     40-50       5
## 25202     30-35       7
## 25203     40-50       5
## 25204     35-40       6
## 25205     18-30      10
## 25206     35-40       6
## 25207     35-40       6
## 25208     50-60       5
## 25209     30-35       7
## 25210     35-40       6
## 25211     40-50       5
## 25212     18-30      10
## 25213     50-60       5
## 25214     30-35       7
## 25215     18-30      10
## 25216     35-40       6
## 25217     50-60       5
## 25218     35-40       6
## 25219     30-35       7
## 25220     18-30      10
## 25221     18-30      10
## 25222     18-30      10
## 25223     50-60       5
## 25224     40-50       5
## 25225     18-30      10
## 25226       65+       4
## 25227     18-30      10
## 25228     18-30      10
## 25229     18-30      10
## 25230     50-60       5
## 25231     18-30      10
## 25232     35-40       6
## 25233     18-30      10
## 25234     50-60       5
## 25235     40-50       5
## 25236     18-30      10
## 25237     18-30      10
## 25238     18-30      10
## 25239     30-35       7
## 25240     30-35       7
## 25241     18-30      10
## 25242     30-35       7
## 25243     35-40       6
## 25244     40-50       5
## 25245     30-35       7
## 25246     30-35       7
## 25247     50-60       5
## 25248     18-30      10
## 25249     35-40       6
## 25250     50-60       5
## 25251     50-60       5
## 25252     50-60       5
## 25253       65+       4
## 25254     18-30      10
## 25255     40-50       5
## 25256     40-50       5
## 25257     18-30      10
## 25258     40-50       5
## 25259     30-35       7
## 25260     50-60       5
## 25261     30-35       7
## 25262     18-30      10
## 25263     40-50       5
## 25264     18-30      10
## 25265     18-30      10
## 25266     35-40       6
## 25267     40-50       5
## 25268     50-60       5
## 25269     50-60       5
## 25270     18-30      10
## 25271     18-30      10
## 25272     18-30      10
## 25273     18-30      10
## 25274     18-30      10
## 25275     35-40       6
## 25276     18-30      10
## 25277     18-30      10
## 25278     18-30      10
## 25279     18-30      10
## 25280     18-30      10
## 25281     35-40       6
## 25282     18-30      10
## 25283     18-30      10
## 25284     30-35       7
## 25285     18-30      10
## 25286     30-35       7
## 25287     18-30      10
## 25288     18-30      10
## 25289     30-35       7
## 25290     50-60       5
## 25291     18-30      10
## 25292     40-50       5
## 25293     18-30      10
## 25294     18-30      10
## 25295     30-35       7
## 25296     30-35       7
## 25297     18-30      10
## 25298     40-50       5
## 25299     50-60       5
## 25300     35-40       6
## 25301     35-40       6
## 25302     18-30      10
## 25303     18-30      10
## 25304     35-40       6
## 25305     40-50       5
## 25306     18-30      10
## 25307     40-50       5
## 25308     40-50       5
## 25309     18-30      10
## 25310     18-30      10
## 25311     30-35       7
## 25312     35-40       6
## 25313     18-30      10
## 25314     40-50       5
## 25315     30-35       7
## 25316     30-35       7
## 25317     18-30      10
## 25318     18-30      10
## 25319     18-30      10
## 25320     18-30      10
## 25321     18-30      10
## 25322     18-30      10
## 25323     30-35       7
## 25324     35-40       6
## 25325       65+       4
## 25326     18-30      10
## 25327     18-30      10
## 25328     30-35       7
## 25329     30-35       7
## 25330     30-35       7
## 25331     30-35       7
## 25332     18-30      10
## 25333     18-30      10
## 25334     18-30      10
## 25335     18-30      10
## 25336     35-40       6
## 25337     30-35       7
## 25338     18-30      10
## 25339     35-40       6
## 25340     18-30      10
## 25341     30-35       7
## 25342     18-30      10
## 25343     35-40       6
## 25344     18-30      10
## 25345     18-30      10
## 25346     50-60       5
## 25347     35-40       6
## 25348     18-30      10
## 25349     18-30      10
## 25350     30-35       7
## 25351     18-30      10
## 25352     35-40       6
## 25353     18-30      10
## 25354     40-50       5
## 25355     30-35       7
## 25356     18-30      10
## 25357     30-35       7
## 25358     18-30      10
## 25359     18-30      10
## 25360     18-30      10
## 25361     18-30      10
## 25362     18-30      10
## 25363     30-35       7
## 25364     35-40       6
## 25365     18-30      10
## 25366     30-35       7
## 25367     30-35       7
## 25368     30-35       7
## 25369     18-30      10
## 25370     30-35       7
## 25371     18-30      10
## 25372     35-40       6
## 25373     18-30      10
## 25374     18-30      10
## 25375     18-30      10
## 25376     35-40       6
## 25377     18-30      10
## 25378     18-30      10
## 25379     30-35       7
## 25380     40-50       5
## 25381     30-35       7
## 25382     40-50       5
## 25383     18-30      10
## 25384     30-35       7
## 25385     30-35       7
## 25386     35-40       6
## 25387     40-50       5
## 25388     35-40       6
## 25389     18-30      10
## 25390     18-30      10
## 25391     35-40       6
## 25392     18-30      10
## 25393     18-30      10
## 25394     40-50       5
## 25395     30-35       7
## 25396     35-40       6
## 25397     18-30      10
## 25398     18-30      10
## 25399     30-35       7
## 25400     18-30      10
## 25401     18-30      10
## 25402     30-35       7
## 25403     35-40       6
## 25404     40-50       5
## 25405     30-35       7
## 25406     35-40       6
## 25407     35-40       6
## 25408     18-30      10
## 25409     18-30      10
## 25410     30-35       7
## 25411     18-30      10
## 25412     18-30      10
## 25413     35-40       6
## 25414     30-35       7
## 25415     30-35       7
## 25416     18-30      10
## 25417     18-30      10
## 25418     18-30      10
## 25419     18-30      10
## 25420     18-30      10
## 25421     18-30      10
## 25422     18-30      10
## 25423     18-30      10
## 25424     30-35       7
## 25425     40-50       5
## 25426     30-35       7
## 25427     30-35       7
## 25428     18-30      10
## 25429     18-30      10
## 25430     18-30      10
## 25431     18-30      10
## 25432     18-30      10
## 25433     18-30      10
## 25434     18-30      10
## 25435     18-30      10
## 25436     50-60       5
## 25437     35-40       6
## 25438     18-30      10
## 25439     35-40       6
## 25440     18-30      10
## 25441     30-35       7
## 25442     30-35       7
## 25443     18-30      10
## 25444     18-30      10
## 25445     40-50       5
## 25446     18-30      10
## 25447     30-35       7
## 25448     35-40       6
## 25449     30-35       7
## 25450     18-30      10
## 25451     18-30      10
## 25452     40-50       5
## 25453       65+       4
## 25454     18-30      10
## 25455     18-30      10
## 25456     40-50       5
## 25457     18-30      10
## 25458     18-30      10
## 25459     35-40       6
## 25460     50-60       5
## 25461     18-30      10
## 25462     18-30      10
## 25463     18-30      10
## 25464     18-30      10
## 25465     18-30      10
## 25466     30-35       7
## 25467     35-40       6
## 25468     40-50       5
## 25469     18-30      10
## 25470     40-50       5
## 25471     50-60       5
## 25472     40-50       5
## 25473     18-30      10
## 25474     30-35       7
## 25475     30-35       7
## 25476     30-35       7
## 25477     40-50       5
## 25478     18-30      10
## 25479     35-40       6
## 25480     18-30      10
## 25481     30-35       7
## 25482     40-50       5
## 25483     35-40       6
## 25484       65+       4
## 25485     50-60       5
## 25486     35-40       6
## 25487     40-50       5
## 25488     35-40       6
## 25489     18-30      10
## 25490     18-30      10
## 25491     30-35       7
## 25492     18-30      10
## 25493     50-60       5
## 25494     30-35       7
## 25495     30-35       7
## 25496     30-35       7
## 25497     50-60       5
## 25498     40-50       5
## 25499     40-50       5
## 25500     18-30      10
## 25501     18-30      10
## 25502     30-35       7
## 25503     18-30      10
## 25504     18-30      10
## 25505     30-35       7
## 25506     35-40       6
## 25507     30-35       7
## 25508     18-30      10
## 25509     30-35       7
## 25510     30-35       7
## 25511     30-35       7
## 25512     40-50       5
## 25513     18-30      10
## 25514     35-40       6
## 25515     18-30      10
## 25516     35-40       6
## 25517     40-50       5
## 25518     50-60       5
## 25519     18-30      10
## 25520     18-30      10
## 25521     18-30      10
## 25522     18-30      10
## 25523     18-30      10
## 25524     30-35       7
## 25525     30-35       7
## 25526     30-35       7
## 25527     18-30      10
## 25528     40-50       5
## 25529     30-35       7
## 25530     18-30      10
## 25531     18-30      10
## 25532     18-30      10
## 25533     18-30      10
## 25534     18-30      10
## 25535     35-40       6
## 25536     35-40       6
## 25537     50-60       5
## 25538     40-50       5
## 25539     18-30      10
## 25540     18-30      10
## 25541     30-35       7
## 25542     40-50       5
## 25543     35-40       6
## 25544     18-30      10
## 25545     40-50       5
## 25546     18-30      10
## 25547     18-30      10
## 25548     18-30      10
## 25549     35-40       6
## 25550     40-50       5
## 25551     50-60       5
## 25552     35-40       6
## 25553       65+       4
## 25554     18-30      10
## 25555     35-40       6
## 25556     30-35       7
## 25557     18-30      10
## 25558     40-50       5
## 25559     30-35       7
## 25560     50-60       5
## 25561     18-30      10
## 25562     40-50       5
## 25563     18-30      10
## 25564     18-30      10
## 25565     30-35       7
## 25566     18-30      10
## 25567     18-30      10
## 25568     35-40       6
## 25569     35-40       6
## 25570     18-30      10
## 25571     30-35       7
## 25572     40-50       5
## 25573     30-35       7
## 25574     35-40       6
## 25575     40-50       5
## 25576     30-35       7
## 25577     18-30      10
## 25578     40-50       5
## 25579     18-30      10
## 25580     35-40       6
## 25581     30-35       7
## 25582     30-35       7
## 25583     18-30      10
## 25584     18-30      10
## 25585     35-40       6
## 25586     18-30      10
## 25587     30-35       7
## 25588     40-50       5
## 25589     30-35       7
## 25590     30-35       7
## 25591     35-40       6
## 25592     50-60       5
## 25593     18-30      10
## 25594     40-50       5
## 25595     18-30      10
## 25596     40-50       5
## 25597     40-50       5
## 25598     35-40       6
## 25599     18-30      10
## 25600     35-40       6
## 25601     18-30      10
## 25602     30-35       7
## 25603     30-35       7
## 25604     30-35       7
## 25605     18-30      10
## 25606     18-30      10
## 25607     30-35       7
## 25608     35-40       6
## 25609     18-30      10
## 25610     18-30      10
## 25611     18-30      10
## 25612     35-40       6
## 25613     30-35       7
## 25614     30-35       7
## 25615     30-35       7
## 25616     18-30      10
## 25617       65+       4
## 25618     30-35       7
## 25619     18-30      10
## 25620     50-60       5
## 25621     35-40       6
## 25622     30-35       7
## 25623     35-40       6
## 25624     18-30      10
## 25625     35-40       6
## 25626     18-30      10
## 25627     18-30      10
## 25628     35-40       6
## 25629     30-35       7
## 25630     18-30      10
## 25631     18-30      10
## 25632     18-30      10
## 25633     40-50       5
## 25634     30-35       7
## 25635     40-50       5
## 25636     18-30      10
## 25637     30-35       7
## 25638     18-30      10
## 25639     18-30      10
## 25640     18-30      10
## 25641     40-50       5
## 25642     18-30      10
## 25643     18-30      10
## 25644     30-35       7
## 25645     40-50       5
## 25646     40-50       5
## 25647     18-30      10
## 25648     18-30      10
## 25649       65+       4
## 25650     18-30      10
## 25651     40-50       5
## 25652     30-35       7
## 25653     40-50       5
## 25654     30-35       7
## 25655     35-40       6
## 25656     35-40       6
## 25657     30-35       7
## 25658     18-30      10
## 25659     30-35       7
## 25660     35-40       6
## 25661     40-50       5
## 25662     18-30      10
## 25663     18-30      10
## 25664     30-35       7
## 25665     30-35       7
## 25666     18-30      10
## 25667     40-50       5
## 25668     18-30      10
## 25669     30-35       7
## 25670     18-30      10
## 25671     35-40       6
## 25672     30-35       7
## 25673     40-50       5
## 25674     18-30      10
## 25675     18-30      10
## 25676     35-40       6
## 25677     18-30      10
## 25678     18-30      10
## 25679     30-35       7
## 25680     30-35       7
## 25681     18-30      10
## 25682     40-50       5
## 25683     18-30      10
## 25684     18-30      10
## 25685     30-35       7
## 25686     30-35       7
## 25687     18-30      10
## 25688     18-30      10
## 25689     40-50       5
## 25690     35-40       6
## 25691     30-35       7
## 25692     18-30      10
## 25693     30-35       7
## 25694     18-30      10
## 25695     50-60       5
## 25696     18-30      10
## 25697     30-35       7
## 25698     40-50       5
## 25699     18-30      10
## 25700     50-60       5
## 25701     18-30      10
## 25702     18-30      10
## 25703     18-30      10
## 25704     18-30      10
## 25705     18-30      10
## 25706     18-30      10
## 25707     50-60       5
## 25708     40-50       5
## 25709     18-30      10
## 25710     40-50       5
## 25711     30-35       7
## 25712     18-30      10
## 25713     18-30      10
## 25714     30-35       7
## 25715     30-35       7
## 25716     40-50       5
## 25717     35-40       6
## 25718     18-30      10
## 25719     30-35       7
## 25720     18-30      10
## 25721     18-30      10
## 25722     18-30      10
## 25723     30-35       7
## 25724     40-50       5
## 25725     18-30      10
## 25726     18-30      10
## 25727     18-30      10
## 25728     30-35       7
## 25729     18-30      10
## 25730     40-50       5
## 25731     18-30      10
## 25732     18-30      10
## 25733     18-30      10
## 25734     35-40       6
## 25735     30-35       7
## 25736     18-30      10
## 25737     35-40       6
## 25738     30-35       7
## 25739     40-50       5
## 25740     30-35       7
## 25741     35-40       6
## 25742     50-60       5
## 25743     18-30      10
## 25744     40-50       5
## 25745     18-30      10
## 25746     18-30      10
## 25747     40-50       5
## 25748     30-35       7
## 25749     30-35       7
## 25750     18-30      10
## 25751     35-40       6
## 25752     18-30      10
## 25753     30-35       7
## 25754     18-30      10
## 25755     18-30      10
## 25756     18-30      10
## 25757     30-35       7
## 25758     18-30      10
## 25759     40-50       5
## 25760     18-30      10
## 25761     18-30      10
## 25762     18-30      10
## 25763     30-35       7
## 25764     18-30      10
## 25765     30-35       7
## 25766     40-50       5
## 25767     18-30      10
## 25768     30-35       7
## 25769     50-60       5
## 25770     40-50       5
## 25771     35-40       6
## 25772     18-30      10
## 25773     18-30      10
## 25774     18-30      10
## 25775     18-30      10
## 25776     35-40       6
## 25777     35-40       6
## 25778     40-50       5
## 25779     30-35       7
## 25780     40-50       5
## 25781     30-35       7
## 25782     35-40       6
## 25783     40-50       5
## 25784     35-40       6
## 25785     40-50       5
## 25786     30-35       7
## 25787     18-30      10
## 25788     18-30      10
## 25789     30-35       7
## 25790     35-40       6
## 25791     18-30      10
## 25792     35-40       6
## 25793     30-35       7
## 25794     18-30      10
## 25795     40-50       5
## 25796     50-60       5
## 25797     18-30      10
## 25798     30-35       7
## 25799     18-30      10
## 25800     40-50       5
## 25801     18-30      10
## 25802     35-40       6
## 25803     18-30      10
## 25804     18-30      10
## 25805     50-60       5
## 25806     18-30      10
## 25807     40-50       5
## 25808     30-35       7
## 25809     18-30      10
## 25810     18-30      10
## 25811     50-60       5
## 25812     30-35       7
## 25813     18-30      10
## 25814     18-30      10
## 25815     18-30      10
## 25816     18-30      10
## 25817     18-30      10
## 25818     18-30      10
## 25819     30-35       7
## 25820     30-35       7
## 25821     40-50       5
## 25822     18-30      10
## 25823     40-50       5
## 25824     18-30      10
## 25825     30-35       7
## 25826     40-50       5
## 25827     40-50       5
## 25828     18-30      10
## 25829     30-35       7
## 25830     35-40       6
## 25831     35-40       6
## 25832     18-30      10
## 25833     35-40       6
## 25834     30-35       7
## 25835     35-40       6
## 25836     18-30      10
## 25837     35-40       6
## 25838     30-35       7
## 25839     50-60       5
## 25840     35-40       6
## 25841     30-35       7
## 25842     30-35       7
## 25843     35-40       6
## 25844     35-40       6
## 25845     35-40       6
## 25846     40-50       5
## 25847     35-40       6
## 25848     18-30      10
## 25849     30-35       7
## 25850     35-40       6
## 25851     18-30      10
## 25852     35-40       6
## 25853     18-30      10
## 25854     18-30      10
## 25855     30-35       7
## 25856     18-30      10
## 25857     30-35       7
## 25858     18-30      10
## 25859     40-50       5
## 25860     40-50       5
## 25861     18-30      10
## 25862     30-35       7
## 25863     30-35       7
## 25864     18-30      10
## 25865     18-30      10
## 25866     18-30      10
## 25867     18-30      10
## 25868     18-30      10
## 25869     30-35       7
## 25870     30-35       7
## 25871     18-30      10
## 25872     35-40       6
## 25873     35-40       6
## 25874     18-30      10
## 25875     30-35       7
## 25876     18-30      10
## 25877     18-30      10
## 25878     18-30      10
## 25879     18-30      10
## 25880     30-35       7
## 25881     18-30      10
## 25882     18-30      10
## 25883     18-30      10
## 25884     35-40       6
## 25885     30-35       7
## 25886     40-50       5
## 25887     18-30      10
## 25888     30-35       7
## 25889     30-35       7
## 25890     30-35       7
## 25891     18-30      10
## 25892     18-30      10
## 25893     40-50       5
## 25894     18-30      10
## 25895     30-35       7
## 25896     30-35       7
## 25897     35-40       6
## 25898     40-50       5
## 25899     30-35       7
## 25900     40-50       5
## 25901     30-35       7
## 25902     18-30      10
## 25903     18-30      10
## 25904     18-30      10
## 25905     18-30      10
## 25906     18-30      10
## 25907     35-40       6
## 25908     40-50       5
## 25909     18-30      10
## 25910     30-35       7
## 25911     18-30      10
## 25912     18-30      10
## 25913     30-35       7
## 25914     18-30      10
## 25915     18-30      10
## 25916     18-30      10
## 25917     35-40       6
## 25918     50-60       5
## 25919     18-30      10
## 25920     50-60       5
## 25921     30-35       7
## 25922     30-35       7
## 25923     18-30      10
## 25924     18-30      10
## 25925     35-40       6
## 25926     18-30      10
## 25927     40-50       5
## 25928     40-50       5
## 25929     18-30      10
## 25930     18-30      10
## 25931     18-30      10
## 25932     18-30      10
## 25933     18-30      10
## 25934     18-30      10
## 25935     18-30      10
## 25936     40-50       5
## 25937     40-50       5
## 25938     40-50       5
## 25939     18-30      10
## 25940     30-35       7
## 25941     40-50       5
## 25942     18-30      10
## 25943     18-30      10
## 25944     18-30      10
## 25945     18-30      10
## 25946     18-30      10
## 25947     18-30      10
## 25948     50-60       5
## 25949     30-35       7
## 25950     18-30      10
## 25951     18-30      10
## 25952     40-50       5
## 25953     18-30      10
## 25954     50-60       5
## 25955     18-30      10
## 25956     30-35       7
## 25957     18-30      10
## 25958     18-30      10
## 25959     50-60       5
## 25960     50-60       5
## 25961     35-40       6
## 25962     18-30      10
## 25963     30-35       7
## 25964     50-60       5
## 25965     18-30      10
## 25966     30-35       7
## 25967     30-35       7
## 25968     18-30      10
## 25969     30-35       7
## 25970     18-30      10
## 25971     18-30      10
## 25972     40-50       5
## 25973     18-30      10
## 25974     35-40       6
## 25975     30-35       7
## 25976     35-40       6
## 25977     18-30      10
## 25978     35-40       6
## 25979     40-50       5
## 25980     18-30      10
## 25981     18-30      10
## 25982     30-35       7
## 25983     18-30      10
## 25984     18-30      10
## 25985     18-30      10
## 25986     18-30      10
## 25987     18-30      10
## 25988     18-30      10
## 25989     18-30      10
## 25990     30-35       7
## 25991     50-60       5
## 25992     50-60       5
## 25993     50-60       5
## 25994     50-60       5
## 25995     35-40       6
## 25996     18-30      10
## 25997     40-50       5
## 25998     18-30      10
## 25999     40-50       5
## 26000     40-50       5
## 26001     18-30      10
## 26002     30-35       7
## 26003     18-30      10
## 26004     18-30      10
## 26005     18-30      10
## 26006       65+       4
## 26007     50-60       5
## 26008     18-30      10
## 26009     35-40       6
## 26010     30-35       7
## 26011     30-35       7
## 26012     18-30      10
## 26013     40-50       5
## 26014     18-30      10
## 26015     35-40       6
## 26016     30-35       7
## 26017     18-30      10
## 26018     35-40       6
## 26019     18-30      10
## 26020     18-30      10
## 26021     18-30      10
## 26022     18-30      10
## 26023     18-30      10
## 26024     40-50       5
## 26025     35-40       6
## 26026     18-30      10
## 26027     35-40       6
## 26028     18-30      10
## 26029     18-30      10
## 26030     40-50       5
## 26031     35-40       6
## 26032     40-50       5
## 26033     40-50       5
## 26034     30-35       7
## 26035     30-35       7
## 26036     18-30      10
## 26037     18-30      10
## 26038     18-30      10
## 26039     18-30      10
## 26040     40-50       5
## 26041     30-35       7
## 26042     18-30      10
## 26043     18-30      10
## 26044     18-30      10
## 26045     18-30      10
## 26046     18-30      10
## 26047     30-35       7
## 26048     18-30      10
## 26049     35-40       6
## 26050     40-50       5
## 26051     35-40       6
## 26052     35-40       6
## 26053       65+       4
## 26054     18-30      10
## 26055     18-30      10
## 26056     18-30      10
## 26057     35-40       6
## 26058     40-50       5
## 26059     18-30      10
## 26060     18-30      10
## 26061     40-50       5
## 26062     18-30      10
## 26063     40-50       5
## 26064     18-30      10
## 26065     18-30      10
## 26066     35-40       6
## 26067     30-35       7
## 26068     18-30      10
## 26069     40-50       5
## 26070     18-30      10
## 26071     18-30      10
## 26072     18-30      10
## 26073     18-30      10
## 26074     30-35       7
## 26075     18-30      10
## 26076     30-35       7
## 26077     18-30      10
## 26078     35-40       6
## 26079     30-35       7
## 26080     30-35       7
## 26081     18-30      10
## 26082     18-30      10
## 26083     18-30      10
## 26084     18-30      10
## 26085     18-30      10
## 26086       65+       4
## 26087     18-30      10
## 26088     30-35       7
## 26089     40-50       5
## 26090     18-30      10
## 26091     50-60       5
## 26092     18-30      10
## 26093     40-50       5
## 26094     40-50       5
## 26095     18-30      10
## 26096     35-40       6
## 26097     18-30      10
## 26098     18-30      10
## 26099     30-35       7
## 26100     18-30      10
## 26101     18-30      10
## 26102     40-50       5
## 26103     30-35       7
## 26104     18-30      10
## 26105     18-30      10
## 26106     30-35       7
## 26107     30-35       7
## 26108     18-30      10
## 26109     18-30      10
## 26110     35-40       6
## 26111     35-40       6
## 26112     40-50       5
## 26113     35-40       6
## 26114     18-30      10
## 26115     18-30      10
## 26116     30-35       7
## 26117     30-35       7
## 26118     18-30      10
## 26119     18-30      10
## 26120     30-35       7
## 26121     40-50       5
## 26122     30-35       7
## 26123     18-30      10
## 26124     18-30      10
## 26125     40-50       5
## 26126     18-30      10
## 26127     30-35       7
## 26128     18-30      10
## 26129     18-30      10
## 26130     18-30      10
## 26131     30-35       7
## 26132       65+       4
## 26133     30-35       7
## 26134     35-40       6
## 26135     18-30      10
## 26136     18-30      10
## 26137     40-50       5
## 26138     30-35       7
## 26139     40-50       5
## 26140     30-35       7
## 26141     18-30      10
## 26142     40-50       5
## 26143     35-40       6
## 26144     30-35       7
## 26145     18-30      10
## 26146     40-50       5
## 26147     35-40       6
## 26148     30-35       7
## 26149     35-40       6
## 26150     18-30      10
## 26151     35-40       6
## 26152     40-50       5
## 26153     18-30      10
## 26154     18-30      10
## 26155     18-30      10
## 26156     18-30      10
## 26157     18-30      10
## 26158     35-40       6
## 26159     18-30      10
## 26160     18-30      10
## 26161     40-50       5
## 26162     30-35       7
## 26163     18-30      10
## 26164     18-30      10
## 26165     18-30      10
## 26166     18-30      10
## 26167     18-30      10
## 26168     30-35       7
## 26169     50-60       5
## 26170     40-50       5
## 26171     18-30      10
## 26172     18-30      10
## 26173     35-40       6
## 26174     30-35       7
## 26175     40-50       5
## 26176     35-40       6
## 26177     18-30      10
## 26178     40-50       5
## 26179     30-35       7
## 26180     18-30      10
## 26181     30-35       7
## 26182     18-30      10
## 26183     40-50       5
## 26184     18-30      10
## 26185     50-60       5
## 26186     18-30      10
## 26187     18-30      10
## 26188     50-60       5
## 26189     35-40       6
## 26190     18-30      10
## 26191     35-40       6
## 26192     30-35       7
## 26193     35-40       6
## 26194     18-30      10
## 26195     30-35       7
## 26196     30-35       7
## 26197     50-60       5
## 26198     18-30      10
## 26199     40-50       5
## 26200     40-50       5
## 26201     18-30      10
## 26202     18-30      10
## 26203     18-30      10
## 26204     18-30      10
## 26205     30-35       7
## 26206     40-50       5
## 26207     18-30      10
## 26208     18-30      10
## 26209     35-40       6
## 26210     40-50       5
## 26211     18-30      10
## 26212     18-30      10
## 26213     18-30      10
## 26214     18-30      10
## 26215     50-60       5
## 26216     18-30      10
## 26217     40-50       5
## 26218     50-60       5
## 26219     30-35       7
## 26220     35-40       6
## 26221     30-35       7
## 26222     30-35       7
## 26223     18-30      10
## 26224     40-50       5
## 26225     18-30      10
## 26226     18-30      10
## 26227     40-50       5
## 26228     18-30      10
## 26229     30-35       7
## 26230     30-35       7
## 26231     18-30      10
## 26232     18-30      10
## 26233     40-50       5
## 26234     18-30      10
## 26235       65+       4
## 26236     30-35       7
## 26237     30-35       7
## 26238     18-30      10
## 26239     18-30      10
## 26240     18-30      10
## 26241     18-30      10
## 26242     18-30      10
## 26243     18-30      10
## 26244     40-50       5
## 26245     30-35       7
## 26246     35-40       6
## 26247     30-35       7
## 26248     35-40       6
## 26249     18-30      10
## 26250     18-30      10
## 26251     35-40       6
## 26252     18-30      10
## 26253     18-30      10
## 26254     30-35       7
## 26255       65+       4
## 26256     40-50       5
## 26257     18-30      10
## 26258     40-50       5
## 26259     30-35       7
## 26260     35-40       6
## 26261     18-30      10
## 26262     35-40       6
## 26263     18-30      10
## 26264     40-50       5
## 26265     40-50       5
## 26266     18-30      10
## 26267     40-50       5
## 26268     18-30      10
## 26269     18-30      10
## 26270     18-30      10
## 26271     18-30      10
## 26272     35-40       6
## 26273     35-40       6
## 26274       65+       4
## 26275     30-35       7
## 26276     30-35       7
## 26277     35-40       6
## 26278     30-35       7
## 26279     18-30      10
## 26280     35-40       6
## 26281     18-30      10
## 26282     18-30      10
## 26283     18-30      10
## 26284     18-30      10
## 26285     35-40       6
## 26286       65+       4
## 26287     40-50       5
## 26288     18-30      10
## 26289     18-30      10
## 26290     30-35       7
## 26291     40-50       5
## 26292     18-30      10
## 26293     18-30      10
## 26294     18-30      10
## 26295     18-30      10
## 26296     18-30      10
## 26297     30-35       7
## 26298     18-30      10
## 26299     30-35       7
## 26300     18-30      10
## 26301     40-50       5
## 26302     18-30      10
## 26303     18-30      10
## 26304     18-30      10
## 26305     18-30      10
## 26306     18-30      10
## 26307     18-30      10
## 26308     18-30      10
## 26309     18-30      10
## 26310     30-35       7
## 26311     30-35       7
## 26312     18-30      10
## 26313     18-30      10
## 26314     18-30      10
## 26315     18-30      10
## 26316     18-30      10
## 26317     18-30      10
## 26318     18-30      10
## 26319     18-30      10
## 26320     18-30      10
## 26321     30-35       7
## 26322       65+       4
## 26323     35-40       6
## 26324     30-35       7
## 26325     50-60       5
## 26326     18-30      10
## 26327       65+       4
## 26328     40-50       5
## 26329     35-40       6
## 26330     30-35       7
## 26331     18-30      10
## 26332     18-30      10
## 26333     35-40       6
## 26334     35-40       6
## 26335     35-40       6
## 26336     18-30      10
## 26337     18-30      10
## 26338     35-40       6
## 26339     18-30      10
## 26340     18-30      10
## 26341     18-30      10
## 26342     40-50       5
## 26343     18-30      10
## 26344     18-30      10
## 26345     40-50       5
## 26346     18-30      10
## 26347     18-30      10
## 26348     18-30      10
## 26349     18-30      10
## 26350     18-30      10
## 26351     30-35       7
## 26352     18-30      10
## 26353     35-40       6
## 26354     18-30      10
## 26355     40-50       5
## 26356     30-35       7
## 26357     30-35       7
## 26358     30-35       7
## 26359     40-50       5
## 26360     18-30      10
## 26361     40-50       5
## 26362     30-35       7
## 26363     18-30      10
## 26364     40-50       5
## 26365     18-30      10
## 26366     18-30      10
## 26367     30-35       7
## 26368     18-30      10
## 26369     50-60       5
## 26370     40-50       5
## 26371     18-30      10
## 26372     40-50       5
## 26373     18-30      10
## 26374     18-30      10
## 26375     18-30      10
## 26376     40-50       5
## 26377     30-35       7
## 26378     18-30      10
## 26379     35-40       6
## 26380     40-50       5
## 26381     35-40       6
## 26382     30-35       7
## 26383     18-30      10
## 26384     18-30      10
## 26385     40-50       5
## 26386     18-30      10
## 26387     18-30      10
## 26388     18-30      10
## 26389     18-30      10
## 26390     18-30      10
## 26391     30-35       7
## 26392     30-35       7
## 26393     18-30      10
## 26394     18-30      10
## 26395     18-30      10
## 26396     30-35       7
## 26397     18-30      10
## 26398     18-30      10
## 26399     18-30      10
## 26400     50-60       5
## 26401     18-30      10
## 26402     18-30      10
## 26403     18-30      10
## 26404     18-30      10
## 26405     18-30      10
## 26406     50-60       5
## 26407     40-50       5
## 26408     18-30      10
## 26409     40-50       5
## 26410     35-40       6
## 26411     18-30      10
## 26412     18-30      10
## 26413     30-35       7
## 26414     18-30      10
## 26415     18-30      10
## 26416     18-30      10
## 26417     30-35       7
## 26418     40-50       5
## 26419     40-50       5
## 26420     18-30      10
## 26421     18-30      10
## 26422     35-40       6
## 26423     50-60       5
## 26424     18-30      10
## 26425     18-30      10
## 26426     18-30      10
## 26427     18-30      10
## 26428     18-30      10
## 26429     18-30      10
## 26430       65+       4
## 26431     50-60       5
## 26432     18-30      10
## 26433     18-30      10
## 26434     18-30      10
## 26435     40-50       5
## 26436     18-30      10
## 26437     35-40       6
## 26438     40-50       5
## 26439     35-40       6
## 26440     18-30      10
## 26441     40-50       5
## 26442     18-30      10
## 26443     18-30      10
## 26444     18-30      10
## 26445     18-30      10
## 26446     30-35       7
## 26447     30-35       7
## 26448     18-30      10
## 26449       65+       4
## 26450     40-50       5
## 26451     50-60       5
## 26452     40-50       5
## 26453       65+       4
## 26454     18-30      10
## 26455     18-30      10
## 26456     30-35       7
## 26457     40-50       5
## 26458     30-35       7
## 26459     30-35       7
## 26460     18-30      10
## 26461     30-35       7
## 26462     18-30      10
## 26463     50-60       5
## 26464     50-60       5
## 26465     40-50       5
## 26466     40-50       5
## 26467     18-30      10
## 26468     18-30      10
## 26469     18-30      10
## 26470     18-30      10
## 26471     30-35       7
## 26472     40-50       5
## 26473     18-30      10
## 26474     30-35       7
## 26475     35-40       6
## 26476     18-30      10
## 26477     40-50       5
## 26478     18-30      10
## 26479     35-40       6
## 26480     18-30      10
## 26481     30-35       7
## 26482     30-35       7
## 26483     18-30      10
## 26484     18-30      10
## 26485       65+       4
## 26486     35-40       6
## 26487     40-50       5
## 26488     18-30      10
## 26489     18-30      10
## 26490     30-35       7
## 26491     18-30      10
## 26492     18-30      10
## 26493     35-40       6
## 26494     18-30      10
## 26495     18-30      10
## 26496     18-30      10
## 26497     40-50       5
## 26498     50-60       5
## 26499     18-30      10
## 26500     18-30      10
## 26501     35-40       6
## 26502     18-30      10
## 26503     18-30      10
## 26504     18-30      10
## 26505     18-30      10
## 26506     18-30      10
## 26507       65+       4
## 26508     18-30      10
## 26509     18-30      10
## 26510     18-30      10
## 26511     35-40       6
## 26512     18-30      10
## 26513     18-30      10
## 26514     18-30      10
## 26515     30-35       7
## 26516     18-30      10
## 26517     30-35       7
## 26518     30-35       7
## 26519     40-50       5
## 26520     35-40       6
## 26521     35-40       6
## 26522     18-30      10
## 26523     40-50       5
## 26524     40-50       5
## 26525     35-40       6
## 26526     40-50       5
## 26527     18-30      10
## 26528     40-50       5
## 26529     18-30      10
## 26530     18-30      10
## 26531     18-30      10
## 26532     35-40       6
## 26533     30-35       7
## 26534     30-35       7
## 26535     40-50       5
## 26536     50-60       5
## 26537     18-30      10
## 26538     35-40       6
## 26539     18-30      10
## 26540     18-30      10
## 26541     18-30      10
## 26542     40-50       5
## 26543     40-50       5
## 26544     40-50       5
## 26545     18-30      10
## 26546     18-30      10
## 26547     40-50       5
## 26548     18-30      10
## 26549     30-35       7
## 26550     18-30      10
## 26551     18-30      10
## 26552     18-30      10
## 26553     18-30      10
## 26554     18-30      10
## 26555     18-30      10
## 26556     30-35       7
## 26557     18-30      10
## 26558     18-30      10
## 26559     18-30      10
## 26560     40-50       5
## 26561     18-30      10
## 26562     35-40       6
## 26563     40-50       5
## 26564     30-35       7
## 26565     18-30      10
## 26566     18-30      10
## 26567     18-30      10
## 26568     18-30      10
## 26569     18-30      10
## 26570     18-30      10
## 26571     35-40       6
## 26572     18-30      10
## 26573     18-30      10
## 26574     35-40       6
## 26575     30-35       7
## 26576     40-50       5
## 26577       65+       4
## 26578     35-40       6
## 26579     40-50       5
## 26580     50-60       5
## 26581     30-35       7
## 26582     18-30      10
## 26583     18-30      10
## 26584     18-30      10
## 26585     18-30      10
## 26586     30-35       7
## 26587     18-30      10
## 26588     30-35       7
## 26589     18-30      10
## 26590     18-30      10
## 26591     18-30      10
## 26592     18-30      10
## 26593     30-35       7
## 26594     18-30      10
## 26595     18-30      10
## 26596     30-35       7
## 26597     18-30      10
## 26598     18-30      10
## 26599     18-30      10
## 26600     18-30      10
## 26601     35-40       6
## 26602     50-60       5
## 26603     18-30      10
## 26604     18-30      10
## 26605     18-30      10
## 26606     18-30      10
## 26607     18-30      10
## 26608     18-30      10
## 26609     18-30      10
## 26610     40-50       5
## 26611     35-40       6
## 26612     30-35       7
## 26613     18-30      10
## 26614     18-30      10
## 26615     35-40       6
## 26616     18-30      10
## 26617     18-30      10
## 26618     18-30      10
## 26619     18-30      10
## 26620     40-50       5
## 26621     30-35       7
## 26622     18-30      10
## 26623     18-30      10
## 26624     30-35       7
## 26625     30-35       7
## 26626     18-30      10
## 26627     18-30      10
## 26628     18-30      10
## 26629     18-30      10
## 26630     18-30      10
## 26631     18-30      10
## 26632     18-30      10
## 26633     40-50       5
## 26634     18-30      10
## 26635     30-35       7
## 26636     18-30      10
## 26637     40-50       5
## 26638     35-40       6
## 26639     18-30      10
## 26640     18-30      10
## 26641     40-50       5
## 26642     50-60       5
## 26643     40-50       5
## 26644     18-30      10
## 26645     30-35       7
## 26646     30-35       7
## 26647     18-30      10
## 26648     18-30      10
## 26649     18-30      10
## 26650     18-30      10
## 26651     18-30      10
## 26652     40-50       5
## 26653     35-40       6
## 26654     40-50       5
## 26655     18-30      10
## 26656     30-35       7
## 26657     40-50       5
## 26658     18-30      10
## 26659     30-35       7
## 26660     18-30      10
## 26661     18-30      10
## 26662     18-30      10
## 26663     35-40       6
## 26664     18-30      10
## 26665     30-35       7
## 26666     18-30      10
## 26667     30-35       7
## 26668     18-30      10
## 26669     18-30      10
## 26670     18-30      10
## 26671     35-40       6
## 26672     18-30      10
## 26673     40-50       5
## 26674     40-50       5
## 26675     50-60       5
## 26676     18-30      10
## 26677     18-30      10
## 26678     40-50       5
## 26679     35-40       6
## 26680     18-30      10
## 26681     40-50       5
## 26682     18-30      10
## 26683     18-30      10
## 26684     50-60       5
## 26685       65+       4
## 26686     35-40       6
## 26687     18-30      10
## 26688     18-30      10
## 26689     40-50       5
## 26690     35-40       6
## 26691     35-40       6
## 26692     35-40       6
## 26693     18-30      10
## 26694     35-40       6
## 26695     35-40       6
## 26696     35-40       6
## 26697     40-50       5
## 26698     18-30      10
## 26699     18-30      10
## 26700     18-30      10
## 26701     30-35       7
## 26702     18-30      10
## 26703     18-30      10
## 26704       65+       4
## 26705     40-50       5
## 26706     30-35       7
## 26707     30-35       7
## 26708     30-35       7
## 26709     18-30      10
## 26710     18-30      10
## 26711     50-60       5
## 26712     18-30      10
## 26713     18-30      10
## 26714     18-30      10
## 26715     18-30      10
## 26716     30-35       7
## 26717     30-35       7
## 26718     18-30      10
## 26719     18-30      10
## 26720     18-30      10
## 26721     18-30      10
## 26722     18-30      10
## 26723     18-30      10
## 26724     18-30      10
## 26725     18-30      10
## 26726     18-30      10
## 26727     18-30      10
## 26728     35-40       6
## 26729     18-30      10
## 26730     18-30      10
## 26731     30-35       7
## 26732     18-30      10
## 26733     18-30      10
## 26734     18-30      10
## 26735     35-40       6
## 26736     40-50       5
## 26737     30-35       7
## 26738     18-30      10
## 26739     18-30      10
## 26740     18-30      10
## 26741     18-30      10
## 26742     18-30      10
## 26743     18-30      10
## 26744     18-30      10
## 26745     30-35       7
## 26746     18-30      10
## 26747     30-35       7
## 26748     18-30      10
## 26749     30-35       7
## 26750     18-30      10
## 26751       65+       4
## 26752     18-30      10
## 26753     40-50       5
## 26754     18-30      10
## 26755     35-40       6
## 26756     18-30      10
## 26757     18-30      10
## 26758     40-50       5
## 26759     18-30      10
## 26760     18-30      10
## 26761     18-30      10
## 26762     18-30      10
## 26763     18-30      10
## 26764     40-50       5
## 26765     18-30      10
## 26766     30-35       7
## 26767     30-35       7
## 26768     18-30      10
## 26769     18-30      10
## 26770     35-40       6
## 26771     40-50       5
## 26772     40-50       5
## 26773     18-30      10
## 26774     18-30      10
## 26775     18-30      10
## 26776     18-30      10
## 26777     40-50       5
## 26778     18-30      10
## 26779     40-50       5
## 26780     18-30      10
## 26781     18-30      10
## 26782     40-50       5
## 26783     35-40       6
## 26784     18-30      10
## 26785     18-30      10
## 26786     18-30      10
## 26787     18-30      10
## 26788     35-40       6
## 26789     30-35       7
## 26790     18-30      10
## 26791     30-35       7
## 26792     18-30      10
## 26793     18-30      10
## 26794     18-30      10
## 26795     40-50       5
## 26796     30-35       7
## 26797     30-35       7
## 26798     18-30      10
## 26799     35-40       6
## 26800     30-35       7
## 26801     18-30      10
## 26802     18-30      10
## 26803     50-60       5
## 26804     40-50       5
## 26805     30-35       7
## 26806     18-30      10
## 26807     18-30      10
## 26808     40-50       5
## 26809     40-50       5
## 26810     30-35       7
## 26811     18-30      10
## 26812     30-35       7
## 26813     30-35       7
## 26814     18-30      10
## 26815     40-50       5
## 26816     18-30      10
## 26817     18-30      10
## 26818     35-40       6
## 26819     50-60       5
## 26820     18-30      10
## 26821     18-30      10
## 26822     18-30      10
## 26823     18-30      10
## 26824     18-30      10
## 26825     18-30      10
## 26826     18-30      10
## 26827     18-30      10
## 26828     30-35       7
## 26829     18-30      10
## 26830     18-30      10
## 26831     35-40       6
## 26832     18-30      10
## 26833       65+       4
## 26834     40-50       5
## 26835     30-35       7
## 26836     30-35       7
## 26837     30-35       7
## 26838     30-35       7
## 26839     35-40       6
## 26840     18-30      10
## 26841       65+       4
## 26842     30-35       7
## 26843     18-30      10
## 26844     18-30      10
## 26845     18-30      10
## 26846     18-30      10
## 26847     18-30      10
## 26848     18-30      10
## 26849     35-40       6
## 26850     40-50       5
## 26851     30-35       7
## 26852     18-30      10
## 26853     18-30      10
## 26854     18-30      10
## 26855     18-30      10
## 26856     18-30      10
## 26857     30-35       7
## 26858     40-50       5
## 26859     30-35       7
## 26860     35-40       6
## 26861     35-40       6
## 26862     18-30      10
## 26863     50-60       5
## 26864     18-30      10
## 26865     18-30      10
## 26866     18-30      10
## 26867     18-30      10
## 26868     18-30      10
## 26869     18-30      10
## 26870     35-40       6
## 26871     18-30      10
## 26872     18-30      10
## 26873     50-60       5
## 26874     18-30      10
## 26875     30-35       7
## 26876     50-60       5
## 26877     40-50       5
## 26878     40-50       5
## 26879     30-35       7
## 26880     30-35       7
## 26881     50-60       5
## 26882     18-30      10
## 26883     35-40       6
## 26884     40-50       5
## 26885     18-30      10
## 26886     18-30      10
## 26887     40-50       5
## 26888     18-30      10
## 26889     18-30      10
## 26890     40-50       5
## 26891     30-35       7
## 26892     35-40       6
## 26893     30-35       7
## 26894     18-30      10
## 26895     18-30      10
## 26896     30-35       7
## 26897     50-60       5
## 26898     30-35       7
## 26899     18-30      10
## 26900     18-30      10
## 26901     18-30      10
## 26902     18-30      10
## 26903     35-40       6
## 26904     18-30      10
## 26905     18-30      10
## 26906     35-40       6
## 26907     18-30      10
## 26908     18-30      10
## 26909     18-30      10
## 26910     18-30      10
## 26911     30-35       7
## 26912     18-30      10
## 26913     35-40       6
## 26914     40-50       5
## 26915     18-30      10
## 26916     18-30      10
## 26917     18-30      10
## 26918     40-50       5
## 26919     40-50       5
## 26920     18-30      10
## 26921     35-40       6
## 26922     30-35       7
## 26923     18-30      10
## 26924     18-30      10
## 26925     35-40       6
## 26926     30-35       7
## 26927     18-30      10
## 26928     35-40       6
## 26929     18-30      10
## 26930     35-40       6
## 26931     18-30      10
## 26932     18-30      10
## 26933     30-35       7
## 26934     18-30      10
## 26935     50-60       5
## 26936     30-35       7
## 26937     18-30      10
## 26938     18-30      10
## 26939     35-40       6
## 26940     50-60       5
## 26941     18-30      10
## 26942     30-35       7
## 26943     35-40       6
## 26944     50-60       5
## 26945       65+       4
## 26946     30-35       7
## 26947     18-30      10
## 26948     18-30      10
## 26949     30-35       7
## 26950     35-40       6
## 26951     40-50       5
## 26952     18-30      10
## 26953     30-35       7
## 26954     50-60       5
## 26955     18-30      10
## 26956       65+       4
## 26957     30-35       7
## 26958     18-30      10
## 26959     18-30      10
## 26960     18-30      10
## 26961     35-40       6
## 26962     18-30      10
## 26963     30-35       7
## 26964       65+       4
## 26965     18-30      10
## 26966     30-35       7
## 26967     18-30      10
## 26968     18-30      10
## 26969     18-30      10
## 26970     18-30      10
## 26971     35-40       6
## 26972     18-30      10
## 26973     18-30      10
## 26974     18-30      10
## 26975     50-60       5
## 26976     18-30      10
## 26977     18-30      10
## 26978     18-30      10
## 26979     18-30      10
## 26980     18-30      10
## 26981     18-30      10
## 26982     18-30      10
## 26983     30-35       7
## 26984     18-30      10
## 26985     35-40       6
## 26986     18-30      10
## 26987     50-60       5
## 26988     35-40       6
## 26989     30-35       7
## 26990     35-40       6
## 26991     40-50       5
## 26992     40-50       5
## 26993     18-30      10
## 26994     18-30      10
## 26995     18-30      10
## 26996     18-30      10
## 26997     18-30      10
## 26998     18-30      10
## 26999     30-35       7
## 27000     18-30      10
## 27001     35-40       6
## 27002     18-30      10
## 27003     18-30      10
## 27004     18-30      10
## 27005     30-35       7
## 27006     18-30      10
## 27007     35-40       6
## 27008     18-30      10
## 27009     35-40       6
## 27010     35-40       6
## 27011     18-30      10
## 27012     18-30      10
## 27013     18-30      10
## 27014     50-60       5
## 27015       65+       4
## 27016     18-30      10
## 27017     35-40       6
## 27018     18-30      10
## 27019     18-30      10
## 27020     30-35       7
## 27021     40-50       5
## 27022     18-30      10
## 27023     18-30      10
## 27024     18-30      10
## 27025     50-60       5
## 27026     18-30      10
## 27027     50-60       5
## 27028     30-35       7
## 27029     18-30      10
## 27030       65+       4
## 27031     18-30      10
## 27032     18-30      10
## 27033     30-35       7
## 27034     35-40       6
## 27035     18-30      10
## 27036     18-30      10
## 27037     18-30      10
## 27038     30-35       7
## 27039     18-30      10
## 27040     40-50       5
## 27041     18-30      10
## 27042     18-30      10
## 27043     30-35       7
## 27044     35-40       6
## 27045     30-35       7
## 27046     30-35       7
## 27047     18-30      10
## 27048     30-35       7
## 27049     30-35       7
## 27050     30-35       7
## 27051     35-40       6
## 27052     18-30      10
## 27053     35-40       6
## 27054     30-35       7
## 27055     18-30      10
## 27056     18-30      10
## 27057     18-30      10
## 27058     18-30      10
## 27059     35-40       6
## 27060     30-35       7
## 27061     35-40       6
## 27062     18-30      10
## 27063     30-35       7
## 27064     35-40       6
## 27065     18-30      10
## 27066     30-35       7
## 27067     40-50       5
## 27068     18-30      10
## 27069     40-50       5
## 27070     30-35       7
## 27071     30-35       7
## 27072     18-30      10
## 27073     18-30      10
## 27074     18-30      10
## 27075     18-30      10
## 27076     18-30      10
## 27077     18-30      10
## 27078     18-30      10
## 27079     18-30      10
## 27080     18-30      10
## 27081     30-35       7
## 27082     30-35       7
## 27083     18-30      10
## 27084     18-30      10
## 27085     30-35       7
## 27086     18-30      10
## 27087       65+       4
## 27088     30-35       7
## 27089     30-35       7
## 27090     35-40       6
## 27091     18-30      10
## 27092     40-50       5
## 27093     30-35       7
## 27094     35-40       6
## 27095     18-30      10
## 27096     18-30      10
## 27097     18-30      10
## 27098     18-30      10
## 27099     30-35       7
## 27100     18-30      10
## 27101     18-30      10
## 27102     18-30      10
## 27103     35-40       6
## 27104     35-40       6
## 27105     40-50       5
## 27106     18-30      10
## 27107     18-30      10
## 27108     50-60       5
## 27109     40-50       5
## 27110       65+       4
## 27111     30-35       7
## 27112     18-30      10
## 27113     18-30      10
## 27114     30-35       7
## 27115     18-30      10
## 27116     18-30      10
## 27117     18-30      10
## 27118     18-30      10
## 27119     18-30      10
## 27120     18-30      10
## 27121     18-30      10
## 27122     18-30      10
## 27123     18-30      10
## 27124     30-35       7
## 27125     35-40       6
## 27126     18-30      10
## 27127     30-35       7
## 27128     18-30      10
## 27129     30-35       7
## 27130     18-30      10
## 27131     18-30      10
## 27132     30-35       7
## 27133     18-30      10
## 27134     18-30      10
## 27135     18-30      10
## 27136     18-30      10
## 27137     18-30      10
## 27138     18-30      10
## 27139     18-30      10
## 27140     18-30      10
## 27141     18-30      10
## 27142     18-30      10
## 27143     50-60       5
## 27144     18-30      10
## 27145     18-30      10
## 27146     18-30      10
## 27147     35-40       6
## 27148     40-50       5
## 27149     40-50       5
## 27150     50-60       5
## 27151     30-35       7
## 27152     18-30      10
## 27153     18-30      10
## 27154     18-30      10
## 27155     18-30      10
## 27156     18-30      10
## 27157     18-30      10
## 27158       65+       4
## 27159     35-40       6
## 27160     35-40       6
## 27161     18-30      10
## 27162     18-30      10
## 27163     30-35       7
## 27164     35-40       6
## 27165     35-40       6
## 27166     18-30      10
## 27167     18-30      10
## 27168     18-30      10
## 27169     30-35       7
## 27170     18-30      10
## 27171     18-30      10
## 27172     35-40       6
## 27173     18-30      10
## 27174     18-30      10
## 27175     35-40       6
## 27176     40-50       5
## 27177     50-60       5
## 27178     18-30      10
## 27179     18-30      10
## 27180     18-30      10
## 27181     30-35       7
## 27182     40-50       5
## 27183     18-30      10
## 27184     35-40       6
## 27185     30-35       7
## 27186     40-50       5
## 27187     30-35       7
## 27188     30-35       7
## 27189     35-40       6
## 27190     35-40       6
## 27191     40-50       5
## 27192     18-30      10
## 27193     30-35       7
## 27194     35-40       6
## 27195     18-30      10
## 27196     40-50       5
## 27197     18-30      10
## 27198     18-30      10
## 27199     18-30      10
## 27200     30-35       7
## 27201     18-30      10
## 27202     18-30      10
## 27203     18-30      10
## 27204     18-30      10
## 27205     18-30      10
## 27206     35-40       6
## 27207     18-30      10
## 27208     18-30      10
## 27209     18-30      10
## 27210     30-35       7
## 27211     40-50       5
## 27212     30-35       7
## 27213     18-30      10
## 27214     35-40       6
## 27215     35-40       6
## 27216     30-35       7
## 27217     18-30      10
## 27218     18-30      10
## 27219     40-50       5
## 27220     18-30      10
## 27221     30-35       7
## 27222     50-60       5
## 27223     18-30      10
## 27224     18-30      10
## 27225     18-30      10
## 27226     18-30      10
## 27227     18-30      10
## 27228     18-30      10
## 27229     18-30      10
## 27230     18-30      10
## 27231     18-30      10
## 27232     18-30      10
## 27233     40-50       5
## 27234     40-50       5
## 27235     35-40       6
## 27236     18-30      10
## 27237     30-35       7
## 27238     35-40       6
## 27239     30-35       7
## 27240     40-50       5
## 27241     18-30      10
## 27242     30-35       7
## 27243     35-40       6
## 27244     18-30      10
## 27245     50-60       5
## 27246     30-35       7
## 27247     30-35       7
## 27248     18-30      10
## 27249     50-60       5
## 27250     18-30      10
## 27251     18-30      10
## 27252     30-35       7
## 27253     18-30      10
## 27254     40-50       5
## 27255     18-30      10
## 27256     18-30      10
## 27257     18-30      10
## 27258     18-30      10
## 27259     18-30      10
## 27260     40-50       5
## 27261     40-50       5
## 27262     35-40       6
## 27263     35-40       6
## 27264     30-35       7
## 27265     35-40       6
## 27266     18-30      10
## 27267     40-50       5
## 27268     18-30      10
## 27269     18-30      10
## 27270     18-30      10
## 27271     18-30      10
## 27272     18-30      10
## 27273     18-30      10
## 27274     18-30      10
## 27275     50-60       5
## 27276     18-30      10
## 27277     18-30      10
## 27278     18-30      10
## 27279     18-30      10
## 27280     30-35       7
## 27281     18-30      10
## 27282     18-30      10
## 27283     40-50       5
## 27284     35-40       6
## 27285     30-35       7
## 27286     35-40       6
## 27287     30-35       7
## 27288     30-35       7
## 27289     30-35       7
## 27290     30-35       7
## 27291     40-50       5
## 27292     18-30      10
## 27293     30-35       7
## 27294     18-30      10
## 27295     18-30      10
## 27296     35-40       6
## 27297     18-30      10
## 27298     30-35       7
## 27299     35-40       6
## 27300     18-30      10
## 27301     18-30      10
## 27302     18-30      10
## 27303     18-30      10
## 27304     18-30      10
## 27305     40-50       5
## 27306     18-30      10
## 27307     18-30      10
## 27308     30-35       7
## 27309     18-30      10
## 27310     30-35       7
## 27311     30-35       7
## 27312     35-40       6
## 27313     18-30      10
## 27314     18-30      10
## 27315     18-30      10
## 27316     30-35       7
## 27317     18-30      10
## 27318     35-40       6
## 27319     18-30      10
## 27320     18-30      10
## 27321     18-30      10
## 27322     30-35       7
## 27323     18-30      10
## 27324     30-35       7
## 27325     18-30      10
## 27326     35-40       6
## 27327     18-30      10
## 27328     18-30      10
## 27329     30-35       7
## 27330     35-40       6
## 27331       65+       4
## 27332     30-35       7
## 27333     18-30      10
## 27334     18-30      10
## 27335     40-50       5
## 27336     18-30      10
## 27337     18-30      10
## 27338     18-30      10
## 27339     50-60       5
## 27340     18-30      10
## 27341     40-50       5
## 27342     18-30      10
## 27343     18-30      10
## 27344     40-50       5
## 27345     18-30      10
## 27346     40-50       5
## 27347     30-35       7
## 27348     40-50       5
## 27349     18-30      10
## 27350     18-30      10
## 27351     35-40       6
## 27352     18-30      10
## 27353     30-35       7
## 27354     30-35       7
## 27355     18-30      10
## 27356     30-35       7
## 27357     18-30      10
## 27358     40-50       5
## 27359     50-60       5
## 27360     35-40       6
## 27361     18-30      10
## 27362     40-50       5
## 27363     35-40       6
## 27364     18-30      10
## 27365     30-35       7
## 27366     18-30      10
## 27367     18-30      10
## 27368     18-30      10
## 27369     30-35       7
## 27370     18-30      10
## 27371     18-30      10
## 27372     18-30      10
## 27373     18-30      10
## 27374     30-35       7
## 27375     18-30      10
## 27376     18-30      10
## 27377     35-40       6
## 27378     30-35       7
## 27379     30-35       7
## 27380     30-35       7
## 27381     50-60       5
## 27382     18-30      10
## 27383     50-60       5
## 27384     40-50       5
## 27385     18-30      10
## 27386     30-35       7
## 27387     18-30      10
## 27388     35-40       6
## 27389     18-30      10
## 27390     18-30      10
## 27391     18-30      10
## 27392     50-60       5
## 27393     18-30      10
## 27394     18-30      10
## 27395     50-60       5
## 27396     35-40       6
## 27397     35-40       6
## 27398     35-40       6
## 27399     50-60       5
## 27400     40-50       5
## 27401     35-40       6
## 27402     18-30      10
## 27403     18-30      10
## 27404     35-40       6
## 27405     30-35       7
## 27406     18-30      10
## 27407     40-50       5
## 27408     50-60       5
## 27409     30-35       7
## 27410     18-30      10
## 27411     40-50       5
## 27412     18-30      10
## 27413     35-40       6
## 27414     18-30      10
## 27415     18-30      10
## 27416     18-30      10
## 27417     18-30      10
## 27418     35-40       6
## 27419     18-30      10
## 27420     30-35       7
## 27421     18-30      10
## 27422     30-35       7
## 27423     18-30      10
## 27424     18-30      10
## 27425       65+       4
## 27426       65+       4
## 27427     18-30      10
## 27428     50-60       5
## 27429     40-50       5
## 27430     18-30      10
## 27431     30-35       7
## 27432     40-50       5
## 27433     40-50       5
## 27434     40-50       5
## 27435     40-50       5
## 27436     18-30      10
## 27437     35-40       6
## 27438     40-50       5
## 27439     18-30      10
## 27440     18-30      10
## 27441     18-30      10
## 27442     18-30      10
## 27443     35-40       6
## 27444     35-40       6
## 27445       65+       4
## 27446     40-50       5
## 27447     40-50       5
## 27448     18-30      10
## 27449     30-35       7
## 27450     18-30      10
## 27451     50-60       5
## 27452     30-35       7
## 27453     30-35       7
## 27454     18-30      10
## 27455     35-40       6
## 27456     18-30      10
## 27457     18-30      10
## 27458     30-35       7
## 27459     18-30      10
## 27460     18-30      10
## 27461     40-50       5
## 27462     35-40       6
## 27463     30-35       7
## 27464     18-30      10
## 27465     18-30      10
## 27466     18-30      10
## 27467     40-50       5
## 27468     18-30      10
## 27469     30-35       7
## 27470     18-30      10
## 27471     35-40       6
## 27472     18-30      10
## 27473     18-30      10
## 27474     18-30      10
## 27475     18-30      10
## 27476     40-50       5
## 27477     18-30      10
## 27478     18-30      10
## 27479       65+       4
## 27480     30-35       7
## 27481       65+       4
## 27482     18-30      10
## 27483     18-30      10
## 27484     30-35       7
## 27485     30-35       7
## 27486     18-30      10
## 27487     30-35       7
## 27488     18-30      10
## 27489     18-30      10
## 27490     18-30      10
## 27491     18-30      10
## 27492       65+       4
## 27493     40-50       5
## 27494     30-35       7
## 27495     18-30      10
## 27496     18-30      10
## 27497       65+       4
## 27498     40-50       5
## 27499     40-50       5
## 27500     18-30      10
## 27501     18-30      10
## 27502     18-30      10
## 27503     18-30      10
## 27504     18-30      10
## 27505     18-30      10
## 27506     30-35       7
## 27507     35-40       6
## 27508     18-30      10
## 27509     18-30      10
## 27510     18-30      10
## 27511     30-35       7
## 27512     35-40       6
## 27513     18-30      10
## 27514     18-30      10
## 27515     18-30      10
## 27516     18-30      10
## 27517     18-30      10
## 27518     40-50       5
## 27519     18-30      10
## 27520     30-35       7
## 27521     18-30      10
## 27522     18-30      10
## 27523     18-30      10
## 27524     35-40       6
## 27525     18-30      10
## 27526     18-30      10
## 27527     18-30      10
## 27528     18-30      10
## 27529     35-40       6
## 27530     30-35       7
## 27531     30-35       7
## 27532     40-50       5
## 27533     35-40       6
## 27534     18-30      10
## 27535     18-30      10
## 27536     35-40       6
## 27537     30-35       7
## 27538     18-30      10
## 27539     40-50       5
## 27540     50-60       5
## 27541     18-30      10
## 27542     30-35       7
## 27543     18-30      10
## 27544     40-50       5
## 27545     18-30      10
## 27546     18-30      10
## 27547     35-40       6
## 27548     30-35       7
## 27549     18-30      10
## 27550     18-30      10
## 27551     18-30      10
## 27552     50-60       5
## 27553     30-35       7
## 27554     35-40       6
## 27555     35-40       6
## 27556     18-30      10
## 27557     40-50       5
## 27558     18-30      10
## 27559     35-40       6
## 27560     40-50       5
## 27561     50-60       5
## 27562     35-40       6
## 27563     18-30      10
## 27564     18-30      10
## 27565     18-30      10
## 27566     18-30      10
## 27567     18-30      10
## 27568     18-30      10
## 27569     30-35       7
## 27570     30-35       7
## 27571     18-30      10
## 27572     30-35       7
## 27573     18-30      10
## 27574     18-30      10
## 27575     35-40       6
## 27576     18-30      10
## 27577     30-35       7
## 27578     40-50       5
## 27579     18-30      10
## 27580     18-30      10
## 27581     18-30      10
## 27582     30-35       7
## 27583     35-40       6
## 27584     40-50       5
## 27585     18-30      10
## 27586     18-30      10
## 27587     30-35       7
## 27588     35-40       6
## 27589     18-30      10
## 27590     18-30      10
## 27591     30-35       7
## 27592     30-35       7
## 27593     18-30      10
## 27594     18-30      10
## 27595     18-30      10
## 27596     18-30      10
## 27597     35-40       6
## 27598     35-40       6
## 27599     50-60       5
## 27600     30-35       7
## 27601     35-40       6
## 27602     30-35       7
## 27603     18-30      10
## 27604       65+       4
## 27605     30-35       7
## 27606     18-30      10
## 27607     30-35       7
## 27608     50-60       5
## 27609     35-40       6
## 27610     30-35       7
## 27611     50-60       5
## 27612     18-30      10
## 27613     18-30      10
## 27614     18-30      10
## 27615     30-35       7
## 27616     18-30      10
## 27617     30-35       7
## 27618     18-30      10
## 27619     18-30      10
## 27620     18-30      10
## 27621     18-30      10
## 27622     30-35       7
## 27623     30-35       7
## 27624     18-30      10
## 27625     30-35       7
## 27626     50-60       5
## 27627     35-40       6
## 27628     35-40       6
## 27629     40-50       5
## 27630     18-30      10
## 27631     30-35       7
## 27632     18-30      10
## 27633     18-30      10
## 27634     30-35       7
## 27635     35-40       6
## 27636     40-50       5
## 27637     18-30      10
## 27638     18-30      10
## 27639     18-30      10
## 27640     30-35       7
## 27641     30-35       7
## 27642     35-40       6
## 27643     18-30      10
## 27644     40-50       5
## 27645     18-30      10
## 27646     18-30      10
## 27647     30-35       7
## 27648     18-30      10
## 27649     30-35       7
## 27650     40-50       5
## 27651     50-60       5
## 27652     18-30      10
## 27653     18-30      10
## 27654     18-30      10
## 27655     50-60       5
## 27656     30-35       7
## 27657     18-30      10
## 27658     40-50       5
## 27659     35-40       6
## 27660     40-50       5
## 27661     30-35       7
## 27662     18-30      10
## 27663     30-35       7
## 27664     40-50       5
## 27665     40-50       5
## 27666     50-60       5
## 27667     18-30      10
## 27668     50-60       5
## 27669     18-30      10
## 27670     40-50       5
## 27671     30-35       7
## 27672     40-50       5
## 27673     35-40       6
## 27674     18-30      10
## 27675     18-30      10
## 27676     50-60       5
## 27677     18-30      10
## 27678     18-30      10
## 27679     18-30      10
## 27680     40-50       5
## 27681     18-30      10
## 27682     30-35       7
## 27683     18-30      10
## 27684     18-30      10
## 27685     30-35       7
## 27686     40-50       5
## 27687     35-40       6
## 27688     30-35       7
## 27689     40-50       5
## 27690     18-30      10
## 27691     30-35       7
## 27692     50-60       5
## 27693     40-50       5
## 27694     18-30      10
## 27695     40-50       5
## 27696     50-60       5
## 27697       65+       4
## 27698     30-35       7
## 27699     40-50       5
## 27700     18-30      10
## 27701     35-40       6
## 27702     18-30      10
## 27703     18-30      10
## 27704     18-30      10
## 27705     18-30      10
## 27706     35-40       6
## 27707     35-40       6
## 27708     18-30      10
## 27709     40-50       5
## 27710     40-50       5
## 27711       65+       4
## 27712     35-40       6
## 27713     18-30      10
## 27714     50-60       5
## 27715     50-60       5
## 27716     30-35       7
## 27717     35-40       6
## 27718     40-50       5
## 27719     18-30      10
## 27720     40-50       5
## 27721     40-50       5
## 27722     30-35       7
## 27723     40-50       5
## 27724     30-35       7
## 27725     35-40       6
## 27726     30-35       7
## 27727     40-50       5
## 27728     18-30      10
## 27729     40-50       5
## 27730     40-50       5
## 27731       65+       4
## 27732     40-50       5
## 27733     30-35       7
## 27734     18-30      10
## 27735     18-30      10
## 27736     18-30      10
## 27737     18-30      10
## 27738     18-30      10
## 27739     40-50       5
## 27740     18-30      10
## 27741     40-50       5
## 27742     50-60       5
## 27743     18-30      10
## 27744     30-35       7
## 27745     18-30      10
## 27746     18-30      10
## 27747     18-30      10
## 27748     40-50       5
## 27749     40-50       5
## 27750     30-35       7
## 27751     18-30      10
## 27752     30-35       7
## 27753     30-35       7
## 27754     40-50       5
## 27755     30-35       7
## 27756     30-35       7
## 27757     18-30      10
## 27758     30-35       7
## 27759     18-30      10
## 27760     35-40       6
## 27761     18-30      10
## 27762     18-30      10
## 27763       65+       4
## 27764     50-60       5
## 27765     18-30      10
## 27766     35-40       6
## 27767     18-30      10
## 27768     18-30      10
## 27769     18-30      10
## 27770     18-30      10
## 27771     18-30      10
## 27772     18-30      10
## 27773     18-30      10
## 27774     18-30      10
## 27775     18-30      10
## 27776     18-30      10
## 27777     18-30      10
## 27778     40-50       5
## 27779     35-40       6
## 27780     35-40       6
## 27781     18-30      10
## 27782     18-30      10
## 27783     18-30      10
## 27784     35-40       6
## 27785     30-35       7
## 27786     30-35       7
## 27787     35-40       6
## 27788     18-30      10
## 27789     30-35       7
## 27790     30-35       7
## 27791     18-30      10
## 27792     50-60       5
## 27793     18-30      10
## 27794     40-50       5
## 27795     40-50       5
## 27796     35-40       6
## 27797     18-30      10
## 27798     18-30      10
## 27799     30-35       7
## 27800     18-30      10
## 27801     30-35       7
## 27802     30-35       7
## 27803     35-40       6
## 27804     18-30      10
## 27805     18-30      10
## 27806     18-30      10
## 27807     35-40       6
## 27808     18-30      10
## 27809     18-30      10
## 27810     40-50       5
## 27811     40-50       5
## 27812     35-40       6
## 27813     40-50       5
## 27814     18-30      10
## 27815     40-50       5
## 27816     35-40       6
## 27817     18-30      10
## 27818     50-60       5
## 27819     35-40       6
## 27820     18-30      10
## 27821     35-40       6
## 27822     50-60       5
## 27823     18-30      10
## 27824     30-35       7
## 27825     40-50       5
## 27826     40-50       5
## 27827     40-50       5
## 27828     18-30      10
## 27829     40-50       5
## 27830     18-30      10
## 27831     18-30      10
## 27832     18-30      10
## 27833     18-30      10
## 27834     18-30      10
## 27835     30-35       7
## 27836     40-50       5
## 27837     18-30      10
## 27838     18-30      10
## 27839     18-30      10
## 27840     18-30      10
## 27841     18-30      10
## 27842     30-35       7
## 27843     50-60       5
## 27844     18-30      10
## 27845     40-50       5
## 27846     18-30      10
## 27847       65+       4
## 27848     18-30      10
## 27849     18-30      10
## 27850     18-30      10
## 27851     40-50       5
## 27852     18-30      10
## 27853     18-30      10
## 27854     30-35       7
## 27855     18-30      10
## 27856     18-30      10
## 27857     18-30      10
## 27858     30-35       7
## 27859     18-30      10
## 27860     18-30      10
## 27861     30-35       7
## 27862     18-30      10
## 27863     35-40       6
## 27864     30-35       7
## 27865     35-40       6
## 27866     18-30      10
## 27867     18-30      10
## 27868     18-30      10
## 27869     18-30      10
## 27870     40-50       5
## 27871     30-35       7
## 27872     30-35       7
## 27873     18-30      10
## 27874     30-35       7
## 27875     18-30      10
## 27876     18-30      10
## 27877     40-50       5
## 27878     18-30      10
## 27879     30-35       7
## 27880     18-30      10
## 27881     30-35       7
## 27882     40-50       5
## 27883       65+       4
## 27884     40-50       5
## 27885     30-35       7
## 27886     40-50       5
## 27887     18-30      10
## 27888     30-35       7
## 27889     40-50       5
## 27890     30-35       7
## 27891     30-35       7
## 27892     40-50       5
## 27893     18-30      10
## 27894     18-30      10
## 27895     18-30      10
## 27896     18-30      10
## 27897     18-30      10
## 27898     18-30      10
## 27899     18-30      10
## 27900     18-30      10
## 27901     30-35       7
## 27902     18-30      10
## 27903     30-35       7
## 27904     18-30      10
## 27905     30-35       7
## 27906     30-35       7
## 27907     50-60       5
## 27908     40-50       5
## 27909     40-50       5
## 27910     50-60       5
## 27911     18-30      10
## 27912     30-35       7
## 27913     35-40       6
## 27914     30-35       7
## 27915     40-50       5
## 27916     40-50       5
## 27917     30-35       7
## 27918     50-60       5
## 27919     18-30      10
## 27920     18-30      10
## 27921     18-30      10
## 27922     18-30      10
## 27923     18-30      10
## 27924     30-35       7
## 27925     30-35       7
## 27926     30-35       7
## 27927     40-50       5
## 27928     18-30      10
## 27929     40-50       5
## 27930     30-35       7
## 27931     40-50       5
## 27932     18-30      10
## 27933     18-30      10
## 27934     18-30      10
## 27935     18-30      10
## 27936     35-40       6
## 27937     18-30      10
## 27938     18-30      10
## 27939     30-35       7
## 27940     35-40       6
## 27941     40-50       5
## 27942     40-50       5
## 27943     30-35       7
## 27944     18-30      10
## 27945     35-40       6
## 27946     18-30      10
## 27947     30-35       7
## 27948     30-35       7
## 27949     30-35       7
## 27950     40-50       5
## 27951     40-50       5
## 27952     35-40       6
## 27953     35-40       6
## 27954     18-30      10
## 27955     18-30      10
## 27956     18-30      10
## 27957     40-50       5
## 27958     18-30      10
## 27959     18-30      10
## 27960     18-30      10
## 27961     30-35       7
## 27962     18-30      10
## 27963     30-35       7
## 27964     35-40       6
## 27965     40-50       5
## 27966     18-30      10
## 27967     40-50       5
## 27968     35-40       6
## 27969     30-35       7
## 27970     18-30      10
## 27971     40-50       5
## 27972     18-30      10
## 27973     40-50       5
## 27974     50-60       5
## 27975     30-35       7
## 27976     40-50       5
## 27977     18-30      10
## 27978     35-40       6
## 27979     50-60       5
## 27980     40-50       5
## 27981     40-50       5
## 27982     18-30      10
## 27983     18-30      10
## 27984     18-30      10
## 27985     18-30      10
## 27986     18-30      10
## 27987     18-30      10
## 27988     30-35       7
## 27989     18-30      10
## 27990     18-30      10
## 27991     18-30      10
## 27992     35-40       6
## 27993     30-35       7
## 27994     40-50       5
## 27995     18-30      10
## 27996     35-40       6
## 27997     18-30      10
## 27998     18-30      10
## 27999     35-40       6
## 28000     18-30      10
## 28001       65+       4
## 28002     18-30      10
## 28003     40-50       5
## 28004     30-35       7
## 28005     50-60       5
## 28006     50-60       5
## 28007     18-30      10
## 28008     18-30      10
## 28009     18-30      10
## 28010     30-35       7
## 28011     30-35       7
## 28012     18-30      10
## 28013     18-30      10
## 28014     30-35       7
## 28015     18-30      10
## 28016     30-35       7
## 28017     18-30      10
## 28018     50-60       5
## 28019     40-50       5
## 28020     30-35       7
## 28021     35-40       6
## 28022     18-30      10
## 28023     35-40       6
## 28024     18-30      10
## 28025     18-30      10
## 28026     50-60       5
## 28027     35-40       6
## 28028     35-40       6
## 28029     18-30      10
## 28030     35-40       6
## 28031     30-35       7
## 28032     30-35       7
## 28033     18-30      10
## 28034     18-30      10
## 28035     30-35       7
## 28036     35-40       6
## 28037     30-35       7
## 28038     40-50       5
## 28039     18-30      10
## 28040     18-30      10
## 28041     18-30      10
## 28042     18-30      10
## 28043     30-35       7
## 28044     35-40       6
## 28045     18-30      10
## 28046     30-35       7
## 28047     50-60       5
## 28048     18-30      10
## 28049     18-30      10
## 28050     18-30      10
## 28051     18-30      10
## 28052     18-30      10
## 28053     18-30      10
## 28054     18-30      10
## 28055     18-30      10
## 28056     40-50       5
## 28057     18-30      10
## 28058     30-35       7
## 28059     35-40       6
## 28060       65+       4
## 28061     40-50       5
## 28062     18-30      10
## 28063     50-60       5
## 28064     18-30      10
## 28065     35-40       6
## 28066     18-30      10
## 28067     18-30      10
## 28068     18-30      10
## 28069     40-50       5
## 28070     18-30      10
## 28071     30-35       7
## 28072     18-30      10
## 28073     35-40       6
## 28074     18-30      10
## 28075     40-50       5
## 28076     18-30      10
## 28077     30-35       7
## 28078     18-30      10
## 28079     18-30      10
## 28080     30-35       7
## 28081     18-30      10
## 28082     18-30      10
## 28083     18-30      10
## 28084     30-35       7
## 28085     30-35       7
## 28086     40-50       5
## 28087     50-60       5
## 28088     18-30      10
## 28089     30-35       7
## 28090     18-30      10
## 28091     18-30      10
## 28092     35-40       6
## 28093     18-30      10
## 28094     18-30      10
## 28095     35-40       6
## 28096     35-40       6
## 28097     18-30      10
## 28098     18-30      10
## 28099     18-30      10
## 28100     50-60       5
## 28101     30-35       7
## 28102     18-30      10
## 28103     30-35       7
## 28104     35-40       6
## 28105     40-50       5
## 28106     30-35       7
## 28107     30-35       7
## 28108     35-40       6
## 28109     40-50       5
## 28110     18-30      10
## 28111     18-30      10
## 28112     30-35       7
## 28113     18-30      10
## 28114     18-30      10
## 28115     18-30      10
## 28116     35-40       6
## 28117     18-30      10
## 28118     18-30      10
## 28119     18-30      10
## 28120     18-30      10
## 28121     18-30      10
## 28122     18-30      10
## 28123     18-30      10
## 28124     35-40       6
## 28125     18-30      10
## 28126     18-30      10
## 28127     35-40       6
## 28128     40-50       5
## 28129     40-50       5
## 28130     18-30      10
## 28131     35-40       6
## 28132     18-30      10
## 28133     18-30      10
## 28134     30-35       7
## 28135     40-50       5
## 28136     18-30      10
## 28137     18-30      10
## 28138     35-40       6
## 28139     18-30      10
## 28140     18-30      10
## 28141     35-40       6
## 28142     35-40       6
## 28143     40-50       5
## 28144     18-30      10
## 28145     40-50       5
## 28146     30-35       7
## 28147     30-35       7
## 28148     18-30      10
## 28149     30-35       7
## 28150     18-30      10
## 28151     18-30      10
## 28152     18-30      10
## 28153     40-50       5
## 28154     35-40       6
## 28155     30-35       7
## 28156     18-30      10
## 28157     35-40       6
## 28158     18-30      10
## 28159     18-30      10
## 28160     40-50       5
## 28161     18-30      10
## 28162     30-35       7
## 28163     30-35       7
## 28164     18-30      10
## 28165     18-30      10
## 28166     18-30      10
## 28167     18-30      10
## 28168     18-30      10
## 28169     18-30      10
## 28170     18-30      10
## 28171     18-30      10
## 28172     30-35       7
## 28173     18-30      10
## 28174     18-30      10
## 28175     18-30      10
## 28176     30-35       7
## 28177     18-30      10
## 28178     30-35       7
## 28179     50-60       5
## 28180     30-35       7
## 28181     18-30      10
## 28182     18-30      10
## 28183     18-30      10
## 28184     40-50       5
## 28185     40-50       5
## 28186     18-30      10
## 28187     18-30      10
## 28188     18-30      10
## 28189     35-40       6
## 28190     18-30      10
## 28191     40-50       5
## 28192     18-30      10
## 28193     18-30      10
## 28194     40-50       5
## 28195     50-60       5
## 28196     40-50       5
## 28197     18-30      10
## 28198     18-30      10
## 28199     40-50       5
## 28200     18-30      10
## 28201     40-50       5
## 28202     18-30      10
## 28203     18-30      10
## 28204     18-30      10
## 28205     40-50       5
## 28206     18-30      10
## 28207     18-30      10
## 28208     40-50       5
## 28209     18-30      10
## 28210     18-30      10
## 28211     18-30      10
## 28212     40-50       5
## 28213     40-50       5
## 28214     18-30      10
## 28215     35-40       6
## 28216     40-50       5
## 28217     30-35       7
## 28218     30-35       7
## 28219     18-30      10
## 28220     35-40       6
## 28221     18-30      10
## 28222     30-35       7
## 28223     18-30      10
## 28224     30-35       7
## 28225     35-40       6
## 28226     30-35       7
## 28227     18-30      10
## 28228     18-30      10
## 28229     18-30      10
## 28230     35-40       6
## 28231     18-30      10
## 28232     30-35       7
## 28233     30-35       7
## 28234     18-30      10
## 28235     50-60       5
## 28236     40-50       5
## 28237     30-35       7
## 28238     40-50       5
## 28239     30-35       7
## 28240     18-30      10
## 28241     18-30      10
## 28242     18-30      10
## 28243     18-30      10
## 28244     18-30      10
## 28245     50-60       5
## 28246     18-30      10
## 28247     35-40       6
## 28248     30-35       7
## 28249     30-35       7
## 28250     35-40       6
## 28251     18-30      10
## 28252     30-35       7
## 28253     30-35       7
## 28254     35-40       6
## 28255     18-30      10
## 28256     18-30      10
## 28257     40-50       5
## 28258     18-30      10
## 28259     50-60       5
## 28260     18-30      10
## 28261     18-30      10
## 28262       65+       4
## 28263     30-35       7
## 28264     18-30      10
## 28265     30-35       7
## 28266     18-30      10
## 28267     18-30      10
## 28268     35-40       6
## 28269     40-50       5
## 28270     40-50       5
## 28271     35-40       6
## 28272     30-35       7
## 28273     40-50       5
## 28274     40-50       5
## 28275     18-30      10
## 28276     18-30      10
## 28277     40-50       5
## 28278       65+       4
## 28279     35-40       6
## 28280     35-40       6
## 28281     18-30      10
## 28282     18-30      10
## 28283     30-35       7
## 28284     18-30      10
## 28285     18-30      10
## 28286     35-40       6
## 28287     40-50       5
## 28288     35-40       6
## 28289     35-40       6
## 28290     18-30      10
## 28291     18-30      10
## 28292     40-50       5
## 28293     18-30      10
## 28294     18-30      10
## 28295     30-35       7
## 28296     18-30      10
## 28297     30-35       7
## 28298     30-35       7
## 28299     35-40       6
## 28300     18-30      10
## 28301     30-35       7
## 28302     18-30      10
## 28303     40-50       5
## 28304     18-30      10
## 28305     50-60       5
## 28306     18-30      10
## 28307     18-30      10
## 28308     18-30      10
## 28309     40-50       5
## 28310     40-50       5
## 28311     30-35       7
## 28312     18-30      10
## 28313     30-35       7
## 28314     40-50       5
## 28315     18-30      10
## 28316     18-30      10
## 28317     35-40       6
## 28318     40-50       5
## 28319     50-60       5
## 28320     40-50       5
## 28321     40-50       5
## 28322     40-50       5
## 28323     30-35       7
## 28324     30-35       7
## 28325     18-30      10
## 28326     40-50       5
## 28327     40-50       5
## 28328     18-30      10
## 28329     40-50       5
## 28330     18-30      10
## 28331     18-30      10
## 28332     18-30      10
## 28333     18-30      10
## 28334     18-30      10
## 28335     35-40       6
## 28336       65+       4
## 28337     40-50       5
## 28338     40-50       5
## 28339     30-35       7
## 28340     18-30      10
## 28341     35-40       6
## 28342     35-40       6
## 28343     18-30      10
## 28344     35-40       6
## 28345     35-40       6
## 28346     35-40       6
## 28347     18-30      10
## 28348     18-30      10
## 28349     30-35       7
## 28350     18-30      10
## 28351     18-30      10
## 28352     30-35       7
## 28353     18-30      10
## 28354     30-35       7
## 28355     35-40       6
## 28356     18-30      10
## 28357     35-40       6
## 28358     18-30      10
## 28359     40-50       5
## 28360     35-40       6
## 28361     18-30      10
## 28362     18-30      10
## 28363     40-50       5
## 28364     18-30      10
## 28365     18-30      10
## 28366     18-30      10
## 28367     30-35       7
## 28368     18-30      10
## 28369     18-30      10
## 28370     40-50       5
## 28371     18-30      10
## 28372     40-50       5
## 28373     18-30      10
## 28374     40-50       5
## 28375     40-50       5
## 28376     18-30      10
## 28377     18-30      10
## 28378     50-60       5
## 28379     40-50       5
## 28380     50-60       5
## 28381     18-30      10
## 28382     18-30      10
## 28383     18-30      10
## 28384     40-50       5
## 28385     30-35       7
## 28386     18-30      10
## 28387     50-60       5
## 28388     18-30      10
## 28389     30-35       7
## 28390     18-30      10
## 28391     40-50       5
## 28392     30-35       7
## 28393     30-35       7
## 28394     18-30      10
## 28395     18-30      10
## 28396     30-35       7
## 28397     30-35       7
## 28398     18-30      10
## 28399     18-30      10
## 28400     18-30      10
## 28401     18-30      10
## 28402     35-40       6
## 28403     18-30      10
## 28404     30-35       7
## 28405     18-30      10
## 28406     18-30      10
## 28407     30-35       7
## 28408     18-30      10
## 28409     18-30      10
## 28410     40-50       5
## 28411     35-40       6
## 28412     40-50       5
## 28413     18-30      10
## 28414     18-30      10
## 28415     18-30      10
## 28416     40-50       5
## 28417     18-30      10
## 28418     18-30      10
## 28419     18-30      10
## 28420     18-30      10
## 28421     18-30      10
## 28422     18-30      10
## 28423     18-30      10
## 28424     35-40       6
## 28425     35-40       6
## 28426     40-50       5
## 28427     18-30      10
## 28428     35-40       6
## 28429     18-30      10
## 28430     30-35       7
## 28431     18-30      10
## 28432     40-50       5
## 28433     18-30      10
## 28434     18-30      10
## 28435     18-30      10
## 28436     18-30      10
## 28437     18-30      10
## 28438     18-30      10
## 28439     40-50       5
## 28440     18-30      10
## 28441     35-40       6
## 28442     40-50       5
## 28443     18-30      10
## 28444     35-40       6
## 28445     40-50       5
## 28446     40-50       5
## 28447     50-60       5
## 28448     35-40       6
## 28449     40-50       5
## 28450     40-50       5
## 28451     50-60       5
## 28452     30-35       7
## 28453     18-30      10
## 28454     18-30      10
## 28455     18-30      10
## 28456     18-30      10
## 28457     35-40       6
## 28458     30-35       7
## 28459     18-30      10
## 28460     18-30      10
## 28461     35-40       6
## 28462     35-40       6
## 28463     50-60       5
## 28464     35-40       6
## 28465     18-30      10
## 28466     35-40       6
## 28467     18-30      10
## 28468     18-30      10
## 28469     18-30      10
## 28470     50-60       5
## 28471     18-30      10
## 28472     40-50       5
## 28473     35-40       6
## 28474     18-30      10
## 28475     30-35       7
## 28476     40-50       5
## 28477     35-40       6
## 28478     18-30      10
## 28479     50-60       5
## 28480     35-40       6
## 28481     18-30      10
## 28482     30-35       7
## 28483     18-30      10
## 28484     30-35       7
## 28485       65+       4
## 28486     18-30      10
## 28487       65+       4
## 28488     40-50       5
## 28489     35-40       6
## 28490     18-30      10
## 28491     30-35       7
## 28492     18-30      10
## 28493     18-30      10
## 28494     18-30      10
## 28495     35-40       6
## 28496     30-35       7
## 28497     18-30      10
## 28498     35-40       6
## 28499     40-50       5
## 28500     35-40       6
## 28501     50-60       5
## 28502     18-30      10
## 28503     18-30      10
## 28504     18-30      10
## 28505     18-30      10
## 28506     18-30      10
## 28507     40-50       5
## 28508     18-30      10
## 28509     18-30      10
## 28510     18-30      10
## 28511     50-60       5
## 28512     35-40       6
## 28513     18-30      10
## 28514     30-35       7
## 28515     18-30      10
## 28516     40-50       5
## 28517     18-30      10
## 28518     18-30      10
## 28519     18-30      10
## 28520     18-30      10
## 28521     40-50       5
## 28522     40-50       5
## 28523     40-50       5
## 28524     30-35       7
## 28525     18-30      10
## 28526     40-50       5
## 28527     50-60       5
## 28528     40-50       5
## 28529     50-60       5
## 28530     30-35       7
## 28531     40-50       5
## 28532     18-30      10
## 28533     18-30      10
## 28534     18-30      10
## 28535     40-50       5
## 28536     18-30      10
## 28537     18-30      10
## 28538     40-50       5
## 28539     30-35       7
## 28540     35-40       6
## 28541     18-30      10
## 28542     18-30      10
## 28543     40-50       5
## 28544     18-30      10
## 28545     35-40       6
## 28546     18-30      10
## 28547     30-35       7
## 28548     40-50       5
## 28549     30-35       7
## 28550     18-30      10
## 28551     18-30      10
## 28552     18-30      10
## 28553     50-60       5
## 28554     30-35       7
## 28555     50-60       5
## 28556     18-30      10
## 28557     18-30      10
## 28558     35-40       6
## 28559     50-60       5
## 28560     40-50       5
## 28561     18-30      10
## 28562     30-35       7
## 28563     30-35       7
## 28564     18-30      10
## 28565     50-60       5
## 28566     35-40       6
## 28567     18-30      10
## 28568       65+       4
## 28569     30-35       7
## 28570     40-50       5
## 28571     18-30      10
## 28572     18-30      10
## 28573     18-30      10
## 28574     30-35       7
## 28575     50-60       5
## 28576     30-35       7
## 28577     35-40       6
## 28578     18-30      10
## 28579     40-50       5
## 28580     18-30      10
## 28581     18-30      10
## 28582     30-35       7
## 28583     18-30      10
## 28584     18-30      10
## 28585     40-50       5
## 28586     18-30      10
## 28587     18-30      10
## 28588     30-35       7
## 28589     30-35       7
## 28590     18-30      10
## 28591     18-30      10
## 28592     18-30      10
## 28593     30-35       7
## 28594     40-50       5
## 28595     18-30      10
## 28596     18-30      10
## 28597     30-35       7
## 28598     18-30      10
## 28599     30-35       7
## 28600     40-50       5
## 28601     18-30      10
## 28602     40-50       5
## 28603     50-60       5
## 28604     18-30      10
## 28605     18-30      10
## 28606     35-40       6
## 28607     18-30      10
## 28608     35-40       6
## 28609     18-30      10
## 28610     35-40       6
## 28611     30-35       7
## 28612     18-30      10
## 28613     18-30      10
## 28614     40-50       5
## 28615     50-60       5
## 28616     18-30      10
## 28617     18-30      10
## 28618     18-30      10
## 28619     18-30      10
## 28620     18-30      10
## 28621     18-30      10
## 28622     35-40       6
## 28623     40-50       5
## 28624     40-50       5
## 28625     40-50       5
## 28626     18-30      10
## 28627     35-40       6
## 28628     35-40       6
## 28629     18-30      10
## 28630     18-30      10
## 28631     18-30      10
## 28632     35-40       6
## 28633     18-30      10
## 28634     35-40       6
## 28635     18-30      10
## 28636     18-30      10
## 28637     30-35       7
## 28638     18-30      10
## 28639     35-40       6
## 28640     30-35       7
## 28641     50-60       5
## 28642     18-30      10
## 28643     30-35       7
## 28644     18-30      10
## 28645     18-30      10
## 28646     18-30      10
## 28647     18-30      10
## 28648     30-35       7
## 28649     35-40       6
## 28650     35-40       6
## 28651     30-35       7
## 28652     18-30      10
## 28653     18-30      10
## 28654     18-30      10
## 28655     35-40       6
## 28656     18-30      10
## 28657       65+       4
## 28658     40-50       5
## 28659     18-30      10
## 28660     18-30      10
## 28661     18-30      10
## 28662     18-30      10
## 28663     18-30      10
## 28664     18-30      10
## 28665     30-35       7
## 28666       65+       4
## 28667     18-30      10
## 28668     30-35       7
## 28669     35-40       6
## 28670     30-35       7
## 28671     35-40       6
## 28672     35-40       6
## 28673     18-30      10
## 28674     50-60       5
## 28675     35-40       6
## 28676     18-30      10
## 28677     18-30      10
## 28678     18-30      10
## 28679     50-60       5
## 28680     18-30      10
## 28681     18-30      10
## 28682     18-30      10
## 28683     18-30      10
## 28684     30-35       7
## 28685     35-40       6
## 28686     18-30      10
## 28687     30-35       7
## 28688     18-30      10
## 28689     40-50       5
## 28690     18-30      10
## 28691     18-30      10
## 28692     35-40       6
## 28693     40-50       5
## 28694     30-35       7
## 28695     35-40       6
## 28696     40-50       5
## 28697     35-40       6
## 28698     30-35       7
## 28699     18-30      10
## 28700     18-30      10
## 28701       65+       4
## 28702     30-35       7
## 28703     18-30      10
## 28704     30-35       7
## 28705     18-30      10
## 28706     18-30      10
## 28707     18-30      10
## 28708     18-30      10
## 28709     35-40       6
## 28710     30-35       7
## 28711     40-50       5
## 28712     35-40       6
## 28713     18-30      10
## 28714     50-60       5
## 28715     18-30      10
## 28716     35-40       6
## 28717     30-35       7
## 28718     50-60       5
## 28719     35-40       6
## 28720     18-30      10
## 28721     30-35       7
## 28722     30-35       7
## 28723     30-35       7
## 28724     18-30      10
## 28725     18-30      10
## 28726     40-50       5
## 28727     40-50       5
## 28728     35-40       6
## 28729     40-50       5
## 28730     40-50       5
## 28731     40-50       5
## 28732     50-60       5
## 28733     18-30      10
## 28734     18-30      10
## 28735     18-30      10
## 28736     18-30      10
## 28737     40-50       5
## 28738     40-50       5
## 28739     40-50       5
## 28740     30-35       7
## 28741     18-30      10
## 28742     30-35       7
## 28743     35-40       6
## 28744     18-30      10
## 28745     40-50       5
## 28746     18-30      10
## 28747     18-30      10
## 28748     18-30      10
## 28749     30-35       7
## 28750     18-30      10
## 28751     35-40       6
## 28752     40-50       5
## 28753     40-50       5
## 28754     35-40       6
## 28755     30-35       7
## 28756     30-35       7
## 28757     40-50       5
## 28758     18-30      10
## 28759     18-30      10
## 28760     30-35       7
## 28761     30-35       7
## 28762     18-30      10
## 28763     18-30      10
## 28764       65+       4
## 28765     18-30      10
## 28766     40-50       5
## 28767     18-30      10
## 28768     18-30      10
## 28769     18-30      10
## 28770     30-35       7
## 28771     50-60       5
## 28772     18-30      10
## 28773     30-35       7
## 28774     18-30      10
## 28775     18-30      10
## 28776     50-60       5
## 28777     35-40       6
## 28778     18-30      10
## 28779     30-35       7
## 28780     30-35       7
## 28781     18-30      10
## 28782     40-50       5
## 28783     18-30      10
## 28784     30-35       7
## 28785     40-50       5
## 28786     18-30      10
## 28787     18-30      10
## 28788     30-35       7
## 28789     30-35       7
## 28790     18-30      10
## 28791     30-35       7
## 28792     30-35       7
## 28793     35-40       6
## 28794     40-50       5
## 28795       65+       4
## 28796     50-60       5
## 28797     30-35       7
## 28798     30-35       7
## 28799     18-30      10
## 28800     40-50       5
## 28801     30-35       7
## 28802     18-30      10
## 28803     40-50       5
## 28804     50-60       5
## 28805     30-35       7
## 28806     40-50       5
## 28807     18-30      10
## 28808     50-60       5
## 28809     18-30      10
## 28810     35-40       6
## 28811     30-35       7
## 28812     35-40       6
## 28813     18-30      10
## 28814     30-35       7
## 28815     40-50       5
## 28816     18-30      10
## 28817     18-30      10
## 28818     40-50       5
## 28819     35-40       6
## 28820     35-40       6
## 28821     18-30      10
## 28822     40-50       5
## 28823     18-30      10
## 28824     40-50       5
## 28825     30-35       7
## 28826     18-30      10
## 28827     18-30      10
## 28828     18-30      10
## 28829     30-35       7
## 28830     35-40       6
## 28831     35-40       6
## 28832     18-30      10
## 28833     18-30      10
## 28834     35-40       6
## 28835     35-40       6
## 28836       65+       4
## 28837     40-50       5
## 28838     40-50       5
## 28839     18-30      10
## 28840     40-50       5
## 28841     18-30      10
## 28842     30-35       7
## 28843     40-50       5
## 28844     18-30      10
## 28845     18-30      10
## 28846     40-50       5
## 28847     18-30      10
## 28848     18-30      10
## 28849     35-40       6
## 28850     35-40       6
## 28851     18-30      10
## 28852     40-50       5
## 28853     35-40       6
## 28854     30-35       7
## 28855     18-30      10
## 28856       65+       4
## 28857     18-30      10
## 28858     18-30      10
## 28859     18-30      10
## 28860     18-30      10
## 28861     18-30      10
## 28862     40-50       5
## 28863     18-30      10
## 28864     18-30      10
## 28865     50-60       5
## 28866     40-50       5
## 28867     30-35       7
## 28868     18-30      10
## 28869     30-35       7
## 28870     18-30      10
## 28871     18-30      10
## 28872     18-30      10
## 28873     30-35       7
## 28874       65+       4
## 28875     18-30      10
## 28876     18-30      10
## 28877     40-50       5
## 28878     30-35       7
## 28879     35-40       6
## 28880     30-35       7
## 28881     30-35       7
## 28882     18-30      10
## 28883     18-30      10
## 28884     35-40       6
## 28885     18-30      10
## 28886     35-40       6
## 28887     30-35       7
## 28888     35-40       6
## 28889     18-30      10
## 28890     40-50       5
## 28891     18-30      10
## 28892     30-35       7
## 28893     18-30      10
## 28894     30-35       7
## 28895     18-30      10
## 28896     18-30      10
## 28897     18-30      10
## 28898     18-30      10
## 28899     18-30      10
## 28900     18-30      10
## 28901     30-35       7
## 28902     30-35       7
## 28903     40-50       5
## 28904     18-30      10
## 28905     18-30      10
## 28906     30-35       7
## 28907     35-40       6
## 28908     18-30      10
## 28909     35-40       6
## 28910     18-30      10
## 28911     50-60       5
## 28912     18-30      10
## 28913     18-30      10
## 28914     35-40       6
## 28915     18-30      10
## 28916     35-40       6
## 28917     30-35       7
## 28918     35-40       6
## 28919     18-30      10
## 28920     30-35       7
## 28921     40-50       5
## 28922     30-35       7
## 28923     35-40       6
## 28924     18-30      10
## 28925     50-60       5
## 28926     35-40       6
## 28927     18-30      10
## 28928     18-30      10
## 28929     18-30      10
## 28930     50-60       5
## 28931     18-30      10
## 28932     18-30      10
## 28933     18-30      10
## 28934     40-50       5
## 28935       65+       4
## 28936     50-60       5
## 28937     30-35       7
## 28938     35-40       6
## 28939     30-35       7
## 28940     30-35       7
## 28941     18-30      10
## 28942     30-35       7
## 28943     18-30      10
## 28944     35-40       6
## 28945     35-40       6
## 28946     30-35       7
## 28947     18-30      10
## 28948     40-50       5
## 28949     18-30      10
## 28950     18-30      10
## 28951     30-35       7
## 28952     50-60       5
## 28953     30-35       7
## 28954     30-35       7
## 28955     18-30      10
## 28956     30-35       7
## 28957     30-35       7
## 28958     18-30      10
## 28959     18-30      10
## 28960     18-30      10
## 28961     30-35       7
## 28962     18-30      10
## 28963     40-50       5
## 28964     18-30      10
## 28965     18-30      10
## 28966     30-35       7
## 28967     18-30      10
## 28968     18-30      10
## 28969     30-35       7
## 28970     30-35       7
## 28971     18-30      10
## 28972     30-35       7
## 28973     18-30      10
## 28974     18-30      10
## 28975     40-50       5
## 28976     50-60       5
## 28977     18-30      10
## 28978     35-40       6
## 28979     18-30      10
## 28980     18-30      10
## 28981     18-30      10
## 28982     18-30      10
## 28983     18-30      10
## 28984     30-35       7
## 28985     30-35       7
## 28986     30-35       7
## 28987     35-40       6
## 28988     40-50       5
## 28989     30-35       7
## 28990     18-30      10
## 28991     30-35       7
## 28992     30-35       7
## 28993     18-30      10
## 28994     18-30      10
## 28995     40-50       5
## 28996     35-40       6
## 28997     35-40       6
## 28998     18-30      10
## 28999     18-30      10
## 29000     18-30      10
## 29001     18-30      10
## 29002     18-30      10
## 29003     40-50       5
## 29004     18-30      10
## 29005     18-30      10
## 29006     18-30      10
## 29007     18-30      10
## 29008     30-35       7
## 29009     30-35       7
## 29010     18-30      10
## 29011     30-35       7
## 29012     18-30      10
## 29013     18-30      10
## 29014     35-40       6
## 29015     35-40       6
## 29016     40-50       5
## 29017     40-50       5
## 29018     18-30      10
## 29019     50-60       5
## 29020     40-50       5
## 29021     40-50       5
## 29022     30-35       7
## 29023     30-35       7
## 29024     30-35       7
## 29025     30-35       7
## 29026     18-30      10
## 29027     40-50       5
## 29028       65+       4
## 29029     40-50       5
## 29030     18-30      10
## 29031     18-30      10
## 29032     18-30      10
## 29033     18-30      10
## 29034     18-30      10
## 29035     40-50       5
## 29036     18-30      10
## 29037     50-60       5
## 29038     35-40       6
## 29039     30-35       7
## 29040     30-35       7
## 29041     18-30      10
## 29042     50-60       5
## 29043     18-30      10
## 29044     18-30      10
## 29045     18-30      10
## 29046     18-30      10
## 29047     18-30      10
## 29048     18-30      10
## 29049     18-30      10
## 29050     30-35       7
## 29051     50-60       5
## 29052       65+       4
## 29053     18-30      10
## 29054     35-40       6
## 29055     30-35       7
## 29056     35-40       6
## 29057     18-30      10
## 29058     18-30      10
## 29059     18-30      10
## 29060     35-40       6
## 29061     30-35       7
## 29062     18-30      10
## 29063     18-30      10
## 29064       65+       4
## 29065     50-60       5
## 29066     18-30      10
## 29067     18-30      10
## 29068     18-30      10
## 29069     18-30      10
## 29070     40-50       5
## 29071     40-50       5
## 29072     18-30      10
## 29073     50-60       5
## 29074     18-30      10
## 29075     40-50       5
## 29076     18-30      10
## 29077     18-30      10
## 29078     18-30      10
## 29079     18-30      10
## 29080     35-40       6
## 29081     18-30      10
## 29082     30-35       7
## 29083     30-35       7
## 29084     18-30      10
## 29085     18-30      10
## 29086     35-40       6
## 29087     18-30      10
## 29088     18-30      10
## 29089     18-30      10
## 29090     18-30      10
## 29091     40-50       5
## 29092     35-40       6
## 29093     18-30      10
## 29094     35-40       6
## 29095     40-50       5
## 29096     18-30      10
## 29097     40-50       5
## 29098     18-30      10
## 29099     30-35       7
## 29100     40-50       5
## 29101     35-40       6
## 29102     40-50       5
## 29103     50-60       5
## 29104     18-30      10
## 29105     18-30      10
## 29106     35-40       6
## 29107     18-30      10
## 29108     30-35       7
## 29109     18-30      10
## 29110     35-40       6
## 29111     18-30      10
## 29112     18-30      10
## 29113     35-40       6
## 29114     40-50       5
## 29115     18-30      10
## 29116     18-30      10
## 29117     35-40       6
## 29118     18-30      10
## 29119     18-30      10
## 29120     18-30      10
## 29121     18-30      10
## 29122     18-30      10
## 29123     30-35       7
## 29124     18-30      10
## 29125     18-30      10
## 29126     18-30      10
## 29127     30-35       7
## 29128     18-30      10
## 29129     35-40       6
## 29130     40-50       5
## 29131     35-40       6
## 29132     50-60       5
## 29133     18-30      10
## 29134     50-60       5
## 29135     18-30      10
## 29136     18-30      10
## 29137     40-50       5
## 29138     18-30      10
## 29139     18-30      10
## 29140     18-30      10
## 29141     40-50       5
## 29142     18-30      10
## 29143     18-30      10
## 29144       65+       4
## 29145     18-30      10
## 29146     35-40       6
## 29147     18-30      10
## 29148     18-30      10
## 29149     30-35       7
## 29150     30-35       7
## 29151     18-30      10
## 29152     50-60       5
## 29153     18-30      10
## 29154     18-30      10
## 29155     18-30      10
## 29156     50-60       5
## 29157     30-35       7
## 29158     35-40       6
## 29159     18-30      10
## 29160     18-30      10
## 29161     35-40       6
## 29162     35-40       6
## 29163     18-30      10
## 29164     30-35       7
## 29165     18-30      10
## 29166     35-40       6
## 29167     40-50       5
## 29168     18-30      10
## 29169     30-35       7
## 29170     35-40       6
## 29171     35-40       6
## 29172     18-30      10
## 29173     30-35       7
## 29174     30-35       7
## 29175     18-30      10
## 29176     35-40       6
## 29177     35-40       6
## 29178     18-30      10
## 29179     30-35       7
## 29180     30-35       7
## 29181     18-30      10
## 29182     35-40       6
## 29183     18-30      10
## 29184     30-35       7
## 29185     30-35       7
## 29186     40-50       5
## 29187     18-30      10
## 29188     40-50       5
## 29189     35-40       6
## 29190     18-30      10
## 29191     18-30      10
## 29192     18-30      10
## 29193     18-30      10
## 29194     18-30      10
## 29195     18-30      10
## 29196     18-30      10
## 29197     18-30      10
## 29198     30-35       7
## 29199     35-40       6
## 29200     35-40       6
## 29201     30-35       7
## 29202     30-35       7
## 29203     35-40       6
## 29204     18-30      10
## 29205     18-30      10
## 29206     18-30      10
## 29207     18-30      10
## 29208     40-50       5
## 29209     30-35       7
## 29210     30-35       7
## 29211     50-60       5
## 29212     30-35       7
## 29213     18-30      10
## 29214     18-30      10
## 29215     18-30      10
## 29216     18-30      10
## 29217     18-30      10
## 29218     35-40       6
## 29219     30-35       7
## 29220     35-40       6
## 29221     18-30      10
## 29222     30-35       7
## 29223     35-40       6
## 29224     18-30      10
## 29225     18-30      10
## 29226     18-30      10
## 29227     18-30      10
## 29228     30-35       7
## 29229     18-30      10
## 29230     18-30      10
## 29231     18-30      10
## 29232     30-35       7
## 29233     35-40       6
## 29234     18-30      10
## 29235     35-40       6
## 29236     30-35       7
## 29237     18-30      10
## 29238     18-30      10
## 29239     18-30      10
## 29240     30-35       7
## 29241     18-30      10
## 29242     30-35       7
## 29243     35-40       6
## 29244     18-30      10
## 29245     40-50       5
## 29246     18-30      10
## 29247     30-35       7
## 29248     40-50       5
## 29249     40-50       5
## 29250     18-30      10
## 29251     18-30      10
## 29252     18-30      10
## 29253     30-35       7
## 29254       65+       4
## 29255     18-30      10
## 29256     18-30      10
## 29257     18-30      10
## 29258     30-35       7
## 29259     35-40       6
## 29260     18-30      10
## 29261     35-40       6
## 29262     18-30      10
## 29263     35-40       6
## 29264     35-40       6
## 29265     18-30      10
## 29266     18-30      10
## 29267     18-30      10
## 29268     30-35       7
## 29269     30-35       7
## 29270     18-30      10
## 29271     18-30      10
## 29272     30-35       7
## 29273     40-50       5
## 29274     18-30      10
## 29275     18-30      10
## 29276     18-30      10
## 29277       65+       4
## 29278     18-30      10
## 29279     18-30      10
## 29280     18-30      10
## 29281     18-30      10
## 29282     18-30      10
## 29283     18-30      10
## 29284     18-30      10
## 29285     40-50       5
## 29286     18-30      10
## 29287     35-40       6
## 29288     40-50       5
## 29289     18-30      10
## 29290     30-35       7
## 29291     18-30      10
## 29292     18-30      10
## 29293     30-35       7
## 29294     18-30      10
## 29295     30-35       7
## 29296     30-35       7
## 29297     18-30      10
## 29298     40-50       5
## 29299     30-35       7
## 29300     30-35       7
## 29301     18-30      10
## 29302     18-30      10
## 29303     18-30      10
## 29304     18-30      10
## 29305     50-60       5
## 29306     18-30      10
## 29307     40-50       5
## 29308     18-30      10
## 29309     18-30      10
## 29310       65+       4
## 29311     35-40       6
## 29312     18-30      10
## 29313     18-30      10
## 29314     18-30      10
## 29315     18-30      10
## 29316     18-30      10
## 29317     40-50       5
## 29318     18-30      10
## 29319     18-30      10
## 29320     18-30      10
## 29321     18-30      10
## 29322     18-30      10
## 29323     18-30      10
## 29324     18-30      10
## 29325     40-50       5
## 29326     35-40       6
## 29327     50-60       5
## 29328     40-50       5
## 29329     18-30      10
## 29330     18-30      10
## 29331     30-35       7
## 29332     30-35       7
## 29333     18-30      10
## 29334     35-40       6
## 29335     18-30      10
## 29336     18-30      10
## 29337     40-50       5
## 29338     18-30      10
## 29339     18-30      10
## 29340     30-35       7
## 29341     30-35       7
## 29342     18-30      10
## 29343     18-30      10
## 29344     35-40       6
## 29345     18-30      10
## 29346     35-40       6
## 29347     18-30      10
## 29348     18-30      10
## 29349     18-30      10
## 29350     18-30      10
## 29351     18-30      10
## 29352     18-30      10
## 29353     30-35       7
## 29354     18-30      10
## 29355     30-35       7
## 29356     18-30      10
## 29357     18-30      10
## 29358     30-35       7
## 29359     18-30      10
## 29360     18-30      10
## 29361     18-30      10
## 29362     18-30      10
## 29363     30-35       7
## 29364     35-40       6
## 29365     18-30      10
## 29366     18-30      10
## 29367     18-30      10
## 29368     50-60       5
## 29369     40-50       5
## 29370       65+       4
## 29371     18-30      10
## 29372     30-35       7
## 29373     35-40       6
## 29374     18-30      10
## 29375     18-30      10
## 29376     40-50       5
## 29377     18-30      10
## 29378     30-35       7
## 29379     18-30      10
## 29380     18-30      10
## 29381     30-35       7
## 29382     30-35       7
## 29383     18-30      10
## 29384     18-30      10
## 29385     18-30      10
## 29386     40-50       5
## 29387     18-30      10
## 29388     35-40       6
## 29389     35-40       6
## 29390     30-35       7
## 29391     18-30      10
## 29392     18-30      10
## 29393     18-30      10
## 29394     30-35       7
## 29395     18-30      10
## 29396     18-30      10
## 29397     18-30      10
## 29398     18-30      10
## 29399     18-30      10
## 29400     18-30      10
## 29401     40-50       5
## 29402     18-30      10
## 29403     30-35       7
## 29404     30-35       7
## 29405     18-30      10
## 29406     40-50       5
## 29407     18-30      10
## 29408     40-50       5
## 29409     18-30      10
## 29410     18-30      10
## 29411     18-30      10
## 29412     35-40       6
## 29413     30-35       7
## 29414     30-35       7
## 29415     30-35       7
## 29416     18-30      10
## 29417     18-30      10
## 29418     18-30      10
## 29419     18-30      10
## 29420     18-30      10
## 29421     18-30      10
## 29422     18-30      10
## 29423     18-30      10
## 29424     18-30      10
## 29425     40-50       5
## 29426     18-30      10
## 29427     18-30      10
## 29428     18-30      10
## 29429     40-50       5
## 29430     30-35       7
## 29431     35-40       6
## 29432     30-35       7
## 29433     18-30      10
## 29434     18-30      10
## 29435     30-35       7
## 29436     18-30      10
## 29437     18-30      10
## 29438     30-35       7
## 29439     40-50       5
## 29440       65+       4
## 29441     18-30      10
## 29442     35-40       6
## 29443     18-30      10
## 29444     18-30      10
## 29445     18-30      10
## 29446     18-30      10
## 29447     35-40       6
## 29448     18-30      10
## 29449     18-30      10
## 29450     18-30      10
## 29451     35-40       6
## 29452       65+       4
## 29453     40-50       5
## 29454     30-35       7
## 29455     18-30      10
## 29456     18-30      10
## 29457     35-40       6
## 29458     18-30      10
## 29459     40-50       5
## 29460     18-30      10
## 29461     18-30      10
## 29462     18-30      10
## 29463       65+       4
## 29464     35-40       6
## 29465     18-30      10
## 29466     35-40       6
## 29467     18-30      10
## 29468     18-30      10
## 29469     18-30      10
## 29470     18-30      10
## 29471     18-30      10
## 29472     30-35       7
## 29473     35-40       6
## 29474     18-30      10
## 29475     35-40       6
## 29476     35-40       6
## 29477     18-30      10
## 29478     30-35       7
## 29479     18-30      10
## 29480     40-50       5
## 29481     40-50       5
## 29482     18-30      10
## 29483     35-40       6
## 29484     40-50       5
## 29485     30-35       7
## 29486     18-30      10
## 29487     18-30      10
## 29488     18-30      10
## 29489     40-50       5
## 29490     30-35       7
## 29491     30-35       7
## 29492     40-50       5
## 29493     18-30      10
## 29494     30-35       7
## 29495     18-30      10
## 29496     18-30      10
## 29497     18-30      10
## 29498     40-50       5
## 29499     40-50       5
## 29500     18-30      10
## 29501     30-35       7
## 29502     18-30      10
## 29503     35-40       6
## 29504     35-40       6
## 29505     18-30      10
## 29506     18-30      10
## 29507     30-35       7
## 29508     18-30      10
## 29509     40-50       5
## 29510     18-30      10
## 29511     40-50       5
## 29512     30-35       7
## 29513     30-35       7
## 29514     18-30      10
## 29515     40-50       5
## 29516     18-30      10
## 29517     35-40       6
## 29518     18-30      10
## 29519     18-30      10
## 29520     40-50       5
## 29521     18-30      10
## 29522     35-40       6
## 29523     30-35       7
## 29524     18-30      10
## 29525     30-35       7
## 29526     35-40       6
## 29527     18-30      10
## 29528     35-40       6
## 29529     40-50       5
## 29530     18-30      10
## 29531     30-35       7
## 29532     18-30      10
## 29533     18-30      10
## 29534     35-40       6
## 29535     30-35       7
## 29536     30-35       7
## 29537     35-40       6
## 29538       65+       4
## 29539     18-30      10
## 29540     18-30      10
## 29541     18-30      10
## 29542     18-30      10
## 29543     18-30      10
## 29544     18-30      10
## 29545     35-40       6
## 29546     40-50       5
## 29547     18-30      10
## 29548     18-30      10
## 29549     40-50       5
## 29550     30-35       7
## 29551     18-30      10
## 29552     18-30      10
## 29553     50-60       5
## 29554     18-30      10
## 29555     30-35       7
## 29556     40-50       5
## 29557     40-50       5
## 29558     18-30      10
## 29559     40-50       5
## 29560     30-35       7
## 29561     30-35       7
## 29562     35-40       6
## 29563     18-30      10
## 29564     40-50       5
## 29565     18-30      10
## 29566     18-30      10
## 29567     40-50       5
## 29568     18-30      10
## 29569     30-35       7
## 29570     40-50       5
## 29571     30-35       7
## 29572     18-30      10
## 29573     18-30      10
## 29574     18-30      10
## 29575     18-30      10
## 29576     18-30      10
## 29577     30-35       7
## 29578     35-40       6
## 29579     18-30      10
## 29580     40-50       5
## 29581     18-30      10
## 29582     40-50       5
## 29583     30-35       7
## 29584     18-30      10
## 29585     18-30      10
## 29586     18-30      10
## 29587     18-30      10
## 29588     18-30      10
## 29589     18-30      10
## 29590     18-30      10
## 29591     18-30      10
## 29592     40-50       5
## 29593     18-30      10
## 29594     30-35       7
## 29595     50-60       5
## 29596     18-30      10
## 29597     30-35       7
## 29598     35-40       6
## 29599     30-35       7
## 29600     30-35       7
## 29601     30-35       7
## 29602     35-40       6
## 29603     18-30      10
## 29604     40-50       5
## 29605     35-40       6
## 29606     35-40       6
## 29607     18-30      10
## 29608     18-30      10
## 29609     18-30      10
## 29610     35-40       6
## 29611     30-35       7
## 29612     18-30      10
## 29613     50-60       5
## 29614     18-30      10
## 29615     35-40       6
## 29616     18-30      10
## 29617     18-30      10
## 29618     35-40       6
## 29619     18-30      10
## 29620     18-30      10
## 29621     30-35       7
## 29622     18-30      10
## 29623     18-30      10
## 29624     18-30      10
## 29625     18-30      10
## 29626     18-30      10
## 29627     18-30      10
## 29628     18-30      10
## 29629     18-30      10
## 29630     30-35       7
## 29631     40-50       5
## 29632     35-40       6
## 29633     18-30      10
## 29634     35-40       6
## 29635     35-40       6
## 29636     18-30      10
## 29637     18-30      10
## 29638     18-30      10
## 29639     18-30      10
## 29640     18-30      10
## 29641     18-30      10
## 29642     30-35       7
## 29643     40-50       5
## 29644     40-50       5
## 29645     18-30      10
## 29646     40-50       5
## 29647     18-30      10
## 29648     35-40       6
## 29649     50-60       5
## 29650       65+       4
## 29651     40-50       5
## 29652     40-50       5
## 29653     18-30      10
## 29654     40-50       5
## 29655     18-30      10
## 29656     35-40       6
## 29657     40-50       5
## 29658     18-30      10
## 29659     35-40       6
## 29660     18-30      10
## 29661     40-50       5
## 29662     18-30      10
## 29663     30-35       7
## 29664     18-30      10
## 29665     35-40       6
## 29666     30-35       7
## 29667     30-35       7
## 29668     40-50       5
## 29669     18-30      10
## 29670     40-50       5
## 29671     35-40       6
## 29672     18-30      10
## 29673     35-40       6
## 29674     18-30      10
## 29675     30-35       7
## 29676     50-60       5
## 29677     40-50       5
## 29678     18-30      10
## 29679     30-35       7
## 29680     18-30      10
## 29681     18-30      10
## 29682     18-30      10
## 29683     30-35       7
## 29684     40-50       5
## 29685       65+       4
## 29686     18-30      10
## 29687     30-35       7
## 29688     18-30      10
## 29689     18-30      10
## 29690     35-40       6
## 29691     40-50       5
## 29692     30-35       7
## 29693     40-50       5
## 29694     40-50       5
## 29695     35-40       6
## 29696     30-35       7
## 29697     30-35       7
## 29698     18-30      10
## 29699     35-40       6
## 29700     18-30      10
## 29701     18-30      10
## 29702     30-35       7
## 29703     50-60       5
## 29704     18-30      10
## 29705     30-35       7
## 29706     30-35       7
## 29707     40-50       5
## 29708     40-50       5
## 29709     18-30      10
## 29710     35-40       6
## 29711     30-35       7
## 29712     40-50       5
## 29713     30-35       7
## 29714     18-30      10
## 29715     18-30      10
## 29716     40-50       5
## 29717     18-30      10
## 29718     18-30      10
## 29719     18-30      10
## 29720     18-30      10
## 29721     40-50       5
## 29722     35-40       6
## 29723     18-30      10
## 29724     18-30      10
## 29725     30-35       7
## 29726     40-50       5
## 29727     30-35       7
## 29728     30-35       7
## 29729     30-35       7
## 29730     40-50       5
## 29731     30-35       7
## 29732     30-35       7
## 29733     35-40       6
## 29734     18-30      10
## 29735     18-30      10
## 29736     18-30      10
## 29737     18-30      10
## 29738     18-30      10
## 29739     18-30      10
## 29740     18-30      10
## 29741     40-50       5
## 29742     18-30      10
## 29743     18-30      10
## 29744     18-30      10
## 29745     35-40       6
## 29746     30-35       7
## 29747     50-60       5
## 29748     35-40       6
## 29749     18-30      10
## 29750     18-30      10
## 29751     18-30      10
## 29752     18-30      10
## 29753     18-30      10
## 29754     18-30      10
## 29755     30-35       7
## 29756     35-40       6
## 29757     18-30      10
## 29758     18-30      10
## 29759     30-35       7
## 29760     18-30      10
## 29761     30-35       7
## 29762     18-30      10
## 29763     18-30      10
## 29764     35-40       6
## 29765     18-30      10
## 29766     35-40       6
## 29767     30-35       7
## 29768     18-30      10
## 29769     18-30      10
## 29770     18-30      10
## 29771     18-30      10
## 29772     50-60       5
## 29773     40-50       5
## 29774     18-30      10
## 29775     18-30      10
## 29776     18-30      10
## 29777     18-30      10
## 29778     30-35       7
## 29779     18-30      10
## 29780     30-35       7
## 29781     18-30      10
## 29782     18-30      10
## 29783     30-35       7
## 29784     18-30      10
## 29785     40-50       5
## 29786     35-40       6
## 29787     35-40       6
## 29788     30-35       7
## 29789     18-30      10
## 29790     40-50       5
## 29791     30-35       7
## 29792     35-40       6
## 29793     18-30      10
## 29794     40-50       5
## 29795     18-30      10
## 29796     18-30      10
## 29797     18-30      10
## 29798     30-35       7
## 29799     18-30      10
## 29800     18-30      10
## 29801     30-35       7
## 29802     40-50       5
## 29803     18-30      10
## 29804     40-50       5
## 29805     30-35       7
## 29806     18-30      10
## 29807     18-30      10
## 29808     18-30      10
## 29809     18-30      10
## 29810     18-30      10
## 29811     18-30      10
## 29812     30-35       7
## 29813     18-30      10
## 29814     40-50       5
## 29815     18-30      10
## 29816     18-30      10
## 29817     35-40       6
## 29818     18-30      10
## 29819     40-50       5
## 29820     18-30      10
## 29821     18-30      10
## 29822     30-35       7
## 29823     18-30      10
## 29824     30-35       7
## 29825     18-30      10
## 29826     30-35       7
## 29827     18-30      10
## 29828     18-30      10
## 29829     35-40       6
## 29830     30-35       7
## 29831     40-50       5
## 29832     18-30      10
## 29833     30-35       7
## 29834     18-30      10
## 29835     40-50       5
## 29836     18-30      10
## 29837     18-30      10
## 29838     18-30      10
## 29839     30-35       7
## 29840     18-30      10
## 29841     18-30      10
## 29842     18-30      10
## 29843     18-30      10
## 29844     30-35       7
## 29845       65+       4
## 29846     18-30      10
## 29847     30-35       7
## 29848     18-30      10
## 29849     40-50       5
## 29850     30-35       7
## 29851     18-30      10
## 29852     18-30      10
## 29853     35-40       6
## 29854     30-35       7
## 29855     18-30      10
## 29856     50-60       5
## 29857     18-30      10
## 29858     18-30      10
## 29859     40-50       5
## 29860     18-30      10
## 29861     18-30      10
## 29862     30-35       7
## 29863     18-30      10
## 29864     18-30      10
## 29865     18-30      10
## 29866     40-50       5
## 29867     18-30      10
## 29868     35-40       6
## 29869     50-60       5
## 29870     18-30      10
## 29871       65+       4
## 29872     40-50       5
## 29873       65+       4
## 29874     18-30      10
## 29875     30-35       7
## 29876     35-40       6
## 29877     40-50       5
## 29878     30-35       7
## 29879     30-35       7
## 29880     35-40       6
## 29881     18-30      10
## 29882     18-30      10
## 29883     18-30      10
## 29884     40-50       5
## 29885     40-50       5
## 29886     50-60       5
## 29887     50-60       5
## 29888     30-35       7
## 29889     18-30      10
## 29890     40-50       5
## 29891     30-35       7
## 29892     30-35       7
## 29893     18-30      10
## 29894     18-30      10
## 29895     40-50       5
## 29896     18-30      10
## 29897     35-40       6
## 29898     18-30      10
## 29899     18-30      10
## 29900     18-30      10
## 29901     18-30      10
## 29902     18-30      10
## 29903     18-30      10
## 29904     40-50       5
## 29905       65+       4
## 29906     30-35       7
## 29907     30-35       7
## 29908     30-35       7
## 29909     35-40       6
## 29910     18-30      10
## 29911     18-30      10
## 29912     18-30      10
## 29913     35-40       6
## 29914     18-30      10
## 29915     35-40       6
## 29916     40-50       5
## 29917     35-40       6
## 29918     18-30      10
## 29919     18-30      10
## 29920     50-60       5
## 29921     30-35       7
## 29922     35-40       6
## 29923     18-30      10
## 29924     18-30      10
## 29925     18-30      10
## 29926     35-40       6
## 29927     18-30      10
## 29928       65+       4
## 29929     18-30      10
## 29930     40-50       5
## 29931     35-40       6
## 29932     30-35       7
## 29933     35-40       6
## 29934     40-50       5
## 29935     18-30      10
## 29936     18-30      10
## 29937     40-50       5
## 29938     18-30      10
## 29939     30-35       7
## 29940     30-35       7
## 29941     30-35       7
## 29942     18-30      10
## 29943     18-30      10
## 29944     35-40       6
## 29945     30-35       7
## 29946     40-50       5
## 29947     50-60       5
## 29948     18-30      10
## 29949     18-30      10
## 29950     40-50       5
## 29951     18-30      10
## 29952     35-40       6
## 29953       65+       4
## 29954     30-35       7
## 29955     30-35       7
## 29956     18-30      10
## 29957     18-30      10
## 29958     18-30      10
## 29959     18-30      10
## 29960     18-30      10
## 29961     40-50       5
## 29962     30-35       7
## 29963     30-35       7
## 29964     50-60       5
## 29965     18-30      10
## 29966     18-30      10
## 29967     35-40       6
## 29968     35-40       6
## 29969     50-60       5
## 29970     18-30      10
## 29971     18-30      10
## 29972     30-35       7
## 29973     18-30      10
## 29974     18-30      10
## 29975     40-50       5
## 29976     18-30      10
## 29977     40-50       5
## 29978     18-30      10
## 29979     40-50       5
## 29980     30-35       7
## 29981     40-50       5
## 29982     18-30      10
## 29983     18-30      10
## 29984     18-30      10
## 29985     30-35       7
## 29986     18-30      10
## 29987     50-60       5
## 29988     18-30      10
## 29989     40-50       5
## 29990     50-60       5
## 29991     40-50       5
## 29992     30-35       7
## 29993     18-30      10
## 29994     30-35       7
## 29995     35-40       6
## 29996     18-30      10
## 29997     18-30      10
## 29998     30-35       7
## 29999     40-50       5
## 30000     40-50       5
## 30001     30-35       7
## 30002     18-30      10
## 30003     18-30      10
## 30004     30-35       7
## 30005     18-30      10
## 30006     40-50       5
## 30007     40-50       5
## 30008     40-50       5
## 30009     30-35       7
## 30010     35-40       6
## 30011     18-30      10
## 30012     35-40       6
## 30013     18-30      10
## 30014     18-30      10
## 30015     18-30      10
## 30016     30-35       7
## 30017     18-30      10
## 30018     18-30      10
## 30019     30-35       7
## 30020     18-30      10
## 30021     18-30      10
## 30022     18-30      10
## 30023     18-30      10
## 30024     18-30      10
## 30025     18-30      10
## 30026     18-30      10
## 30027     18-30      10
## 30028     18-30      10
## 30029     18-30      10
## 30030     30-35       7
## 30031     35-40       6
## 30032     40-50       5
## 30033     18-30      10
## 30034     35-40       6
## 30035     18-30      10
## 30036     35-40       6
## 30037     30-35       7
## 30038     30-35       7
## 30039     18-30      10
## 30040     18-30      10
## 30041     18-30      10
## 30042     50-60       5
## 30043     18-30      10
## 30044     18-30      10
## 30045     18-30      10
## 30046     18-30      10
## 30047     30-35       7
## 30048     18-30      10
## 30049     30-35       7
## 30050     30-35       7
## 30051     18-30      10
## 30052     30-35       7
## 30053     30-35       7
## 30054     40-50       5
## 30055     30-35       7
## 30056     40-50       5
## 30057     18-30      10
## 30058     18-30      10
## 30059     30-35       7
## 30060     18-30      10
## 30061     18-30      10
## 30062     18-30      10
## 30063     35-40       6
## 30064     18-30      10
## 30065     30-35       7
## 30066     30-35       7
## 30067     30-35       7
## 30068     50-60       5
## 30069     18-30      10
## 30070     30-35       7
## 30071     30-35       7
## 30072     35-40       6
## 30073     18-30      10
## 30074     30-35       7
## 30075     18-30      10
## 30076     18-30      10
## 30077     18-30      10
## 30078     18-30      10
## 30079     30-35       7
## 30080     50-60       5
## 30081       65+       4
## 30082     18-30      10
## 30083     18-30      10
## 30084     35-40       6
## 30085     18-30      10
## 30086     30-35       7
## 30087     18-30      10
## 30088     18-30      10
## 30089     50-60       5
## 30090     50-60       5
## 30091     35-40       6
## 30092     18-30      10
## 30093     18-30      10
## 30094     40-50       5
## 30095     18-30      10
## 30096     50-60       5
## 30097     18-30      10
## 30098     18-30      10
## 30099     18-30      10
## 30100     30-35       7
## 30101     40-50       5
## 30102     18-30      10
## 30103     30-35       7
## 30104     18-30      10
## 30105     30-35       7
## 30106     18-30      10
## 30107     18-30      10
## 30108     30-35       7
## 30109     18-30      10
## 30110     18-30      10
## 30111     30-35       7
## 30112     40-50       5
## 30113     50-60       5
## 30114     18-30      10
## 30115     30-35       7
## 30116     18-30      10
## 30117     18-30      10
## 30118     18-30      10
## 30119     18-30      10
## 30120     18-30      10
## 30121     18-30      10
## 30122     18-30      10
## 30123     18-30      10
## 30124     18-30      10
## 30125     18-30      10
## 30126     18-30      10
## 30127     18-30      10
## 30128     50-60       5
## 30129     18-30      10
## 30130     30-35       7
## 30131     18-30      10
## 30132     40-50       5
## 30133     18-30      10
## 30134     18-30      10
## 30135     18-30      10
## 30136     18-30      10
## 30137     18-30      10
## 30138     18-30      10
## 30139     18-30      10
## 30140     18-30      10
## 30141     35-40       6
## 30142     18-30      10
## 30143     40-50       5
## 30144     35-40       6
## 30145     40-50       5
## 30146     18-30      10
## 30147     18-30      10
## 30148     18-30      10
## 30149     18-30      10
## 30150     50-60       5
## 30151     18-30      10
## 30152     18-30      10
## 30153     40-50       5
## 30154     18-30      10
## 30155     18-30      10
## 30156     18-30      10
## 30157     18-30      10
## 30158     18-30      10
## 30159     18-30      10
## 30160     30-35       7
## 30161     18-30      10
## 30162     18-30      10
## 30163     30-35       7
## 30164     18-30      10
## 30165     18-30      10
## 30166     40-50       5
## 30167     18-30      10
## 30168       65+       4
## 30169     30-35       7
## 30170     18-30      10
## 30171     18-30      10
## 30172     18-30      10
## 30173     40-50       5
## 30174     18-30      10
## 30175     18-30      10
## 30176     30-35       7
## 30177     40-50       5
## 30178     18-30      10
## 30179     40-50       5
## 30180     18-30      10
## 30181     18-30      10
## 30182     18-30      10
## 30183     18-30      10
## 30184     40-50       5
## 30185     35-40       6
## 30186     18-30      10
## 30187     18-30      10
## 30188     18-30      10
## 30189     30-35       7
## 30190     18-30      10
## 30191     35-40       6
## 30192       65+       4
## 30193     35-40       6
## 30194     35-40       6
## 30195     35-40       6
## 30196     35-40       6
## 30197     18-30      10
## 30198     18-30      10
## 30199     35-40       6
## 30200     18-30      10
## 30201     18-30      10
## 30202     40-50       5
## 30203     35-40       6
## 30204     18-30      10
## 30205     18-30      10
## 30206     50-60       5
## 30207     50-60       5
## 30208     40-50       5
## 30209     18-30      10
## 30210     18-30      10
## 30211     18-30      10
## 30212     30-35       7
## 30213     40-50       5
## 30214     50-60       5
## 30215     18-30      10
## 30216     30-35       7
## 30217     18-30      10
## 30218     18-30      10
## 30219     18-30      10
## 30220     18-30      10
## 30221     40-50       5
## 30222     18-30      10
## 30223     18-30      10
## 30224     18-30      10
## 30225     18-30      10
## 30226     40-50       5
## 30227     40-50       5
## 30228     30-35       7
## 30229     40-50       5
## 30230     18-30      10
## 30231       65+       4
## 30232     35-40       6
## 30233     30-35       7
## 30234     35-40       6
## 30235     18-30      10
## 30236     50-60       5
## 30237     35-40       6
## 30238     30-35       7
## 30239     18-30      10
## 30240     40-50       5
## 30241     18-30      10
## 30242     18-30      10
## 30243     30-35       7
## 30244     30-35       7
## 30245     18-30      10
## 30246     40-50       5
## 30247     35-40       6
## 30248     18-30      10
## 30249     50-60       5
## 30250     30-35       7
## 30251     40-50       5
## 30252     30-35       7
## 30253     18-30      10
## 30254     40-50       5
## 30255     40-50       5
## 30256     30-35       7
## 30257     40-50       5
## 30258     30-35       7
## 30259     40-50       5
## 30260     40-50       5
## 30261     18-30      10
## 30262     18-30      10
## 30263     40-50       5
## 30264     35-40       6
## 30265     18-30      10
## 30266     18-30      10
## 30267     30-35       7
## 30268     18-30      10
## 30269     50-60       5
## 30270     30-35       7
## 30271     18-30      10
## 30272     30-35       7
## 30273     18-30      10
## 30274     30-35       7
## 30275     50-60       5
## 30276     18-30      10
## 30277     35-40       6
## 30278     40-50       5
## 30279     18-30      10
## 30280     18-30      10
## 30281     18-30      10
## 30282     18-30      10
## 30283     35-40       6
## 30284     18-30      10
## 30285     18-30      10
## 30286     18-30      10
## 30287     18-30      10
## 30288     18-30      10
## 30289     30-35       7
## 30290     40-50       5
## 30291     18-30      10
## 30292     50-60       5
## 30293     18-30      10
## 30294     35-40       6
## 30295     35-40       6
## 30296     35-40       6
## 30297     35-40       6
## 30298     18-30      10
## 30299     18-30      10
## 30300     18-30      10
## 30301     30-35       7
## 30302     30-35       7
## 30303     35-40       6
## 30304     18-30      10
## 30305     18-30      10
## 30306     18-30      10
## 30307     40-50       5
## 30308     18-30      10
## 30309     18-30      10
## 30310     30-35       7
## 30311     18-30      10
## 30312     18-30      10
## 30313     35-40       6
## 30314     40-50       5
## 30315     18-30      10
## 30316     18-30      10
## 30317     50-60       5
## 30318     18-30      10
## 30319     18-30      10
## 30320     18-30      10
## 30321     40-50       5
## 30322     18-30      10
## 30323     18-30      10
## 30324     30-35       7
## 30325     18-30      10
## 30326     30-35       7
## 30327     30-35       7
## 30328     40-50       5
## 30329     18-30      10
## 30330     50-60       5
## 30331     18-30      10
## 30332     18-30      10
## 30333     18-30      10
## 30334     18-30      10
## 30335     30-35       7
## 30336     18-30      10
## 30337     35-40       6
## 30338     18-30      10
## 30339     18-30      10
## 30340     18-30      10
## 30341     18-30      10
## 30342       65+       4
## 30343     18-30      10
## 30344     35-40       6
## 30345       65+       4
## 30346     18-30      10
## 30347     18-30      10
## 30348     30-35       7
## 30349     30-35       7
## 30350     40-50       5
## 30351     18-30      10
## 30352     18-30      10
## 30353     40-50       5
## 30354     18-30      10
## 30355     18-30      10
## 30356     30-35       7
## 30357     18-30      10
## 30358     18-30      10
## 30359     18-30      10
## 30360     18-30      10
## 30361     30-35       7
## 30362     18-30      10
## 30363     35-40       6
## 30364       65+       4
## 30365     18-30      10
## 30366     18-30      10
## 30367     18-30      10
## 30368     18-30      10
## 30369     30-35       7
## 30370     18-30      10
## 30371     30-35       7
## 30372     40-50       5
## 30373     18-30      10
## 30374     30-35       7
## 30375     18-30      10
## 30376     50-60       5
## 30377     18-30      10
## 30378     18-30      10
## 30379     35-40       6
## 30380     30-35       7
## 30381     18-30      10
## 30382     18-30      10
## 30383     30-35       7
## 30384     18-30      10
## 30385     30-35       7
## 30386     30-35       7
## 30387     40-50       5
## 30388     18-30      10
## 30389     30-35       7
## 30390     18-30      10
## 30391     30-35       7
## 30392     18-30      10
## 30393     18-30      10
## 30394     18-30      10
## 30395     18-30      10
## 30396     30-35       7
## 30397     18-30      10
## 30398     18-30      10
## 30399     30-35       7
## 30400     30-35       7
## 30401     18-30      10
## 30402     18-30      10
## 30403     30-35       7
## 30404     18-30      10
## 30405     35-40       6
## 30406     18-30      10
## 30407     18-30      10
## 30408     18-30      10
## 30409       65+       4
## 30410     18-30      10
## 30411     35-40       6
## 30412     35-40       6
## 30413     50-60       5
## 30414     30-35       7
## 30415     18-30      10
## 30416     35-40       6
## 30417     18-30      10
## 30418     30-35       7
## 30419     40-50       5
## 30420     18-30      10
## 30421     30-35       7
## 30422     18-30      10
## 30423     50-60       5
## 30424     30-35       7
## 30425     30-35       7
## 30426     50-60       5
## 30427     30-35       7
## 30428     40-50       5
## 30429     18-30      10
## 30430     35-40       6
## 30431     18-30      10
## 30432     18-30      10
## 30433     18-30      10
## 30434     18-30      10
## 30435     18-30      10
## 30436     18-30      10
## 30437     35-40       6
## 30438     18-30      10
## 30439     30-35       7
## 30440     18-30      10
## 30441     18-30      10
## 30442     18-30      10
## 30443     18-30      10
## 30444     18-30      10
## 30445     50-60       5
## 30446     18-30      10
## 30447     18-30      10
## 30448     35-40       6
## 30449     40-50       5
## 30450     18-30      10
## 30451     40-50       5
## 30452     35-40       6
## 30453     18-30      10
## 30454     35-40       6
## 30455     35-40       6
## 30456     18-30      10
## 30457     35-40       6
## 30458     18-30      10
## 30459       65+       4
## 30460     18-30      10
## 30461     50-60       5
## 30462     30-35       7
## 30463     35-40       6
## 30464     18-30      10
## 30465     40-50       5
## 30466     18-30      10
## 30467     18-30      10
## 30468     35-40       6
## 30469     18-30      10
## 30470     30-35       7
## 30471     18-30      10
## 30472     40-50       5
## 30473     30-35       7
## 30474     18-30      10
## 30475     18-30      10
## 30476     18-30      10
## 30477     40-50       5
## 30478     18-30      10
## 30479     35-40       6
## 30480     18-30      10
## 30481     18-30      10
## 30482     40-50       5
## 30483     35-40       6
## 30484     18-30      10
## 30485     18-30      10
## 30486     30-35       7
## 30487     30-35       7
## 30488     50-60       5
## 30489     18-30      10
## 30490     30-35       7
## 30491     35-40       6
## 30492     18-30      10
## 30493     50-60       5
## 30494     40-50       5
## 30495     35-40       6
## 30496     30-35       7
## 30497     35-40       6
## 30498     30-35       7
## 30499     18-30      10
## 30500     30-35       7
## 30501     18-30      10
## 30502     30-35       7
## 30503     30-35       7
## 30504     40-50       5
## 30505     40-50       5
## 30506     18-30      10
## 30507     40-50       5
## 30508     30-35       7
## 30509     40-50       5
## 30510     35-40       6
## 30511     18-30      10
## 30512     18-30      10
## 30513     18-30      10
## 30514     50-60       5
## 30515     18-30      10
## 30516     18-30      10
## 30517     18-30      10
## 30518     30-35       7
## 30519     18-30      10
## 30520     40-50       5
## 30521     30-35       7
## 30522     50-60       5
## 30523     40-50       5
## 30524     50-60       5
## 30525     40-50       5
## 30526     18-30      10
## 30527     40-50       5
## 30528     40-50       5
## 30529     30-35       7
## 30530     18-30      10
## 30531     50-60       5
## 30532     18-30      10
## 30533     18-30      10
## 30534     30-35       7
## 30535     40-50       5
## 30536     30-35       7
## 30537     30-35       7
## 30538     35-40       6
## 30539     18-30      10
## 30540     40-50       5
## 30541     18-30      10
## 30542     30-35       7
## 30543     18-30      10
## 30544     18-30      10
## 30545     35-40       6
## 30546     18-30      10
## 30547     30-35       7
## 30548     50-60       5
## 30549     40-50       5
## 30550     30-35       7
## 30551     35-40       6
## 30552     35-40       6
## 30553     18-30      10
## 30554     18-30      10
## 30555     18-30      10
## 30556     35-40       6
## 30557     18-30      10
## 30558     40-50       5
## 30559       65+       4
## 30560     30-35       7
## 30561     18-30      10
## 30562     40-50       5
## 30563       65+       4
## 30564     18-30      10
## 30565     18-30      10
## 30566     30-35       7
## 30567     18-30      10
## 30568     50-60       5
## 30569     40-50       5
## 30570     40-50       5
## 30571     40-50       5
## 30572     18-30      10
## 30573     50-60       5
## 30574     18-30      10
## 30575     30-35       7
## 30576     40-50       5
## 30577     18-30      10
## 30578     35-40       6
## 30579     50-60       5
## 30580     18-30      10
## 30581     50-60       5
## 30582     18-30      10
## 30583     18-30      10
## 30584     18-30      10
## 30585     18-30      10
## 30586     50-60       5
## 30587     18-30      10
## 30588     40-50       5
## 30589     50-60       5
## 30590     18-30      10
## 30591     35-40       6
## 30592     18-30      10
## 30593     35-40       6
## 30594     18-30      10
## 30595     30-35       7
## 30596     18-30      10
## 30597     40-50       5
## 30598     40-50       5
## 30599     18-30      10
## 30600     30-35       7
## 30601     30-35       7
## 30602     30-35       7
## 30603     40-50       5
## 30604     35-40       6
## 30605     35-40       6
## 30606     18-30      10
## 30607     40-50       5
## 30608     18-30      10
## 30609     18-30      10
## 30610     40-50       5
## 30611     18-30      10
## 30612     18-30      10
## 30613     18-30      10
## 30614     18-30      10
## 30615     50-60       5
## 30616     40-50       5
## 30617     18-30      10
## 30618     18-30      10
## 30619     18-30      10
## 30620     18-30      10
## 30621     30-35       7
## 30622     35-40       6
## 30623     18-30      10
## 30624     30-35       7
## 30625     50-60       5
## 30626     18-30      10
## 30627     18-30      10
## 30628     30-35       7
## 30629     40-50       5
## 30630     18-30      10
## 30631     30-35       7
## 30632     18-30      10
## 30633     35-40       6
## 30634     18-30      10
## 30635     30-35       7
## 30636     18-30      10
## 30637     30-35       7
## 30638     40-50       5
## 30639     18-30      10
## 30640     18-30      10
## 30641     18-30      10
## 30642     18-30      10
## 30643     18-30      10
## 30644     18-30      10
## 30645     18-30      10
## 30646     18-30      10
## 30647     30-35       7
## 30648     30-35       7
## 30649     35-40       6
## 30650     35-40       6
## 30651     18-30      10
## 30652     35-40       6
## 30653     18-30      10
## 30654     30-35       7
## 30655     40-50       5
## 30656     18-30      10
## 30657     18-30      10
## 30658     18-30      10
## 30659     18-30      10
## 30660     50-60       5
## 30661     18-30      10
## 30662     18-30      10
## 30663     35-40       6
## 30664     18-30      10
## 30665     18-30      10
## 30666     40-50       5
## 30667     18-30      10
## 30668     40-50       5
## 30669     35-40       6
## 30670     35-40       6
## 30671     18-30      10
## 30672     40-50       5
## 30673       65+       4
## 30674     18-30      10
## 30675     30-35       7
## 30676     30-35       7
## 30677     30-35       7
## 30678     18-30      10
## 30679     18-30      10
## 30680     50-60       5
## 30681     18-30      10
## 30682     30-35       7
## 30683     18-30      10
## 30684     18-30      10
## 30685     35-40       6
## 30686     18-30      10
## 30687     18-30      10
## 30688     40-50       5
## 30689     50-60       5
## 30690     30-35       7
## 30691     18-30      10
## 30692     35-40       6
## 30693     30-35       7
## 30694     18-30      10
## 30695     30-35       7
## 30696     18-30      10
## 30697     40-50       5
## 30698     30-35       7
## 30699     40-50       5
## 30700     30-35       7
## 30701     30-35       7
## 30702     35-40       6
## 30703     18-30      10
## 30704     18-30      10
## 30705     40-50       5
## 30706     18-30      10
## 30707     18-30      10
## 30708     18-30      10
## 30709     18-30      10
## 30710     40-50       5
## 30711     18-30      10
## 30712     18-30      10
## 30713     40-50       5
## 30714     18-30      10
## 30715     35-40       6
## 30716     40-50       5
## 30717       65+       4
## 30718     18-30      10
## 30719     18-30      10
## 30720     18-30      10
## 30721     18-30      10
## 30722     30-35       7
## 30723     18-30      10
## 30724     40-50       5
## 30725     40-50       5
## 30726     30-35       7
## 30727     18-30      10
## 30728     40-50       5
## 30729     40-50       5
## 30730     18-30      10
## 30731     35-40       6
## 30732     40-50       5
## 30733     50-60       5
## 30734     35-40       6
## 30735     30-35       7
## 30736     18-30      10
## 30737     30-35       7
## 30738     30-35       7
## 30739     18-30      10
## 30740     50-60       5
## 30741     18-30      10
## 30742     18-30      10
## 30743     50-60       5
## 30744     30-35       7
## 30745     30-35       7
## 30746     50-60       5
## 30747     18-30      10
## 30748     18-30      10
## 30749     30-35       7
## 30750     18-30      10
## 30751     35-40       6
## 30752     18-30      10
## 30753     40-50       5
## 30754     35-40       6
## 30755     40-50       5
## 30756     18-30      10
## 30757     35-40       6
## 30758     18-30      10
## 30759     50-60       5
## 30760     18-30      10
## 30761     18-30      10
## 30762     35-40       6
## 30763     50-60       5
## 30764     50-60       5
## 30765     18-30      10
## 30766     40-50       5
## 30767     40-50       5
## 30768     30-35       7
## 30769     18-30      10
## 30770     30-35       7
## 30771     18-30      10
## 30772     18-30      10
## 30773     40-50       5
## 30774     50-60       5
## 30775     18-30      10
## 30776     18-30      10
## 30777     18-30      10
## 30778     18-30      10
## 30779     18-30      10
## 30780     18-30      10
## 30781     18-30      10
## 30782     30-35       7
## 30783     18-30      10
## 30784     18-30      10
## 30785     18-30      10
## 30786     40-50       5
## 30787     30-35       7
## 30788     50-60       5
## 30789     18-30      10
## 30790     35-40       6
## 30791     35-40       6
## 30792       65+       4
## 30793     18-30      10
## 30794     18-30      10
## 30795     18-30      10
## 30796     18-30      10
## 30797     18-30      10
## 30798     40-50       5
## 30799     30-35       7
## 30800     18-30      10
## 30801     40-50       5
## 30802     18-30      10
## 30803     35-40       6
## 30804     18-30      10
## 30805     35-40       6
## 30806     18-30      10
## 30807     18-30      10
## 30808     35-40       6
## 30809     18-30      10
## 30810     18-30      10
## 30811     18-30      10
## 30812     40-50       5
## 30813     40-50       5
## 30814     18-30      10
## 30815     18-30      10
## 30816     30-35       7
## 30817     18-30      10
## 30818     40-50       5
## 30819     18-30      10
## 30820     50-60       5
## 30821     40-50       5
## 30822     35-40       6
## 30823     18-30      10
## 30824     18-30      10
## 30825     35-40       6
## 30826     35-40       6
## 30827     18-30      10
## 30828     30-35       7
## 30829     30-35       7
## 30830     18-30      10
## 30831     40-50       5
## 30832     30-35       7
## 30833     30-35       7
## 30834     40-50       5
## 30835     30-35       7
## 30836     35-40       6
## 30837     18-30      10
## 30838     30-35       7
## 30839       65+       4
## 30840     35-40       6
## 30841     30-35       7
## 30842     40-50       5
## 30843     30-35       7
## 30844     18-30      10
## 30845     30-35       7
## 30846     30-35       7
## 30847     18-30      10
## 30848     40-50       5
## 30849     35-40       6
## 30850     35-40       6
## 30851     40-50       5
## 30852     18-30      10
## 30853     40-50       5
## 30854     18-30      10
## 30855     40-50       5
## 30856     35-40       6
## 30857     18-30      10
## 30858     18-30      10
## 30859     18-30      10
## 30860     18-30      10
## 30861     18-30      10
## 30862     40-50       5
## 30863     18-30      10
## 30864     30-35       7
## 30865     35-40       6
## 30866     18-30      10
## 30867     40-50       5
## 30868     18-30      10
## 30869     18-30      10
## 30870     35-40       6
## 30871     40-50       5
## 30872     18-30      10
## 30873     35-40       6
## 30874     18-30      10
## 30875     40-50       5
## 30876     40-50       5
## 30877     18-30      10
## 30878     30-35       7
## 30879     30-35       7
## 30880     30-35       7
## 30881     50-60       5
## 30882     40-50       5
## 30883     18-30      10
## 30884     18-30      10
## 30885     40-50       5
## 30886       65+       4
## 30887     30-35       7
## 30888     18-30      10
## 30889     40-50       5
## 30890     50-60       5
## 30891     30-35       7
## 30892     35-40       6
## 30893     35-40       6
## 30894     18-30      10
## 30895     30-35       7
## 30896     40-50       5
## 30897     18-30      10
## 30898     18-30      10
## 30899     30-35       7
## 30900     35-40       6
## 30901     35-40       6
## 30902     30-35       7
## 30903     18-30      10
## 30904     18-30      10
## 30905       65+       4
## 30906     18-30      10
## 30907     30-35       7
## 30908     18-30      10
## 30909     18-30      10
## 30910     40-50       5
## 30911     18-30      10
## 30912     18-30      10
## 30913     18-30      10
## 30914     40-50       5
## 30915     18-30      10
## 30916     18-30      10
## 30917     18-30      10
## 30918     18-30      10
## 30919     30-35       7
## 30920     50-60       5
## 30921     50-60       5
## 30922     18-30      10
## 30923     18-30      10
## 30924     18-30      10
## 30925     50-60       5
## 30926     30-35       7
## 30927     18-30      10
## 30928     18-30      10
## 30929     18-30      10
## 30930     30-35       7
## 30931     18-30      10
## 30932     18-30      10
## 30933     40-50       5
## 30934     18-30      10
## 30935     30-35       7
## 30936     35-40       6
## 30937     40-50       5
## 30938     18-30      10
## 30939     18-30      10
## 30940     18-30      10
## 30941     18-30      10
## 30942     30-35       7
## 30943     30-35       7
## 30944     30-35       7
## 30945     40-50       5
## 30946     18-30      10
## 30947     30-35       7
## 30948     30-35       7
## 30949     18-30      10
## 30950     50-60       5
## 30951     18-30      10
## 30952     18-30      10
## 30953     18-30      10
## 30954     35-40       6
## 30955     18-30      10
## 30956     18-30      10
## 30957     18-30      10
## 30958     35-40       6
## 30959     40-50       5
## 30960     18-30      10
## 30961     18-30      10
## 30962     18-30      10
## 30963     18-30      10
## 30964     40-50       5
## 30965     50-60       5
## 30966     35-40       6
## 30967     18-30      10
## 30968     18-30      10
## 30969     18-30      10
## 30970     30-35       7
## 30971     18-30      10
## 30972     18-30      10
## 30973     30-35       7
## 30974     35-40       6
## 30975     18-30      10
## 30976     18-30      10
## 30977     40-50       5
## 30978     35-40       6
## 30979     18-30      10
## 30980     18-30      10
## 30981     18-30      10
## 30982     18-30      10
## 30983     18-30      10
## 30984     18-30      10
## 30985     18-30      10
## 30986     18-30      10
## 30987     18-30      10
## 30988     35-40       6
## 30989     18-30      10
## 30990     18-30      10
## 30991     18-30      10
## 30992     18-30      10
## 30993     18-30      10
## 30994     18-30      10
## 30995     18-30      10
## 30996     40-50       5
## 30997     35-40       6
## 30998     18-30      10
## 30999     35-40       6
## 31000     30-35       7
## 31001     35-40       6
## 31002     30-35       7
## 31003     18-30      10
## 31004     35-40       6
## 31005     18-30      10
## 31006     18-30      10
## 31007     18-30      10
## 31008     18-30      10
## 31009     50-60       5
## 31010     18-30      10
## 31011     40-50       5
## 31012       65+       4
## 31013     30-35       7
## 31014     40-50       5
## 31015     18-30      10
## 31016     30-35       7
## 31017     18-30      10
## 31018     40-50       5
## 31019     30-35       7
## 31020     18-30      10
## 31021     18-30      10
## 31022     18-30      10
## 31023     40-50       5
## 31024     40-50       5
## 31025     30-35       7
## 31026     40-50       5
## 31027     35-40       6
## 31028     35-40       6
## 31029     35-40       6
## 31030     30-35       7
## 31031     18-30      10
## 31032     40-50       5
## 31033     18-30      10
## 31034     18-30      10
## 31035     30-35       7
## 31036     50-60       5
## 31037     18-30      10
## 31038     18-30      10
## 31039     30-35       7
## 31040     35-40       6
## 31041     18-30      10
## 31042     18-30      10
## 31043     30-35       7
## 31044     18-30      10
## 31045     18-30      10
## 31046     40-50       5
## 31047     30-35       7
## 31048     18-30      10
## 31049     30-35       7
## 31050     50-60       5
## 31051     50-60       5
## 31052     18-30      10
## 31053     18-30      10
## 31054     40-50       5
## 31055     40-50       5
## 31056     30-35       7
## 31057     35-40       6
## 31058     18-30      10
## 31059     18-30      10
## 31060     30-35       7
## 31061     18-30      10
## 31062     18-30      10
## 31063     18-30      10
## 31064     18-30      10
## 31065     30-35       7
## 31066     18-30      10
## 31067     30-35       7
## 31068     30-35       7
## 31069     30-35       7
## 31070     18-30      10
## 31071     18-30      10
## 31072     30-35       7
## 31073     18-30      10
## 31074     18-30      10
## 31075     18-30      10
## 31076     18-30      10
## 31077     18-30      10
## 31078     18-30      10
## 31079     18-30      10
## 31080     18-30      10
## 31081     18-30      10
## 31082     18-30      10
## 31083       65+       4
## 31084     40-50       5
## 31085     18-30      10
## 31086       65+       4
## 31087     18-30      10
## 31088     18-30      10
## 31089     18-30      10
## 31090     40-50       5
## 31091     18-30      10
## 31092     18-30      10
## 31093     30-35       7
## 31094     18-30      10
## 31095     40-50       5
## 31096     18-30      10
## 31097     18-30      10
## 31098     18-30      10
## 31099     18-30      10
## 31100     50-60       5
## 31101     30-35       7
## 31102     40-50       5
## 31103     18-30      10
## 31104     18-30      10
## 31105     35-40       6
## 31106     50-60       5
## 31107     50-60       5
## 31108     18-30      10
## 31109     35-40       6
## 31110     40-50       5
## 31111     18-30      10
## 31112     30-35       7
## 31113     18-30      10
## 31114     18-30      10
## 31115     30-35       7
## 31116     18-30      10
## 31117     18-30      10
## 31118     18-30      10
## 31119     18-30      10
## 31120     18-30      10
## 31121     40-50       5
## 31122     18-30      10
## 31123     30-35       7
## 31124     35-40       6
## 31125     30-35       7
## 31126     18-30      10
## 31127     18-30      10
## 31128     35-40       6
## 31129     18-30      10
## 31130     35-40       6
## 31131     18-30      10
## 31132     18-30      10
## 31133     18-30      10
## 31134     35-40       6
## 31135     18-30      10
## 31136     18-30      10
## 31137     18-30      10
## 31138     35-40       6
## 31139     30-35       7
## 31140     18-30      10
## 31141     30-35       7
## 31142     18-30      10
## 31143     18-30      10
## 31144     18-30      10
## 31145     40-50       5
## 31146     30-35       7
## 31147     30-35       7
## 31148     18-30      10
## 31149     30-35       7
## 31150     18-30      10
## 31151     30-35       7
## 31152     30-35       7
## 31153     18-30      10
## 31154     18-30      10
## 31155     18-30      10
## 31156     18-30      10
## 31157     35-40       6
## 31158     30-35       7
## 31159     18-30      10
## 31160     35-40       6
## 31161     18-30      10
## 31162     50-60       5
## 31163     30-35       7
## 31164     18-30      10
## 31165     18-30      10
## 31166     18-30      10
## 31167     18-30      10
## 31168     18-30      10
## 31169     18-30      10
## 31170       65+       4
## 31171     30-35       7
## 31172     35-40       6
## 31173     18-30      10
## 31174     18-30      10
## 31175     30-35       7
## 31176     50-60       5
## 31177     40-50       5
## 31178     40-50       5
## 31179     50-60       5
## 31180     35-40       6
## 31181     18-30      10
## 31182     18-30      10
## 31183     35-40       6
## 31184     18-30      10
## 31185     30-35       7
## 31186     18-30      10
## 31187     40-50       5
## 31188     18-30      10
## 31189     30-35       7
## 31190     18-30      10
## 31191     18-30      10
## 31192     18-30      10
## 31193     40-50       5
## 31194     18-30      10
## 31195     18-30      10
## 31196       65+       4
## 31197     30-35       7
## 31198     18-30      10
## 31199     18-30      10
## 31200     18-30      10
## 31201       65+       4
## 31202     30-35       7
## 31203     30-35       7
## 31204     18-30      10
## 31205     18-30      10
## 31206     35-40       6
## 31207     35-40       6
## 31208     18-30      10
## 31209     18-30      10
## 31210     18-30      10
## 31211     40-50       5
## 31212     18-30      10
## 31213     30-35       7
## 31214     18-30      10
## 31215     18-30      10
## 31216     18-30      10
## 31217     50-60       5
## 31218     18-30      10
## 31219     35-40       6
## 31220     30-35       7
## 31221     40-50       5
## 31222     18-30      10
## 31223     35-40       6
## 31224     18-30      10
## 31225     18-30      10
## 31226     18-30      10
## 31227     18-30      10
## 31228     40-50       5
## 31229     30-35       7
## 31230     40-50       5
## 31231     35-40       6
## 31232     40-50       5
## 31233     30-35       7
## 31234     18-30      10
## 31235     18-30      10
## 31236     30-35       7
## 31237     18-30      10
## 31238     18-30      10
## 31239     18-30      10
## 31240     18-30      10
## 31241     18-30      10
## 31242     30-35       7
## 31243     30-35       7
## 31244     30-35       7
## 31245     30-35       7
## 31246     18-30      10
## 31247     40-50       5
## 31248     18-30      10
## 31249     18-30      10
## 31250     18-30      10
## 31251     18-30      10
## 31252     18-30      10
## 31253     40-50       5
## 31254     40-50       5
## 31255     18-30      10
## 31256     18-30      10
## 31257     18-30      10
## 31258     18-30      10
## 31259     18-30      10
## 31260     30-35       7
## 31261     18-30      10
## 31262     18-30      10
## 31263     35-40       6
## 31264     18-30      10
## 31265     18-30      10
## 31266     18-30      10
## 31267     18-30      10
## 31268     18-30      10
## 31269     18-30      10
## 31270     30-35       7
## 31271     30-35       7
## 31272     35-40       6
## 31273     18-30      10
## 31274     18-30      10
## 31275     35-40       6
## 31276     18-30      10
## 31277     30-35       7
## 31278     40-50       5
## 31279     18-30      10
## 31280     35-40       6
## 31281     30-35       7
## 31282     30-35       7
## 31283     18-30      10
## 31284     30-35       7
## 31285     18-30      10
## 31286       65+       4
## 31287     35-40       6
## 31288     18-30      10
## 31289     40-50       5
## 31290     18-30      10
## 31291     18-30      10
## 31292     18-30      10
## 31293     50-60       5
## 31294     18-30      10
## 31295     18-30      10
## 31296     18-30      10
## 31297     30-35       7
## 31298     18-30      10
## 31299     18-30      10
## 31300     18-30      10
## 31301     35-40       6
## 31302     18-30      10
## 31303     18-30      10
## 31304     40-50       5
## 31305     40-50       5
## 31306     18-30      10
## 31307     18-30      10
## 31308     40-50       5
## 31309     35-40       6
## 31310     35-40       6
## 31311     40-50       5
## 31312     18-30      10
## 31313     30-35       7
## 31314     18-30      10
## 31315     18-30      10
## 31316     50-60       5
## 31317     30-35       7
## 31318     40-50       5
## 31319     18-30      10
## 31320     18-30      10
## 31321     30-35       7
## 31322     18-30      10
## 31323     18-30      10
## 31324     40-50       5
## 31325     30-35       7
## 31326     40-50       5
## 31327     35-40       6
## 31328     18-30      10
## 31329     40-50       5
## 31330     18-30      10
## 31331     30-35       7
## 31332     18-30      10
## 31333     30-35       7
## 31334     30-35       7
## 31335     18-30      10
## 31336     18-30      10
## 31337     18-30      10
## 31338     18-30      10
## 31339     30-35       7
## 31340     18-30      10
## 31341     18-30      10
## 31342     18-30      10
## 31343     30-35       7
## 31344     18-30      10
## 31345     18-30      10
## 31346     35-40       6
## 31347     18-30      10
## 31348     18-30      10
## 31349     35-40       6
## 31350     18-30      10
## 31351     35-40       6
## 31352     18-30      10
## 31353     18-30      10
## 31354     18-30      10
## 31355     30-35       7
## 31356     30-35       7
## 31357     18-30      10
## 31358     18-30      10
## 31359     18-30      10
## 31360     18-30      10
## 31361     40-50       5
## 31362     18-30      10
## 31363     30-35       7
## 31364     18-30      10
## 31365     35-40       6
## 31366     30-35       7
## 31367     18-30      10
## 31368     30-35       7
## 31369     18-30      10
## 31370     18-30      10
## 31371     18-30      10
## 31372     35-40       6
## 31373     40-50       5
## 31374     18-30      10
## 31375     50-60       5
## 31376     35-40       6
## 31377     18-30      10
## 31378     40-50       5
## 31379     30-35       7
## 31380     35-40       6
## 31381     18-30      10
## 31382     35-40       6
## 31383     40-50       5
## 31384     35-40       6
## 31385     50-60       5
## 31386     30-35       7
## 31387     18-30      10
## 31388     18-30      10
## 31389     18-30      10
## 31390     18-30      10
## 31391     30-35       7
## 31392     35-40       6
## 31393     40-50       5
## 31394       65+       4
## 31395     30-35       7
## 31396     18-30      10
## 31397     18-30      10
## 31398     40-50       5
## 31399     18-30      10
## 31400     40-50       5
## 31401     40-50       5
## 31402     18-30      10
## 31403     35-40       6
## 31404     35-40       6
## 31405     18-30      10
## 31406     50-60       5
## 31407     18-30      10
## 31408     18-30      10
## 31409     18-30      10
## 31410     30-35       7
## 31411     18-30      10
## 31412     35-40       6
## 31413     18-30      10
## 31414     18-30      10
## 31415     18-30      10
## 31416     18-30      10
## 31417     35-40       6
## 31418     18-30      10
## 31419     40-50       5
## 31420     40-50       5
## 31421     18-30      10
## 31422     18-30      10
## 31423     30-35       7
## 31424     18-30      10
## 31425     40-50       5
## 31426     18-30      10
## 31427     50-60       5
## 31428     35-40       6
## 31429     18-30      10
## 31430     35-40       6
## 31431     18-30      10
## 31432     35-40       6
## 31433     35-40       6
## 31434     30-35       7
## 31435     18-30      10
## 31436     18-30      10
## 31437     50-60       5
## 31438     18-30      10
## 31439     18-30      10
## 31440     18-30      10
## 31441     30-35       7
## 31442     18-30      10
## 31443     18-30      10
## 31444     18-30      10
## 31445     18-30      10
## 31446     18-30      10
## 31447     18-30      10
## 31448     18-30      10
## 31449     18-30      10
## 31450     30-35       7
## 31451     18-30      10
## 31452     18-30      10
## 31453     18-30      10
## 31454     18-30      10
## 31455     18-30      10
## 31456     30-35       7
## 31457     18-30      10
## 31458     18-30      10
## 31459     40-50       5
## 31460     18-30      10
## 31461     40-50       5
## 31462     30-35       7
## 31463     30-35       7
## 31464     40-50       5
## 31465     18-30      10
## 31466     18-30      10
## 31467     30-35       7
## 31468     18-30      10
## 31469     18-30      10
## 31470     18-30      10
## 31471     18-30      10
## 31472     18-30      10
## 31473     18-30      10
## 31474     35-40       6
## 31475     18-30      10
## 31476     18-30      10
## 31477     18-30      10
## 31478     30-35       7
## 31479     35-40       6
## 31480     18-30      10
## 31481     35-40       6
## 31482     18-30      10
## 31483     50-60       5
## 31484     18-30      10
## 31485     18-30      10
## 31486     18-30      10
## 31487     40-50       5
## 31488     35-40       6
## 31489     50-60       5
## 31490     18-30      10
## 31491     35-40       6
## 31492     18-30      10
## 31493     18-30      10
## 31494     18-30      10
## 31495     35-40       6
## 31496     35-40       6
## 31497     18-30      10
## 31498     18-30      10
## 31499     50-60       5
## 31500     30-35       7
## 31501       65+       4
## 31502     18-30      10
## 31503     18-30      10
## 31504     18-30      10
## 31505     30-35       7
## 31506     30-35       7
## 31507     18-30      10
## 31508     30-35       7
## 31509     18-30      10
## 31510     18-30      10
## 31511     30-35       7
## 31512     18-30      10
## 31513     18-30      10
## 31514     18-30      10
## 31515     18-30      10
## 31516     18-30      10
## 31517     18-30      10
## 31518     18-30      10
## 31519     30-35       7
## 31520     40-50       5
## 31521     18-30      10
## 31522     30-35       7
## 31523     35-40       6
## 31524     30-35       7
## 31525     18-30      10
## 31526     18-30      10
## 31527     18-30      10
## 31528     40-50       5
## 31529     18-30      10
## 31530     30-35       7
## 31531     35-40       6
## 31532     18-30      10
## 31533     50-60       5
## 31534     18-30      10
## 31535     50-60       5
## 31536     30-35       7
## 31537     40-50       5
## 31538     40-50       5
## 31539     30-35       7
## 31540     18-30      10
## 31541     30-35       7
## 31542     18-30      10
## 31543     18-30      10
## 31544     30-35       7
## 31545     35-40       6
## 31546     30-35       7
## 31547     30-35       7
## 31548     18-30      10
## 31549     18-30      10
## 31550     18-30      10
## 31551     18-30      10
## 31552     35-40       6
## 31553     18-30      10
## 31554     30-35       7
## 31555     30-35       7
## 31556     18-30      10
## 31557     35-40       6
## 31558     40-50       5
## 31559     40-50       5
## 31560     35-40       6
## 31561     18-30      10
## 31562     30-35       7
## 31563     18-30      10
## 31564     18-30      10
## 31565     40-50       5
## 31566     18-30      10
## 31567     40-50       5
## 31568     18-30      10
## 31569     18-30      10
## 31570     18-30      10
## 31571     18-30      10
## 31572     18-30      10
## 31573     50-60       5
## 31574     35-40       6
## 31575     18-30      10
## 31576     18-30      10
## 31577     18-30      10
## 31578     18-30      10
## 31579     18-30      10
## 31580     40-50       5
## 31581     35-40       6
## 31582     40-50       5
## 31583     18-30      10
## 31584     18-30      10
## 31585     18-30      10
## 31586     18-30      10
## 31587     18-30      10
## 31588     18-30      10
## 31589     18-30      10
## 31590     18-30      10
## 31591       65+       4
## 31592     18-30      10
## 31593     18-30      10
## 31594     18-30      10
## 31595     30-35       7
## 31596     18-30      10
## 31597     50-60       5
## 31598     40-50       5
## 31599     18-30      10
## 31600     35-40       6
## 31601     18-30      10
## 31602     35-40       6
## 31603     40-50       5
## 31604     18-30      10
## 31605     18-30      10
## 31606     18-30      10
## 31607     35-40       6
## 31608     18-30      10
## 31609     18-30      10
## 31610     18-30      10
## 31611     18-30      10
## 31612     30-35       7
## 31613     18-30      10
## 31614     40-50       5
## 31615     18-30      10
## 31616     35-40       6
## 31617     35-40       6
## 31618     30-35       7
## 31619     18-30      10
## 31620     18-30      10
## 31621     18-30      10
## 31622     18-30      10
## 31623     18-30      10
## 31624     18-30      10
## 31625     18-30      10
## 31626     30-35       7
## 31627     18-30      10
## 31628     30-35       7
## 31629     18-30      10
## 31630     18-30      10
## 31631     18-30      10
## 31632     18-30      10
## 31633     18-30      10
## 31634     18-30      10
## 31635     18-30      10
## 31636     30-35       7
## 31637     30-35       7
## 31638     50-60       5
## 31639     18-30      10
## 31640     40-50       5
## 31641     35-40       6
## 31642     18-30      10
## 31643     18-30      10
## 31644     30-35       7
## 31645     50-60       5
## 31646     18-30      10
## 31647     40-50       5
## 31648     35-40       6
## 31649     35-40       6
## 31650     50-60       5
## 31651     35-40       6
## 31652     30-35       7
## 31653     18-30      10
## 31654     18-30      10
## 31655     40-50       5
## 31656     18-30      10
## 31657     18-30      10
## 31658     40-50       5
## 31659     18-30      10
## 31660     18-30      10
## 31661     30-35       7
## 31662     35-40       6
## 31663     18-30      10
## 31664     18-30      10
## 31665     18-30      10
## 31666     18-30      10
## 31667     18-30      10
## 31668     30-35       7
## 31669     40-50       5
## 31670     18-30      10
## 31671     50-60       5
## 31672     30-35       7
## 31673     35-40       6
## 31674     30-35       7
## 31675     18-30      10
## 31676     30-35       7
## 31677     30-35       7
## 31678     18-30      10
## 31679     40-50       5
## 31680     18-30      10
## 31681     18-30      10
## 31682     30-35       7
## 31683     18-30      10
## 31684     18-30      10
## 31685     18-30      10
## 31686     18-30      10
## 31687     18-30      10
## 31688     50-60       5
## 31689     40-50       5
## 31690     30-35       7
## 31691     30-35       7
## 31692     18-30      10
## 31693     18-30      10
## 31694     18-30      10
## 31695     18-30      10
## 31696     18-30      10
## 31697     18-30      10
## 31698     35-40       6
## 31699     18-30      10
## 31700     30-35       7
## 31701     40-50       5
## 31702     18-30      10
## 31703     35-40       6
## 31704     18-30      10
## 31705     18-30      10
## 31706     30-35       7
## 31707     18-30      10
## 31708     18-30      10
## 31709     18-30      10
## 31710     40-50       5
## 31711     18-30      10
## 31712     18-30      10
## 31713     40-50       5
## 31714     35-40       6
## 31715     35-40       6
## 31716     30-35       7
## 31717     18-30      10
## 31718     18-30      10
## 31719     30-35       7
## 31720     18-30      10
## 31721     18-30      10
## 31722     30-35       7
## 31723     30-35       7
## 31724     50-60       5
## 31725     18-30      10
## 31726     30-35       7
## 31727     18-30      10
## 31728     18-30      10
## 31729     35-40       6
## 31730     18-30      10
## 31731     30-35       7
## 31732     18-30      10
## 31733     18-30      10
## 31734     40-50       5
## 31735     18-30      10
## 31736     18-30      10
## 31737     18-30      10
## 31738     50-60       5
## 31739     18-30      10
## 31740     40-50       5
## 31741     30-35       7
## 31742     18-30      10
## 31743     18-30      10
## 31744     30-35       7
## 31745     18-30      10
## 31746     30-35       7
## 31747     18-30      10
## 31748     18-30      10
## 31749     40-50       5
## 31750     30-35       7
## 31751     18-30      10
## 31752     35-40       6
## 31753     40-50       5
## 31754     18-30      10
## 31755     50-60       5
## 31756     35-40       6
## 31757     30-35       7
## 31758     18-30      10
## 31759     18-30      10
## 31760     18-30      10
## 31761     30-35       7
## 31762     18-30      10
## 31763     30-35       7
## 31764     30-35       7
## 31765     35-40       6
## 31766     30-35       7
## 31767       65+       4
## 31768     30-35       7
## 31769     18-30      10
## 31770     40-50       5
## 31771     50-60       5
## 31772     18-30      10
## 31773     30-35       7
## 31774     18-30      10
## 31775     18-30      10
## 31776     35-40       6
## 31777     18-30      10
## 31778     40-50       5
## 31779     30-35       7
## 31780     18-30      10
## 31781     18-30      10
## 31782     18-30      10
## 31783     18-30      10
## 31784     18-30      10
## 31785     50-60       5
## 31786     40-50       5
## 31787     18-30      10
## 31788     35-40       6
## 31789     35-40       6
## 31790     40-50       5
## 31791     30-35       7
## 31792     30-35       7
## 31793     35-40       6
## 31794     30-35       7
## 31795     18-30      10
## 31796     40-50       5
## 31797     40-50       5
## 31798     18-30      10
## 31799     18-30      10
## 31800     18-30      10
## 31801     18-30      10
## 31802     18-30      10
## 31803     18-30      10
## 31804     30-35       7
## 31805     18-30      10
## 31806     18-30      10
## 31807     30-35       7
## 31808     35-40       6
## 31809     18-30      10
## 31810     18-30      10
## 31811     18-30      10
## 31812     35-40       6
## 31813     18-30      10
## 31814     30-35       7
## 31815     18-30      10
## 31816     30-35       7
## 31817     30-35       7
## 31818     40-50       5
## 31819     40-50       5
## 31820       65+       4
## 31821     18-30      10
## 31822     18-30      10
## 31823     18-30      10
## 31824     35-40       6
## 31825     18-30      10
## 31826     18-30      10
## 31827     30-35       7
## 31828     18-30      10
## 31829     18-30      10
## 31830     18-30      10
## 31831     30-35       7
## 31832     18-30      10
## 31833     18-30      10
## 31834     18-30      10
## 31835     30-35       7
## 31836     30-35       7
## 31837     18-30      10
## 31838     30-35       7
## 31839     18-30      10
## 31840     40-50       5
## 31841     30-35       7
## 31842     40-50       5
## 31843     18-30      10
## 31844     18-30      10
## 31845     18-30      10
## 31846     18-30      10
## 31847     35-40       6
## 31848     30-35       7
## 31849     35-40       6
## 31850     30-35       7
## 31851     35-40       6
## 31852     18-30      10
## 31853     18-30      10
## 31854     40-50       5
## 31855     40-50       5
## 31856     18-30      10
## 31857     18-30      10
## 31858     35-40       6
## 31859     35-40       6
## 31860     18-30      10
## 31861     40-50       5
## 31862     50-60       5
## 31863     18-30      10
## 31864     18-30      10
## 31865     18-30      10
## 31866     30-35       7
## 31867       65+       4
## 31868     18-30      10
## 31869     50-60       5
## 31870     35-40       6
## 31871     30-35       7
## 31872     35-40       6
## 31873     18-30      10
## 31874     18-30      10
## 31875     18-30      10
## 31876     18-30      10
## 31877     18-30      10
## 31878     18-30      10
## 31879     18-30      10
## 31880     18-30      10
## 31881     18-30      10
## 31882     18-30      10
## 31883     18-30      10
## 31884     18-30      10
## 31885     35-40       6
## 31886     18-30      10
## 31887     40-50       5
## 31888     30-35       7
## 31889     35-40       6
## 31890     18-30      10
## 31891     30-35       7
## 31892     30-35       7
## 31893     30-35       7
## 31894     30-35       7
## 31895     40-50       5
## 31896     35-40       6
## 31897     18-30      10
## 31898     18-30      10
## 31899       65+       4
## 31900     18-30      10
## 31901     40-50       5
## 31902     18-30      10
## 31903     18-30      10
## 31904     40-50       5
## 31905     18-30      10
## 31906     50-60       5
## 31907     18-30      10
## 31908     30-35       7
## 31909     18-30      10
## 31910     40-50       5
## 31911     18-30      10
## 31912     30-35       7
## 31913     50-60       5
## 31914     18-30      10
## 31915     35-40       6
## 31916     35-40       6
## 31917     18-30      10
## 31918     18-30      10
## 31919     35-40       6
## 31920     40-50       5
## 31921     40-50       5
## 31922     30-35       7
## 31923     18-30      10
## 31924     40-50       5
## 31925     18-30      10
## 31926     35-40       6
## 31927     30-35       7
## 31928     18-30      10
## 31929     40-50       5
## 31930     18-30      10
## 31931     30-35       7
## 31932     18-30      10
## 31933     50-60       5
## 31934     18-30      10
## 31935     18-30      10
## 31936     50-60       5
## 31937     18-30      10
## 31938     30-35       7
## 31939     30-35       7
## 31940     18-30      10
## 31941       65+       4
## 31942     18-30      10
## 31943     30-35       7
## 31944     18-30      10
## 31945     18-30      10
## 31946     18-30      10
## 31947     18-30      10
## 31948     40-50       5
## 31949     40-50       5
## 31950     50-60       5
## 31951     18-30      10
## 31952     18-30      10
## 31953     18-30      10
## 31954     18-30      10
## 31955     18-30      10
## 31956     18-30      10
## 31957     40-50       5
## 31958     18-30      10
## 31959     35-40       6
## 31960     18-30      10
## 31961     18-30      10
## 31962     30-35       7
## 31963     35-40       6
## 31964     18-30      10
## 31965     35-40       6
## 31966     18-30      10
## 31967     18-30      10
## 31968     40-50       5
## 31969     40-50       5
## 31970     30-35       7
## 31971     40-50       5
## 31972     50-60       5
## 31973     40-50       5
## 31974     35-40       6
## 31975     18-30      10
## 31976     30-35       7
## 31977     18-30      10
## 31978     18-30      10
## 31979     50-60       5
## 31980     30-35       7
## 31981     18-30      10
## 31982     30-35       7
## 31983     50-60       5
## 31984     18-30      10
## 31985     18-30      10
## 31986     35-40       6
## 31987     30-35       7
## 31988     18-30      10
## 31989     35-40       6
## 31990     30-35       7
## 31991       65+       4
## 31992     40-50       5
## 31993     30-35       7
## 31994     18-30      10
## 31995     30-35       7
## 31996     18-30      10
## 31997     30-35       7
## 31998     18-30      10
## 31999     18-30      10
## 32000     30-35       7
## 32001     18-30      10
## 32002     30-35       7
## 32003     18-30      10
## 32004     30-35       7
## 32005     18-30      10
## 32006     18-30      10
## 32007     18-30      10
## 32008     40-50       5
## 32009     18-30      10
## 32010     50-60       5
## 32011     40-50       5
## 32012     50-60       5
## 32013     18-30      10
## 32014     18-30      10
## 32015     18-30      10
## 32016     18-30      10
## 32017     50-60       5
## 32018     40-50       5
## 32019     30-35       7
## 32020     30-35       7
## 32021     30-35       7
## 32022     18-30      10
## 32023     35-40       6
## 32024     40-50       5
## 32025     18-30      10
## 32026     35-40       6
## 32027     30-35       7
## 32028     30-35       7
## 32029     50-60       5
## 32030     18-30      10
## 32031       65+       4
## 32032     35-40       6
## 32033     30-35       7
## 32034       65+       4
## 32035     35-40       6
## 32036     18-30      10
## 32037     18-30      10
## 32038     18-30      10
## 32039     40-50       5
## 32040     35-40       6
## 32041     18-30      10
## 32042     18-30      10
## 32043     30-35       7
## 32044     50-60       5
## 32045     18-30      10
## 32046     40-50       5
## 32047     30-35       7
## 32048     30-35       7
## 32049     40-50       5
## 32050     18-30      10
## 32051     18-30      10
## 32052     35-40       6
## 32053       65+       4
## 32054     40-50       5
## 32055     18-30      10
## 32056     50-60       5
## 32057     30-35       7
## 32058     18-30      10
## 32059     30-35       7
## 32060     18-30      10
## 32061     30-35       7
## 32062     18-30      10
## 32063     30-35       7
## 32064     18-30      10
## 32065     18-30      10
## 32066     40-50       5
## 32067     40-50       5
## 32068     30-35       7
## 32069     18-30      10
## 32070     18-30      10
## 32071     18-30      10
## 32072     35-40       6
## 32073     18-30      10
## 32074     18-30      10
## 32075     18-30      10
## 32076     18-30      10
## 32077     18-30      10
## 32078     18-30      10
## 32079     40-50       5
## 32080     40-50       5
## 32081     30-35       7
## 32082     30-35       7
## 32083     18-30      10
## 32084     40-50       5
## 32085     18-30      10
## 32086     35-40       6
## 32087     30-35       7
## 32088     18-30      10
## 32089     30-35       7
## 32090     30-35       7
## 32091     18-30      10
## 32092     18-30      10
## 32093     18-30      10
## 32094     40-50       5
## 32095     18-30      10
## 32096     30-35       7
## 32097     18-30      10
## 32098       65+       4
## 32099     18-30      10
## 32100     40-50       5
## 32101     30-35       7
## 32102     30-35       7
## 32103     35-40       6
## 32104     18-30      10
## 32105     30-35       7
## 32106     18-30      10
## 32107     18-30      10
## 32108     40-50       5
## 32109     35-40       6
## 32110     18-30      10
## 32111     30-35       7
## 32112     35-40       6
## 32113     30-35       7
## 32114       65+       4
## 32115     30-35       7
## 32116     30-35       7
## 32117     18-30      10
## 32118     30-35       7
## 32119     35-40       6
## 32120     18-30      10
## 32121     18-30      10
## 32122     30-35       7
## 32123     18-30      10
## 32124     30-35       7
## 32125     30-35       7
## 32126     30-35       7
## 32127     18-30      10
## 32128     30-35       7
## 32129     35-40       6
## 32130     40-50       5
## 32131     18-30      10
## 32132     18-30      10
## 32133     18-30      10
## 32134     30-35       7
## 32135     18-30      10
## 32136     40-50       5
## 32137     30-35       7
## 32138     30-35       7
## 32139     18-30      10
## 32140     18-30      10
## 32141     18-30      10
## 32142     18-30      10
## 32143     40-50       5
## 32144     18-30      10
## 32145     30-35       7
## 32146     18-30      10
## 32147     18-30      10
## 32148     18-30      10
## 32149     18-30      10
## 32150     18-30      10
## 32151     35-40       6
## 32152     18-30      10
## 32153     35-40       6
## 32154     40-50       5
## 32155     18-30      10
## 32156     18-30      10
## 32157     18-30      10
## 32158     35-40       6
## 32159     30-35       7
## 32160     18-30      10
## 32161     35-40       6
## 32162     30-35       7
## 32163     18-30      10
## 32164     18-30      10
## 32165     35-40       6
## 32166     30-35       7
## 32167     18-30      10
## 32168     40-50       5
## 32169     18-30      10
## 32170     30-35       7
## 32171     18-30      10
## 32172     30-35       7
## 32173     18-30      10
## 32174     18-30      10
## 32175     18-30      10
## 32176     18-30      10
## 32177     50-60       5
## 32178     18-30      10
## 32179     18-30      10
## 32180     40-50       5
## 32181     18-30      10
## 32182     40-50       5
## 32183     18-30      10
## 32184     18-30      10
## 32185     18-30      10
## 32186     30-35       7
## 32187     30-35       7
## 32188     35-40       6
## 32189     30-35       7
## 32190     18-30      10
## 32191     35-40       6
## 32192     40-50       5
## 32193     30-35       7
## 32194     18-30      10
## 32195     18-30      10
## 32196     18-30      10
## 32197     40-50       5
## 32198     18-30      10
## 32199     18-30      10
## 32200     18-30      10
## 32201     18-30      10
## 32202     18-30      10
## 32203     18-30      10
## 32204     18-30      10
## 32205     18-30      10
## 32206     18-30      10
## 32207     30-35       7
## 32208     18-30      10
## 32209     18-30      10
## 32210     18-30      10
## 32211     18-30      10
## 32212     35-40       6
## 32213     18-30      10
## 32214     40-50       5
## 32215     18-30      10
## 32216     18-30      10
## 32217     35-40       6
## 32218     18-30      10
## 32219     30-35       7
## 32220     35-40       6
## 32221     40-50       5
## 32222     18-30      10
## 32223     30-35       7
## 32224     18-30      10
## 32225     18-30      10
## 32226       65+       4
## 32227     18-30      10
## 32228     18-30      10
## 32229     18-30      10
## 32230     18-30      10
## 32231     18-30      10
## 32232     18-30      10
## 32233     30-35       7
## 32234     40-50       5
## 32235     18-30      10
## 32236     18-30      10
## 32237     35-40       6
## 32238     40-50       5
## 32239     18-30      10
## 32240     35-40       6
## 32241     40-50       5
## 32242     18-30      10
## 32243     18-30      10
## 32244     40-50       5
## 32245     18-30      10
## 32246     30-35       7
## 32247     30-35       7
## 32248     40-50       5
## 32249     30-35       7
## 32250     18-30      10
## 32251     30-35       7
## 32252     30-35       7
## 32253     18-30      10
## 32254     35-40       6
## 32255     35-40       6
## 32256     18-30      10
## 32257     18-30      10
## 32258     18-30      10
## 32259     40-50       5
## 32260     18-30      10
## 32261     18-30      10
## 32262     30-35       7
## 32263     18-30      10
## 32264     18-30      10
## 32265     40-50       5
## 32266     18-30      10
## 32267     35-40       6
## 32268     50-60       5
## 32269     18-30      10
## 32270     35-40       6
## 32271     40-50       5
## 32272     40-50       5
## 32273     18-30      10
## 32274     50-60       5
## 32275     18-30      10
## 32276     40-50       5
## 32277     18-30      10
## 32278     18-30      10
## 32279     18-30      10
## 32280     30-35       7
## 32281     18-30      10
## 32282     18-30      10
## 32283     18-30      10
## 32284     18-30      10
## 32285     18-30      10
## 32286     30-35       7
## 32287     30-35       7
## 32288     18-30      10
## 32289     18-30      10
## 32290     35-40       6
## 32291     40-50       5
## 32292     18-30      10
## 32293     18-30      10
## 32294     30-35       7
## 32295     18-30      10
## 32296     18-30      10
## 32297     18-30      10
## 32298       65+       4
## 32299     30-35       7
## 32300     18-30      10
## 32301     18-30      10
## 32302     18-30      10
## 32303     35-40       6
## 32304     18-30      10
## 32305     18-30      10
## 32306     40-50       5
## 32307     30-35       7
## 32308     18-30      10
## 32309     18-30      10
## 32310     30-35       7
## 32311     18-30      10
## 32312     50-60       5
## 32313     40-50       5
## 32314     30-35       7
## 32315     18-30      10
## 32316     40-50       5
## 32317     18-30      10
## 32318     30-35       7
## 32319     18-30      10
## 32320     40-50       5
## 32321     18-30      10
## 32322     40-50       5
## 32323     40-50       5
## 32324     50-60       5
## 32325     40-50       5
## 32326     18-30      10
## 32327     35-40       6
## 32328     18-30      10
## 32329     40-50       5
## 32330     18-30      10
## 32331     50-60       5
## 32332     18-30      10
## 32333     18-30      10
## 32334     50-60       5
## 32335     18-30      10
## 32336     18-30      10
## 32337     18-30      10
## 32338     35-40       6
## 32339     18-30      10
## 32340     18-30      10
## 32341     35-40       6
## 32342     18-30      10
## 32343     18-30      10
## 32344     40-50       5
## 32345     35-40       6
## 32346     40-50       5
## 32347     18-30      10
## 32348     18-30      10
## 32349     18-30      10
## 32350     35-40       6
## 32351     18-30      10
## 32352     35-40       6
## 32353     30-35       7
## 32354     35-40       6
## 32355     18-30      10
## 32356     18-30      10
## 32357     30-35       7
## 32358     18-30      10
## 32359     18-30      10
## 32360     18-30      10
## 32361     18-30      10
## 32362     30-35       7
## 32363     40-50       5
## 32364     40-50       5
## 32365     50-60       5
## 32366     18-30      10
## 32367     35-40       6
## 32368     18-30      10
## 32369     18-30      10
## 32370     18-30      10
## 32371     18-30      10
## 32372     18-30      10
## 32373     18-30      10
## 32374     40-50       5
## 32375     18-30      10
## 32376     40-50       5
## 32377     30-35       7
## 32378     35-40       6
## 32379     18-30      10
## 32380     18-30      10
## 32381     50-60       5
## 32382     18-30      10
## 32383     18-30      10
## 32384     18-30      10
## 32385     18-30      10
## 32386     18-30      10
## 32387     18-30      10
## 32388     18-30      10
## 32389     18-30      10
## 32390     18-30      10
## 32391     18-30      10
## 32392     50-60       5
## 32393     18-30      10
## 32394     30-35       7
## 32395     35-40       6
## 32396     18-30      10
## 32397     18-30      10
## 32398     40-50       5
## 32399     30-35       7
## 32400     18-30      10
## 32401     35-40       6
## 32402     18-30      10
## 32403     18-30      10
## 32404     35-40       6
## 32405     35-40       6
## 32406     30-35       7
## 32407     18-30      10
## 32408     35-40       6
## 32409     40-50       5
## 32410     18-30      10
## 32411     18-30      10
## 32412     30-35       7
## 32413     40-50       5
## 32414     30-35       7
## 32415     40-50       5
## 32416     35-40       6
## 32417     35-40       6
## 32418     18-30      10
## 32419     40-50       5
## 32420     35-40       6
## 32421     35-40       6
## 32422     35-40       6
## 32423     18-30      10
## 32424     18-30      10
## 32425     18-30      10
## 32426     18-30      10
## 32427     18-30      10
## 32428     50-60       5
## 32429     18-30      10
## 32430     35-40       6
## 32431     30-35       7
## 32432     30-35       7
## 32433     18-30      10
## 32434     30-35       7
## 32435     30-35       7
## 32436     30-35       7
## 32437       65+       4
## 32438     35-40       6
## 32439     18-30      10
## 32440     30-35       7
## 32441     35-40       6
## 32442     18-30      10
## 32443     50-60       5
## 32444     18-30      10
## 32445     50-60       5
## 32446       65+       4
## 32447     40-50       5
## 32448     40-50       5
## 32449     18-30      10
## 32450     18-30      10
## 32451     18-30      10
## 32452     18-30      10
## 32453     18-30      10
## 32454     30-35       7
## 32455     30-35       7
## 32456     30-35       7
## 32457     40-50       5
## 32458       65+       4
## 32459     40-50       5
## 32460     30-35       7
## 32461     40-50       5
## 32462     35-40       6
## 32463     18-30      10
## 32464     30-35       7
## 32465     30-35       7
## 32466     40-50       5
## 32467     18-30      10
## 32468     18-30      10
## 32469     18-30      10
## 32470     30-35       7
## 32471     18-30      10
## 32472     35-40       6
## 32473     30-35       7
## 32474     40-50       5
## 32475     40-50       5
## 32476     18-30      10
## 32477     40-50       5
## 32478     50-60       5
## 32479     40-50       5
## 32480     40-50       5
## 32481     18-30      10
## 32482     40-50       5
## 32483     18-30      10
## 32484     18-30      10
## 32485     40-50       5
## 32486     35-40       6
## 32487     18-30      10
## 32488     18-30      10
## 32489     18-30      10
## 32490     35-40       6
## 32491     30-35       7
## 32492     18-30      10
## 32493     18-30      10
## 32494     40-50       5
## 32495     30-35       7
## 32496     18-30      10
## 32497     40-50       5
## 32498     30-35       7
## 32499     30-35       7
## 32500     40-50       5
## 32501     18-30      10
## 32502     30-35       7
## 32503     18-30      10
## 32504     50-60       5
## 32505     18-30      10
## 32506     18-30      10
## 32507     50-60       5
## 32508     50-60       5
## 32509     18-30      10
## 32510     30-35       7
## 32511     35-40       6
## 32512     50-60       5
## 32513     30-35       7
## 32514     30-35       7
## 32515     30-35       7
## 32516     40-50       5
## 32517     35-40       6
## 32518     30-35       7
## 32519     18-30      10
## 32520     18-30      10
## 32521     30-35       7
## 32522     18-30      10
## 32523     35-40       6
## 32524     18-30      10
## 32525     35-40       6
## 32526     18-30      10
## 32527     35-40       6
## 32528     30-35       7
## 32529     35-40       6
## 32530     50-60       5
## 32531     18-30      10
## 32532     40-50       5
## 32533     18-30      10
## 32534     18-30      10
## 32535     18-30      10
## 32536     18-30      10
## 32537     40-50       5
## 32538     30-35       7
## 32539     18-30      10
## 32540     40-50       5
## 32541     30-35       7
## 32542     30-35       7
## 32543     35-40       6
## 32544     18-30      10
## 32545     18-30      10
## 32546     18-30      10
## 32547     18-30      10
## 32548     18-30      10
## 32549     30-35       7
## 32550     50-60       5
## 32551     35-40       6
## 32552     18-30      10
## 32553     40-50       5
## 32554     18-30      10
## 32555     40-50       5
## 32556     18-30      10
## 32557     35-40       6
## 32558     40-50       5
## 32559     18-30      10
## 32560     30-35       7
## 32561     50-60       5
## 32562     18-30      10
## 32563     50-60       5
## 32564     18-30      10
## 32565     18-30      10
## 32566     18-30      10
## 32567     18-30      10
## 32568     30-35       7
## 32569     30-35       7
## 32570     18-30      10
## 32571     18-30      10
## 32572     18-30      10
## 32573     30-35       7
## 32574     18-30      10
## 32575     35-40       6
## 32576     18-30      10
## 32577     35-40       6
## 32578     40-50       5
## 32579     18-30      10
## 32580     18-30      10
## 32581     18-30      10
## 32582     35-40       6
## 32583     18-30      10
## 32584     50-60       5
## 32585     40-50       5
## 32586     35-40       6
## 32587     30-35       7
## 32588     35-40       6
## 32589     50-60       5
## 32590     40-50       5
## 32591     50-60       5
## 32592     18-30      10
## 32593     18-30      10
## 32594     30-35       7
## 32595     18-30      10
## 32596     40-50       5
## 32597     18-30      10
## 32598     18-30      10
## 32599     18-30      10
## 32600     18-30      10
## 32601     35-40       6
## 32602     18-30      10
## 32603     18-30      10
## 32604     50-60       5
## 32605     35-40       6
## 32606     18-30      10
## 32607     50-60       5
## 32608     30-35       7
## 32609     30-35       7
## 32610     18-30      10
## 32611     18-30      10
## 32612     40-50       5
## 32613     40-50       5
## 32614     35-40       6
## 32615     18-30      10
## 32616     35-40       6
## 32617     30-35       7
## 32618     40-50       5
## 32619     18-30      10
## 32620     30-35       7
## 32621     18-30      10
## 32622     18-30      10
## 32623     50-60       5
## 32624       65+       4
## 32625     18-30      10
## 32626     40-50       5
## 32627     18-30      10
## 32628     18-30      10
## 32629     30-35       7
## 32630     40-50       5
## 32631     40-50       5
## 32632     30-35       7
## 32633     40-50       5
## 32634     18-30      10
## 32635     18-30      10
## 32636     18-30      10
## 32637     30-35       7
## 32638     30-35       7
## 32639     40-50       5
## 32640     18-30      10
## 32641     18-30      10
## 32642     30-35       7
## 32643     30-35       7
## 32644     30-35       7
## 32645     18-30      10
## 32646     18-30      10
## 32647     30-35       7
## 32648     35-40       6
## 32649     40-50       5
## 32650     30-35       7
## 32651     30-35       7
## 32652     18-30      10
## 32653     35-40       6
## 32654     35-40       6
## 32655       65+       4
## 32656     35-40       6
## 32657     30-35       7
## 32658     30-35       7
## 32659       65+       4
## 32660     30-35       7
## 32661     18-30      10
## 32662     30-35       7
## 32663     40-50       5
## 32664     30-35       7
## 32665     40-50       5
## 32666     40-50       5
## 32667       65+       4
## 32668     18-30      10
## 32669     18-30      10
## 32670     18-30      10
## 32671     40-50       5
## 32672     18-30      10
## 32673     18-30      10
## 32674     40-50       5
## 32675     18-30      10
## 32676     40-50       5
## 32677     18-30      10
## 32678     18-30      10
## 32679     18-30      10
## 32680     40-50       5
## 32681     35-40       6
## 32682     18-30      10
## 32683     30-35       7
## 32684     30-35       7
## 32685     40-50       5
## 32686     40-50       5
## 32687     18-30      10
## 32688     35-40       6
## 32689     40-50       5
## 32690     35-40       6
## 32691     18-30      10
## 32692     35-40       6
## 32693     35-40       6
## 32694     30-35       7
## 32695     50-60       5
## 32696     40-50       5
## 32697       65+       4
## 32698     18-30      10
## 32699     30-35       7
## 32700     35-40       6
## 32701     18-30      10
## 32702     18-30      10
## 32703     40-50       5
## 32704     35-40       6
## 32705     40-50       5
## 32706     30-35       7
## 32707     35-40       6
## 32708     18-30      10
## 32709     35-40       6
## 32710     18-30      10
## 32711     35-40       6
## 32712     18-30      10
## 32713     18-30      10
## 32714     40-50       5
## 32715     30-35       7
## 32716     18-30      10
## 32717     40-50       5
## 32718     30-35       7
## 32719     18-30      10
## 32720     40-50       5
## 32721     18-30      10
## 32722     18-30      10
## 32723     30-35       7
## 32724     40-50       5
## 32725     40-50       5
## 32726     40-50       5
## 32727     30-35       7
## 32728     30-35       7
## 32729     18-30      10
## 32730     50-60       5
## 32731     35-40       6
## 32732     35-40       6
## 32733     30-35       7
## 32734     18-30      10
## 32735     40-50       5
## 32736     18-30      10
## 32737     35-40       6
## 32738     18-30      10
## 32739     18-30      10
## 32740     18-30      10
## 32741     30-35       7
## 32742     18-30      10
## 32743     30-35       7
## 32744     30-35       7
## 32745     30-35       7
## 32746     40-50       5
## 32747     18-30      10
## 32748     40-50       5
## 32749     18-30      10
## 32750     30-35       7
## 32751     18-30      10
## 32752     35-40       6
## 32753     18-30      10
## 32754     18-30      10
## 32755     35-40       6
## 32756     18-30      10
## 32757     18-30      10
## 32758     40-50       5
## 32759     40-50       5
## 32760     18-30      10
## 32761     40-50       5
## 32762     18-30      10
## 32763     18-30      10
## 32764     40-50       5
## 32765     18-30      10
## 32766     30-35       7
## 32767     50-60       5
## 32768     40-50       5
## 32769     30-35       7
## 32770     18-30      10
## 32771     30-35       7
## 32772     35-40       6
## 32773     30-35       7
## 32774     30-35       7
## 32775     18-30      10
## 32776     40-50       5
## 32777     18-30      10
## 32778     30-35       7
## 32779     35-40       6
## 32780     30-35       7
## 32781     35-40       6
## 32782     18-30      10
## 32783     30-35       7
## 32784     18-30      10
## 32785     35-40       6
## 32786     35-40       6
## 32787     35-40       6
## 32788     40-50       5
## 32789     18-30      10
## 32790     50-60       5
## 32791     40-50       5
## 32792     18-30      10
## 32793     18-30      10
## 32794     50-60       5
## 32795     30-35       7
## 32796     40-50       5
## 32797     30-35       7
## 32798     30-35       7
## 32799     18-30      10
## 32800     30-35       7
## 32801     18-30      10
## 32802     18-30      10
## 32803     18-30      10
## 32804     35-40       6
## 32805     40-50       5
## 32806     40-50       5
## 32807     35-40       6
## 32808     40-50       5
## 32809     30-35       7
## 32810     35-40       6
## 32811     18-30      10
## 32812     40-50       5
## 32813     18-30      10
## 32814     35-40       6
## 32815     18-30      10
## 32816     18-30      10
## 32817     30-35       7
## 32818     35-40       6
## 32819     18-30      10
## 32820     18-30      10
## 32821     30-35       7
## 32822     18-30      10
## 32823     30-35       7
## 32824     35-40       6
## 32825     40-50       5
## 32826     18-30      10
## 32827     40-50       5
## 32828     40-50       5
## 32829     50-60       5
## 32830     30-35       7
## 32831     40-50       5
## 32832     35-40       6
## 32833     18-30      10
## 32834     18-30      10
## 32835     18-30      10
## 32836     18-30      10
## 32837     35-40       6
## 32838     35-40       6
## 32839     18-30      10
## 32840     18-30      10
## 32841     18-30      10
## 32842     18-30      10
## 32843     18-30      10
## 32844     30-35       7
## 32845     40-50       5
## 32846     18-30      10
## 32847       65+       4
## 32848     50-60       5
## 32849     35-40       6
## 32850     30-35       7
## 32851     35-40       6
## 32852     40-50       5
## 32853     18-30      10
## 32854     18-30      10
## 32855     18-30      10
## 32856     30-35       7
## 32857     30-35       7
## 32858     30-35       7
## 32859     18-30      10
## 32860     30-35       7
## 32861     30-35       7
## 32862     18-30      10
## 32863       65+       4
## 32864     30-35       7
## 32865     18-30      10
## 32866     40-50       5
## 32867     40-50       5
## 32868     40-50       5
## 32869     30-35       7
## 32870     40-50       5
## 32871     30-35       7
## 32872     30-35       7
## 32873     18-30      10
## 32874     18-30      10
## 32875     18-30      10
## 32876     18-30      10
## 32877     35-40       6
## 32878     40-50       5
## 32879     35-40       6
## 32880     18-30      10
## 32881     30-35       7
## 32882     18-30      10
## 32883     40-50       5
## 32884     40-50       5
## 32885     40-50       5
## 32886     18-30      10
## 32887     18-30      10
## 32888     40-50       5
## 32889     18-30      10
## 32890     30-35       7
## 32891     18-30      10
## 32892     35-40       6
## 32893     18-30      10
## 32894     40-50       5
## 32895     18-30      10
## 32896     40-50       5
## 32897     18-30      10
## 32898     18-30      10
## 32899     18-30      10
## 32900     18-30      10
## 32901     30-35       7
## 32902     18-30      10
## 32903     30-35       7
## 32904     35-40       6
## 32905     18-30      10
## 32906     35-40       6
## 32907     30-35       7
## 32908     40-50       5
## 32909     40-50       5
## 32910     18-30      10
## 32911     18-30      10
## 32912     18-30      10
## 32913     18-30      10
## 32914     18-30      10
## 32915     18-30      10
## 32916     18-30      10
## 32917     18-30      10
## 32918     18-30      10
## 32919     35-40       6
## 32920     18-30      10
## 32921     18-30      10
## 32922     30-35       7
## 32923     18-30      10
## 32924     18-30      10
## 32925     18-30      10
## 32926     18-30      10
## 32927     18-30      10
## 32928     30-35       7
## 32929     35-40       6
## 32930     40-50       5
## 32931     18-30      10
## 32932     40-50       5
## 32933     18-30      10
## 32934     40-50       5
## 32935     18-30      10
## 32936     30-35       7
## 32937     30-35       7
## 32938     18-30      10
## 32939     40-50       5
## 32940     18-30      10
## 32941     30-35       7
## 32942     18-30      10
## 32943     35-40       6
## 32944     30-35       7
## 32945     30-35       7
## 32946     30-35       7
## 32947     35-40       6
## 32948     18-30      10
## 32949     30-35       7
## 32950     35-40       6
## 32951     18-30      10
## 32952     40-50       5
## 32953     50-60       5
## 32954     50-60       5
## 32955     18-30      10
## 32956     18-30      10
## 32957     35-40       6
## 32958     40-50       5
## 32959     18-30      10
## 32960     18-30      10
## 32961     40-50       5
## 32962     18-30      10
## 32963     40-50       5
## 32964     40-50       5
## 32965     18-30      10
## 32966     18-30      10
## 32967     50-60       5
## 32968     18-30      10
## 32969     50-60       5
## 32970     40-50       5
## 32971     30-35       7
## 32972     18-30      10
## 32973     30-35       7
## 32974     18-30      10
## 32975     18-30      10
## 32976     35-40       6
## 32977     40-50       5
## 32978     35-40       6
## 32979     18-30      10
## 32980     18-30      10
## 32981     18-30      10
## 32982     18-30      10
## 32983     30-35       7
## 32984     18-30      10
## 32985     35-40       6
## 32986     35-40       6
## 32987     18-30      10
## 32988     30-35       7
## 32989     40-50       5
## 32990     35-40       6
## 32991     50-60       5
## 32992     18-30      10
## 32993     30-35       7
## 32994     18-30      10
## 32995     30-35       7
## 32996     50-60       5
## 32997     18-30      10
## 32998     18-30      10
## 32999     35-40       6
## 33000     18-30      10
## 33001     18-30      10
## 33002     18-30      10
## 33003     18-30      10
## 33004     18-30      10
## 33005     30-35       7
## 33006     40-50       5
## 33007       65+       4
## 33008     35-40       6
## 33009     18-30      10
## 33010     18-30      10
## 33011     18-30      10
## 33012     40-50       5
## 33013     30-35       7
## 33014     30-35       7
## 33015     18-30      10
## 33016     30-35       7
## 33017       65+       4
## 33018     18-30      10
## 33019     18-30      10
## 33020     30-35       7
## 33021     18-30      10
## 33022     30-35       7
## 33023     30-35       7
## 33024     18-30      10
## 33025     40-50       5
## 33026     18-30      10
## 33027     18-30      10
## 33028     30-35       7
## 33029     18-30      10
## 33030     30-35       7
## 33031     35-40       6
## 33032     30-35       7
## 33033     18-30      10
## 33034     18-30      10
## 33035     35-40       6
## 33036     18-30      10
## 33037     50-60       5
## 33038       65+       4
## 33039     18-30      10
## 33040     18-30      10
## 33041     35-40       6
## 33042     30-35       7
## 33043     35-40       6
## 33044     35-40       6
## 33045     18-30      10
## 33046     40-50       5
## 33047     35-40       6
## 33048     30-35       7
## 33049     40-50       5
## 33050     18-30      10
## 33051     30-35       7
## 33052     50-60       5
## 33053     40-50       5
## 33054     18-30      10
## 33055     35-40       6
## 33056     35-40       6
## 33057     18-30      10
## 33058     18-30      10
## 33059     35-40       6
## 33060     30-35       7
## 33061     18-30      10
## 33062     30-35       7
## 33063     18-30      10
## 33064     50-60       5
## 33065     35-40       6
## 33066     18-30      10
## 33067     30-35       7
## 33068     18-30      10
## 33069     35-40       6
## 33070     50-60       5
## 33071       65+       4
## 33072     18-30      10
## 33073     30-35       7
## 33074     18-30      10
## 33075     18-30      10
## 33076     18-30      10
## 33077     30-35       7
## 33078     18-30      10
## 33079     18-30      10
## 33080     18-30      10
## 33081     18-30      10
## 33082     18-30      10
## 33083     30-35       7
## 33084     40-50       5
## 33085     30-35       7
## 33086     18-30      10
## 33087     40-50       5
## 33088     30-35       7
## 33089     40-50       5
## 33090     40-50       5
## 33091     18-30      10
## 33092     35-40       6
## 33093     18-30      10
## 33094     40-50       5
## 33095     18-30      10
## 33096     35-40       6
## 33097     18-30      10
## 33098     35-40       6
## 33099     35-40       6
## 33100     40-50       5
## 33101     18-30      10
## 33102     50-60       5
## 33103     18-30      10
## 33104     18-30      10
## 33105     40-50       5
## 33106     35-40       6
## 33107     50-60       5
## 33108     18-30      10
## 33109     30-35       7
## 33110     30-35       7
## 33111     18-30      10
## 33112     35-40       6
## 33113     30-35       7
## 33114     30-35       7
## 33115     18-30      10
## 33116     18-30      10
## 33117     40-50       5
## 33118     35-40       6
## 33119     18-30      10
## 33120     18-30      10
## 33121     18-30      10
## 33122     50-60       5
## 33123     50-60       5
## 33124       65+       4
## 33125     40-50       5
## 33126     18-30      10
## 33127     40-50       5
## 33128       65+       4
## 33129     18-30      10
## 33130     40-50       5
## 33131     50-60       5
## 33132     50-60       5
## 33133     18-30      10
## 33134     30-35       7
## 33135     30-35       7
## 33136     18-30      10
## 33137     50-60       5
## 33138     30-35       7
## 33139     50-60       5
## 33140     18-30      10
## 33141     18-30      10
## 33142     18-30      10
## 33143     40-50       5
## 33144     30-35       7
## 33145     18-30      10
## 33146     35-40       6
## 33147     18-30      10
## 33148     18-30      10
## 33149     30-35       7
## 33150     35-40       6
## 33151     35-40       6
## 33152     35-40       6
## 33153     18-30      10
## 33154     18-30      10
## 33155     30-35       7
## 33156     18-30      10
## 33157     40-50       5
## 33158     40-50       5
## 33159     35-40       6
## 33160     30-35       7
## 33161     18-30      10
## 33162     18-30      10
## 33163     30-35       7
## 33164     35-40       6
## 33165     30-35       7
## 33166     18-30      10
## 33167     35-40       6
## 33168     50-60       5
## 33169     18-30      10
## 33170     18-30      10
## 33171     40-50       5
## 33172     18-30      10
## 33173     18-30      10
## 33174     18-30      10
## 33175     18-30      10
## 33176     18-30      10
## 33177     18-30      10
## 33178     18-30      10
## 33179     18-30      10
## 33180     50-60       5
## 33181     30-35       7
## 33182     18-30      10
## 33183     35-40       6
## 33184     18-30      10
## 33185     35-40       6
## 33186     18-30      10
## 33187     35-40       6
## 33188     30-35       7
## 33189     30-35       7
## 33190     35-40       6
## 33191     30-35       7
## 33192     30-35       7
## 33193     18-30      10
## 33194     18-30      10
## 33195     18-30      10
## 33196     50-60       5
## 33197       65+       4
## 33198     18-30      10
## 33199     18-30      10
## 33200     35-40       6
## 33201     50-60       5
## 33202     30-35       7
## 33203     30-35       7
## 33204     18-30      10
## 33205     30-35       7
## 33206     30-35       7
## 33207     18-30      10
## 33208     30-35       7
## 33209     40-50       5
## 33210     18-30      10
## 33211     35-40       6
## 33212     30-35       7
## 33213     18-30      10
## 33214     35-40       6
## 33215     40-50       5
## 33216       65+       4
## 33217     35-40       6
## 33218     18-30      10
## 33219     35-40       6
## 33220     18-30      10
## 33221     30-35       7
## 33222     18-30      10
## 33223     40-50       5
## 33224     30-35       7
## 33225     35-40       6
## 33226     35-40       6
## 33227     35-40       6
## 33228     35-40       6
## 33229     18-30      10
## 33230     35-40       6
## 33231     30-35       7
## 33232     35-40       6
## 33233     35-40       6
## 33234       65+       4
## 33235     18-30      10
## 33236     18-30      10
## 33237     18-30      10
## 33238     30-35       7
## 33239     50-60       5
## 33240     30-35       7
## 33241     40-50       5
## 33242     50-60       5
## 33243     30-35       7
## 33244     30-35       7
## 33245     18-30      10
## 33246     35-40       6
## 33247     18-30      10
## 33248     35-40       6
## 33249     18-30      10
## 33250     35-40       6
## 33251     18-30      10
## 33252     18-30      10
## 33253     18-30      10
## 33254       65+       4
## 33255     50-60       5
## 33256     35-40       6
## 33257     18-30      10
## 33258     30-35       7
## 33259     35-40       6
## 33260     30-35       7
## 33261     18-30      10
## 33262     30-35       7
## 33263     18-30      10
## 33264     35-40       6
## 33265     35-40       6
## 33266     50-60       5
## 33267     35-40       6
## 33268     40-50       5
## 33269     18-30      10
## 33270     30-35       7
## 33271     18-30      10
## 33272     40-50       5
## 33273     40-50       5
## 33274     40-50       5
## 33275     18-30      10
## 33276     40-50       5
## 33277     30-35       7
## 33278     18-30      10
## 33279     18-30      10
## 33280     18-30      10
## 33281     30-35       7
## 33282     35-40       6
## 33283     40-50       5
## 33284     40-50       5
## 33285     35-40       6
## 33286     18-30      10
## 33287     35-40       6
## 33288     35-40       6
## 33289     30-35       7
## 33290     30-35       7
## 33291     40-50       5
## 33292     18-30      10
## 33293     18-30      10
## 33294     18-30      10
## 33295     18-30      10
## 33296     30-35       7
## 33297     18-30      10
## 33298     18-30      10
## 33299     18-30      10
## 33300     18-30      10
## 33301     30-35       7
## 33302     18-30      10
## 33303     18-30      10
## 33304     35-40       6
## 33305     30-35       7
## 33306     35-40       6
## 33307     35-40       6
## 33308     50-60       5
## 33309     40-50       5
## 33310     18-30      10
## 33311     18-30      10
## 33312     30-35       7
## 33313     18-30      10
## 33314     18-30      10
## 33315     40-50       5
## 33316     30-35       7
## 33317     35-40       6
## 33318     40-50       5
## 33319     35-40       6
## 33320     40-50       5
## 33321     18-30      10
## 33322     18-30      10
## 33323     18-30      10
## 33324     18-30      10
## 33325     18-30      10
## 33326     30-35       7
## 33327     30-35       7
## 33328     30-35       7
## 33329     18-30      10
## 33330     35-40       6
## 33331     18-30      10
## 33332     18-30      10
## 33333     50-60       5
## 33334     18-30      10
## 33335     35-40       6
## 33336     30-35       7
## 33337     40-50       5
## 33338     18-30      10
## 33339     35-40       6
## 33340     50-60       5
## 33341     30-35       7
## 33342     30-35       7
## 33343     40-50       5
## 33344     18-30      10
## 33345     35-40       6
## 33346     40-50       5
## 33347     30-35       7
## 33348     30-35       7
## 33349     50-60       5
## 33350     18-30      10
## 33351     18-30      10
## 33352     30-35       7
## 33353     30-35       7
## 33354     40-50       5
## 33355     40-50       5
## 33356     18-30      10
## 33357     18-30      10
## 33358     18-30      10
## 33359     30-35       7
## 33360     18-30      10
## 33361     18-30      10
## 33362     50-60       5
## 33363     18-30      10
## 33364     30-35       7
## 33365     18-30      10
## 33366     18-30      10
## 33367     18-30      10
## 33368     18-30      10
## 33369     35-40       6
## 33370     30-35       7
## 33371     35-40       6
## 33372     40-50       5
## 33373     30-35       7
## 33374     18-30      10
## 33375     18-30      10
## 33376     40-50       5
## 33377     18-30      10
## 33378     50-60       5
## 33379     18-30      10
## 33380     18-30      10
## 33381     18-30      10
## 33382     18-30      10
## 33383     35-40       6
## 33384     30-35       7
## 33385     40-50       5
## 33386     50-60       5
## 33387     18-30      10
## 33388     18-30      10
## 33389     18-30      10
## 33390     30-35       7
## 33391     35-40       6
## 33392     35-40       6
## 33393     30-35       7
## 33394       65+       4
## 33395     50-60       5
## 33396     40-50       5
## 33397     35-40       6
## 33398     18-30      10
## 33399     50-60       5
## 33400     30-35       7
## 33401     50-60       5
## 33402     30-35       7
## 33403     30-35       7
## 33404     30-35       7
## 33405     30-35       7
## 33406     18-30      10
## 33407     18-30      10
## 33408     30-35       7
## 33409     18-30      10
## 33410     18-30      10
## 33411     18-30      10
## 33412     30-35       7
## 33413     18-30      10
## 33414     35-40       6
## 33415     30-35       7
## 33416     50-60       5
## 33417     18-30      10
## 33418     18-30      10
## 33419     30-35       7
## 33420     18-30      10
## 33421     18-30      10
## 33422     35-40       6
## 33423     35-40       6
## 33424     18-30      10
## 33425     18-30      10
## 33426     30-35       7
## 33427     18-30      10
## 33428     18-30      10
## 33429     18-30      10
## 33430     18-30      10
## 33431     18-30      10
## 33432     35-40       6
## 33433     18-30      10
## 33434     30-35       7
## 33435     30-35       7
## 33436     40-50       5
## 33437     50-60       5
## 33438     18-30      10
## 33439     18-30      10
## 33440     18-30      10
## 33441     18-30      10
## 33442     18-30      10
## 33443     18-30      10
## 33444     18-30      10
## 33445     18-30      10
## 33446     50-60       5
## 33447     18-30      10
## 33448     18-30      10
## 33449     30-35       7
## 33450     40-50       5
## 33451     30-35       7
## 33452     30-35       7
## 33453     18-30      10
## 33454     18-30      10
## 33455     18-30      10
## 33456     30-35       7
## 33457     18-30      10
## 33458     18-30      10
## 33459     18-30      10
## 33460     35-40       6
## 33461     18-30      10
## 33462     30-35       7
## 33463     18-30      10
## 33464     30-35       7
## 33465     35-40       6
## 33466     40-50       5
## 33467     50-60       5
## 33468     40-50       5
## 33469     18-30      10
## 33470     18-30      10
## 33471     30-35       7
## 33472     50-60       5
## 33473     18-30      10
## 33474     35-40       6
## 33475     40-50       5
## 33476     40-50       5
## 33477     30-35       7
## 33478     40-50       5
## 33479     30-35       7
## 33480     18-30      10
## 33481     18-30      10
## 33482     18-30      10
## 33483     18-30      10
## 33484     30-35       7
## 33485     18-30      10
## 33486     35-40       6
## 33487       65+       4
## 33488     18-30      10
## 33489     50-60       5
## 33490     40-50       5
## 33491     35-40       6
## 33492     40-50       5
## 33493     35-40       6
## 33494     35-40       6
## 33495     40-50       5
## 33496     30-35       7
## 33497     40-50       5
## 33498     35-40       6
## 33499     40-50       5
## 33500     40-50       5
## 33501     30-35       7
## 33502     18-30      10
## 33503     35-40       6
## 33504     30-35       7
## 33505     30-35       7
## 33506     18-30      10
## 33507     30-35       7
## 33508     40-50       5
## 33509     30-35       7
## 33510     18-30      10
## 33511     30-35       7
## 33512     18-30      10
## 33513     35-40       6
## 33514       65+       4
## 33515     30-35       7
## 33516     35-40       6
## 33517     18-30      10
## 33518     40-50       5
## 33519     30-35       7
## 33520     18-30      10
## 33521     30-35       7
## 33522     18-30      10
## 33523     30-35       7
## 33524     40-50       5
## 33525     18-30      10
## 33526     18-30      10
## 33527     40-50       5
## 33528     18-30      10
## 33529     18-30      10
## 33530     18-30      10
## 33531     18-30      10
## 33532     18-30      10
## 33533     18-30      10
## 33534     30-35       7
## 33535     30-35       7
## 33536     40-50       5
## 33537     35-40       6
## 33538     30-35       7
## 33539     30-35       7
## 33540     18-30      10
## 33541     40-50       5
## 33542     30-35       7
## 33543     18-30      10
## 33544     30-35       7
## 33545     18-30      10
## 33546     18-30      10
## 33547     18-30      10
## 33548     18-30      10
## 33549     18-30      10
## 33550     18-30      10
## 33551     18-30      10
## 33552     30-35       7
## 33553     40-50       5
## 33554     35-40       6
## 33555     30-35       7
## 33556     35-40       6
## 33557     50-60       5
## 33558     40-50       5
## 33559     18-30      10
## 33560     18-30      10
## 33561     40-50       5
## 33562     18-30      10
## 33563     18-30      10
## 33564     18-30      10
## 33565     18-30      10
## 33566     30-35       7
## 33567     18-30      10
## 33568     18-30      10
## 33569     18-30      10
## 33570     30-35       7
## 33571     18-30      10
## 33572     40-50       5
## 33573     30-35       7
## 33574     30-35       7
## 33575     40-50       5
## 33576     40-50       5
## 33577     40-50       5
## 33578     35-40       6
## 33579     40-50       5
## 33580     18-30      10
## 33581     40-50       5
## 33582     30-35       7
## 33583     18-30      10
## 33584     18-30      10
## 33585     30-35       7
## 33586     18-30      10
## 33587     40-50       5
## 33588     35-40       6
## 33589     18-30      10
## 33590     18-30      10
## 33591     40-50       5
## 33592     40-50       5
## 33593     40-50       5
## 33594     40-50       5
## 33595     18-30      10
## 33596     30-35       7
## 33597     35-40       6
## 33598     30-35       7
## 33599     40-50       5
## 33600     18-30      10
## 33601     18-30      10
## 33602     18-30      10
## 33603     18-30      10
## 33604     18-30      10
## 33605     18-30      10
## 33606     30-35       7
## 33607     18-30      10
## 33608     18-30      10
## 33609     18-30      10
## 33610     50-60       5
## 33611     18-30      10
## 33612     18-30      10
## 33613     30-35       7
## 33614     30-35       7
## 33615     18-30      10
## 33616     30-35       7
## 33617     50-60       5
## 33618     18-30      10
## 33619     18-30      10
## 33620     18-30      10
## 33621     18-30      10
## 33622     40-50       5
## 33623     18-30      10
## 33624     50-60       5
## 33625     18-30      10
## 33626     35-40       6
## 33627     30-35       7
## 33628     18-30      10
## 33629     30-35       7
## 33630     40-50       5
## 33631     18-30      10
## 33632     18-30      10
## 33633     40-50       5
## 33634     35-40       6
## 33635     30-35       7
## 33636     30-35       7
## 33637     18-30      10
## 33638     18-30      10
## 33639     35-40       6
## 33640     30-35       7
## 33641     35-40       6
## 33642     18-30      10
## 33643     30-35       7
## 33644     18-30      10
## 33645     30-35       7
## 33646     18-30      10
## 33647     18-30      10
## 33648     35-40       6
## 33649     35-40       6
## 33650     18-30      10
## 33651     18-30      10
## 33652     18-30      10
## 33653     18-30      10
## 33654     30-35       7
## 33655     18-30      10
## 33656     50-60       5
## 33657     18-30      10
## 33658     50-60       5
## 33659     18-30      10
## 33660     18-30      10
## 33661     18-30      10
## 33662     18-30      10
## 33663     18-30      10
## 33664     18-30      10
## 33665     18-30      10
## 33666     18-30      10
## 33667     18-30      10
## 33668     18-30      10
## 33669     18-30      10
## 33670     40-50       5
## 33671     35-40       6
## 33672     18-30      10
## 33673     40-50       5
## 33674     40-50       5
## 33675     40-50       5
## 33676     30-35       7
## 33677     50-60       5
## 33678     35-40       6
## 33679     18-30      10
## 33680     40-50       5
## 33681     30-35       7
## 33682     40-50       5
## 33683     18-30      10
## 33684     35-40       6
## 33685     18-30      10
## 33686     40-50       5
## 33687     18-30      10
## 33688     18-30      10
## 33689     18-30      10
## 33690     18-30      10
## 33691     30-35       7
## 33692     18-30      10
## 33693     30-35       7
## 33694     30-35       7
## 33695     40-50       5
## 33696     30-35       7
## 33697     18-30      10
## 33698     18-30      10
## 33699     50-60       5
## 33700     18-30      10
## 33701     35-40       6
## 33702     40-50       5
## 33703     30-35       7
## 33704     18-30      10
## 33705     30-35       7
## 33706     18-30      10
## 33707     40-50       5
## 33708     30-35       7
## 33709     40-50       5
## 33710     18-30      10
## 33711     30-35       7
## 33712     18-30      10
## 33713     18-30      10
## 33714     40-50       5
## 33715     35-40       6
## 33716     35-40       6
## 33717     35-40       6
## 33718     18-30      10
## 33719     18-30      10
## 33720     30-35       7
## 33721     18-30      10
## 33722     18-30      10
## 33723     30-35       7
## 33724     18-30      10
## 33725     18-30      10
## 33726     18-30      10
## 33727     18-30      10
## 33728     18-30      10
## 33729     35-40       6
## 33730     18-30      10
## 33731     18-30      10
## 33732     30-35       7
## 33733     18-30      10
## 33734     30-35       7
## 33735     18-30      10
## 33736     18-30      10
## 33737     40-50       5
## 33738     18-30      10
## 33739     30-35       7
## 33740     40-50       5
## 33741     18-30      10
## 33742     18-30      10
## 33743     30-35       7
## 33744     18-30      10
## 33745     18-30      10
## 33746     40-50       5
## 33747     30-35       7
## 33748     18-30      10
## 33749     18-30      10
## 33750     40-50       5
## 33751     18-30      10
## 33752     18-30      10
## 33753     18-30      10
## 33754     50-60       5
## 33755     18-30      10
## 33756     50-60       5
## 33757     35-40       6
## 33758     18-30      10
## 33759     50-60       5
## 33760     40-50       5
## 33761     18-30      10
## 33762     30-35       7
## 33763     18-30      10
## 33764     18-30      10
## 33765     30-35       7
## 33766     18-30      10
## 33767     18-30      10
## 33768     35-40       6
## 33769     35-40       6
## 33770     18-30      10
## 33771     18-30      10
## 33772     18-30      10
## 33773     35-40       6
## 33774     30-35       7
## 33775     35-40       6
## 33776     18-30      10
## 33777     40-50       5
## 33778     30-35       7
## 33779     40-50       5
## 33780     18-30      10
## 33781     40-50       5
## 33782     40-50       5
## 33783     18-30      10
## 33784     30-35       7
## 33785     18-30      10
## 33786     18-30      10
## 33787     18-30      10
## 33788     30-35       7
## 33789     30-35       7
## 33790     18-30      10
## 33791     30-35       7
## 33792     50-60       5
## 33793     40-50       5
## 33794     30-35       7
## 33795     18-30      10
## 33796     40-50       5
## 33797     40-50       5
## 33798     40-50       5
## 33799     40-50       5
## 33800     40-50       5
## 33801     18-30      10
## 33802     18-30      10
## 33803     40-50       5
## 33804     30-35       7
## 33805     18-30      10
## 33806     50-60       5
## 33807     30-35       7
## 33808     30-35       7
## 33809     18-30      10
## 33810     18-30      10
## 33811     18-30      10
## 33812     40-50       5
## 33813     18-30      10
## 33814     18-30      10
## 33815     18-30      10
## 33816       65+       4
## 33817     30-35       7
## 33818     35-40       6
## 33819     35-40       6
## 33820     50-60       5
## 33821     35-40       6
## 33822     40-50       5
## 33823     18-30      10
## 33824     18-30      10
## 33825     18-30      10
## 33826     18-30      10
## 33827     40-50       5
## 33828     18-30      10
## 33829     18-30      10
## 33830     18-30      10
## 33831     40-50       5
## 33832     30-35       7
## 33833     30-35       7
## 33834     40-50       5
## 33835     40-50       5
## 33836     30-35       7
## 33837     40-50       5
## 33838     30-35       7
## 33839     18-30      10
## 33840     50-60       5
## 33841     30-35       7
## 33842     40-50       5
## 33843     18-30      10
## 33844     30-35       7
## 33845     35-40       6
## 33846     50-60       5
## 33847     35-40       6
## 33848     30-35       7
## 33849     30-35       7
## 33850     30-35       7
## 33851     18-30      10
## 33852     18-30      10
## 33853     30-35       7
## 33854     18-30      10
## 33855     30-35       7
## 33856     35-40       6
## 33857     18-30      10
## 33858     40-50       5
## 33859     18-30      10
## 33860     18-30      10
## 33861     35-40       6
## 33862     18-30      10
## 33863     30-35       7
## 33864     18-30      10
## 33865     18-30      10
## 33866     18-30      10
## 33867     18-30      10
## 33868     18-30      10
## 33869     35-40       6
## 33870     30-35       7
## 33871     18-30      10
## 33872     18-30      10
## 33873     50-60       5
## 33874     40-50       5
## 33875     40-50       5
## 33876     30-35       7
## 33877     40-50       5
## 33878     30-35       7
## 33879     18-30      10
## 33880     30-35       7
## 33881     30-35       7
## 33882     40-50       5
## 33883     40-50       5
## 33884     18-30      10
## 33885     30-35       7
## 33886     18-30      10
## 33887     35-40       6
## 33888     18-30      10
## 33889     18-30      10
## 33890     18-30      10
## 33891     30-35       7
## 33892     18-30      10
## 33893     35-40       6
## 33894     35-40       6
## 33895     40-50       5
## 33896     40-50       5
## 33897     30-35       7
## 33898     18-30      10
## 33899     30-35       7
## 33900     18-30      10
## 33901     30-35       7
## 33902     18-30      10
## 33903     35-40       6
## 33904     18-30      10
## 33905     18-30      10
## 33906     18-30      10
## 33907     30-35       7
## 33908     18-30      10
## 33909     18-30      10
## 33910     18-30      10
## 33911     18-30      10
## 33912     18-30      10
## 33913     30-35       7
## 33914     30-35       7
## 33915     18-30      10
## 33916     35-40       6
## 33917     35-40       6
## 33918     50-60       5
## 33919     30-35       7
## 33920     30-35       7
## 33921     30-35       7
## 33922     50-60       5
## 33923     18-30      10
## 33924     30-35       7
## 33925     18-30      10
## 33926     35-40       6
## 33927     18-30      10
## 33928     18-30      10
## 33929     30-35       7
## 33930     35-40       6
## 33931     40-50       5
## 33932     30-35       7
## 33933     30-35       7
## 33934     30-35       7
## 33935     40-50       5
## 33936     30-35       7
## 33937     30-35       7
## 33938     35-40       6
## 33939     18-30      10
## 33940     30-35       7
## 33941     18-30      10
## 33942     35-40       6
## 33943     18-30      10
## 33944     18-30      10
## 33945     18-30      10
## 33946     30-35       7
## 33947     40-50       5
## 33948     35-40       6
## 33949     18-30      10
## 33950     18-30      10
## 33951     30-35       7
## 33952     30-35       7
## 33953     30-35       7
## 33954     18-30      10
## 33955     30-35       7
## 33956     18-30      10
## 33957     35-40       6
## 33958     30-35       7
## 33959     35-40       6
## 33960     18-30      10
## 33961     35-40       6
## 33962     30-35       7
## 33963     40-50       5
## 33964     18-30      10
## 33965     18-30      10
## 33966     18-30      10
## 33967     18-30      10
## 33968     18-30      10
## 33969     30-35       7
## 33970     35-40       6
## 33971     50-60       5
## 33972     18-30      10
## 33973     35-40       6
## 33974     40-50       5
## 33975     35-40       6
## 33976     18-30      10
## 33977     18-30      10
## 33978     35-40       6
## 33979     30-35       7
## 33980     40-50       5
## 33981     35-40       6
## 33982     18-30      10
## 33983     18-30      10
## 33984     18-30      10
## 33985     35-40       6
## 33986     18-30      10
## 33987     18-30      10
## 33988     18-30      10
## 33989     30-35       7
## 33990     18-30      10
## 33991     35-40       6
## 33992     30-35       7
## 33993     35-40       6
## 33994     30-35       7
## 33995     18-30      10
## 33996     30-35       7
## 33997     30-35       7
## 33998     18-30      10
## 33999     35-40       6
## 34000     18-30      10
## 34001     30-35       7
## 34002     18-30      10
## 34003     18-30      10
## 34004     30-35       7
## 34005     18-30      10
## 34006     30-35       7
## 34007     18-30      10
## 34008     30-35       7
## 34009     18-30      10
## 34010     18-30      10
## 34011     18-30      10
## 34012     35-40       6
## 34013     18-30      10
## 34014     30-35       7
## 34015     18-30      10
## 34016     30-35       7
## 34017     30-35       7
## 34018     18-30      10
## 34019     40-50       5
## 34020     35-40       6
## 34021     18-30      10
## 34022     40-50       5
## 34023     30-35       7
## 34024     18-30      10
## 34025     30-35       7
## 34026     30-35       7
## 34027     40-50       5
## 34028     35-40       6
## 34029     18-30      10
## 34030     18-30      10
## 34031     30-35       7
## 34032     40-50       5
## 34033     18-30      10
## 34034     18-30      10
## 34035     35-40       6
## 34036     40-50       5
## 34037     18-30      10
## 34038     35-40       6
## 34039     30-35       7
## 34040     35-40       6
## 34041     30-35       7
## 34042     30-35       7
## 34043     50-60       5
## 34044     30-35       7
## 34045     30-35       7
## 34046     35-40       6
## 34047     40-50       5
## 34048     40-50       5
## 34049       65+       4
## 34050     35-40       6
## 34051     35-40       6
## 34052     35-40       6
## 34053     18-30      10
## 34054     50-60       5
## 34055     18-30      10
## 34056     30-35       7
## 34057     18-30      10
## 34058     35-40       6
## 34059     18-30      10
## 34060     35-40       6
## 34061     18-30      10
## 34062     18-30      10
## 34063     18-30      10
## 34064     30-35       7
## 34065     35-40       6
## 34066     18-30      10
## 34067     18-30      10
## 34068     40-50       5
## 34069     30-35       7
## 34070     18-30      10
## 34071     35-40       6
## 34072     18-30      10
## 34073     50-60       5
## 34074     18-30      10
## 34075     18-30      10
## 34076     35-40       6
## 34077     50-60       5
## 34078     18-30      10
## 34079     18-30      10
## 34080     30-35       7
## 34081     30-35       7
## 34082     18-30      10
## 34083     40-50       5
## 34084     30-35       7
## 34085     18-30      10
## 34086     18-30      10
## 34087     35-40       6
## 34088     35-40       6
## 34089     30-35       7
## 34090     40-50       5
## 34091     18-30      10
## 34092     35-40       6
## 34093     18-30      10
## 34094       65+       4
## 34095     35-40       6
## 34096     40-50       5
## 34097     18-30      10
## 34098     35-40       6
## 34099     40-50       5
## 34100     18-30      10
## 34101     18-30      10
## 34102     18-30      10
## 34103     30-35       7
## 34104     18-30      10
## 34105     35-40       6
## 34106     18-30      10
## 34107     18-30      10
## 34108     30-35       7
## 34109     40-50       5
## 34110     35-40       6
## 34111     30-35       7
## 34112     18-30      10
## 34113     18-30      10
## 34114     18-30      10
## 34115     18-30      10
## 34116     18-30      10
## 34117     18-30      10
## 34118     18-30      10
## 34119     18-30      10
## 34120     18-30      10
## 34121     18-30      10
## 34122     40-50       5
## 34123     18-30      10
## 34124     18-30      10
## 34125     40-50       5
## 34126     35-40       6
## 34127     30-35       7
## 34128     18-30      10
## 34129     30-35       7
## 34130     18-30      10
## 34131     30-35       7
## 34132     18-30      10
## 34133       65+       4
## 34134     40-50       5
## 34135     30-35       7
## 34136     35-40       6
## 34137     50-60       5
## 34138     30-35       7
## 34139     30-35       7
## 34140     18-30      10
## 34141       65+       4
## 34142     40-50       5
## 34143     18-30      10
## 34144     35-40       6
## 34145     18-30      10
## 34146     30-35       7
## 34147     30-35       7
## 34148     18-30      10
## 34149     18-30      10
## 34150     18-30      10
## 34151     18-30      10
## 34152     18-30      10
## 34153     35-40       6
## 34154     18-30      10
## 34155     30-35       7
## 34156     18-30      10
## 34157     50-60       5
## 34158     35-40       6
## 34159     18-30      10
## 34160     18-30      10
## 34161     30-35       7
## 34162     18-30      10
## 34163     30-35       7
## 34164     40-50       5
## 34165     18-30      10
## 34166     35-40       6
## 34167     40-50       5
## 34168     35-40       6
## 34169     30-35       7
## 34170     18-30      10
## 34171     40-50       5
## 34172     18-30      10
## 34173     35-40       6
## 34174     40-50       5
## 34175     18-30      10
## 34176     40-50       5
## 34177     35-40       6
## 34178     50-60       5
## 34179     18-30      10
## 34180     18-30      10
## 34181     18-30      10
## 34182     50-60       5
## 34183     30-35       7
## 34184     30-35       7
## 34185     30-35       7
## 34186     18-30      10
## 34187     35-40       6
## 34188     40-50       5
## 34189     35-40       6
## 34190     18-30      10
## 34191     18-30      10
## 34192     30-35       7
## 34193     18-30      10
## 34194     50-60       5
## 34195     35-40       6
## 34196     18-30      10
## 34197     18-30      10
## 34198     18-30      10
## 34199     18-30      10
## 34200     30-35       7
## 34201     18-30      10
## 34202     18-30      10
## 34203     18-30      10
## 34204     18-30      10
## 34205     35-40       6
## 34206     30-35       7
## 34207     18-30      10
## 34208     40-50       5
## 34209     30-35       7
## 34210     40-50       5
## 34211     18-30      10
## 34212     35-40       6
## 34213     18-30      10
## 34214     18-30      10
## 34215     18-30      10
## 34216     30-35       7
## 34217     18-30      10
## 34218     18-30      10
## 34219     18-30      10
## 34220     18-30      10
## 34221     18-30      10
## 34222     35-40       6
## 34223     30-35       7
## 34224     18-30      10
## 34225     30-35       7
## 34226     30-35       7
## 34227     35-40       6
## 34228     18-30      10
## 34229     18-30      10
## 34230     30-35       7
## 34231     40-50       5
## 34232     35-40       6
## 34233       65+       4
## 34234     18-30      10
## 34235     18-30      10
## 34236     50-60       5
## 34237     18-30      10
## 34238     40-50       5
## 34239     18-30      10
## 34240     35-40       6
## 34241     18-30      10
## 34242     30-35       7
## 34243     35-40       6
## 34244     30-35       7
## 34245     18-30      10
## 34246     30-35       7
## 34247     50-60       5
## 34248     30-35       7
## 34249     30-35       7
## 34250     35-40       6
## 34251     18-30      10
## 34252     50-60       5
## 34253     18-30      10
## 34254     18-30      10
## 34255     30-35       7
## 34256     30-35       7
## 34257     18-30      10
## 34258     18-30      10
## 34259     18-30      10
## 34260     35-40       6
## 34261     30-35       7
## 34262     30-35       7
## 34263     40-50       5
## 34264     18-30      10
## 34265     18-30      10
## 34266     35-40       6
## 34267     18-30      10
## 34268     18-30      10
## 34269     18-30      10
## 34270     18-30      10
## 34271     30-35       7
## 34272     40-50       5
## 34273     40-50       5
## 34274     30-35       7
## 34275     50-60       5
## 34276     40-50       5
## 34277     30-35       7
## 34278     18-30      10
## 34279     18-30      10
## 34280     18-30      10
## 34281     30-35       7
## 34282     18-30      10
## 34283     30-35       7
## 34284     35-40       6
## 34285     35-40       6
## 34286     18-30      10
## 34287     35-40       6
## 34288     35-40       6
## 34289     18-30      10
## 34290     30-35       7
## 34291     40-50       5
## 34292     40-50       5
## 34293     18-30      10
## 34294     30-35       7
## 34295     18-30      10
## 34296     18-30      10
## 34297     30-35       7
## 34298     18-30      10
## 34299     30-35       7
## 34300     35-40       6
## 34301     50-60       5
## 34302     18-30      10
## 34303     35-40       6
## 34304     35-40       6
## 34305     35-40       6
## 34306     30-35       7
## 34307     30-35       7
## 34308     35-40       6
## 34309     35-40       6
## 34310     30-35       7
## 34311     18-30      10
## 34312     40-50       5
## 34313     18-30      10
## 34314     18-30      10
## 34315     18-30      10
## 34316     40-50       5
## 34317     18-30      10
## 34318     35-40       6
## 34319     18-30      10
## 34320     18-30      10
## 34321     30-35       7
## 34322     18-30      10
## 34323     30-35       7
## 34324     50-60       5
## 34325     18-30      10
## 34326     40-50       5
## 34327     18-30      10
## 34328     40-50       5
## 34329     30-35       7
## 34330     40-50       5
## 34331     40-50       5
## 34332     30-35       7
## 34333     18-30      10
## 34334     30-35       7
## 34335     40-50       5
## 34336     18-30      10
## 34337     40-50       5
## 34338     30-35       7
## 34339     18-30      10
## 34340     18-30      10
## 34341     50-60       5
## 34342     35-40       6
## 34343     18-30      10
## 34344     18-30      10
## 34345     35-40       6
## 34346     35-40       6
## 34347     18-30      10
## 34348     35-40       6
## 34349     18-30      10
## 34350     18-30      10
## 34351     40-50       5
## 34352     18-30      10
## 34353     30-35       7
## 34354     40-50       5
## 34355     18-30      10
## 34356     35-40       6
## 34357     18-30      10
## 34358     30-35       7
## 34359     30-35       7
## 34360     18-30      10
## 34361     30-35       7
## 34362     30-35       7
## 34363     18-30      10
## 34364     50-60       5
## 34365     18-30      10
## 34366     40-50       5
## 34367     18-30      10
## 34368     18-30      10
## 34369     18-30      10
## 34370     18-30      10
## 34371     50-60       5
## 34372     18-30      10
## 34373     18-30      10
## 34374     18-30      10
## 34375     30-35       7
## 34376     18-30      10
## 34377     18-30      10
## 34378     18-30      10
## 34379     30-35       7
## 34380     30-35       7
## 34381       65+       4
## 34382     18-30      10
## 34383     35-40       6
## 34384     18-30      10
## 34385     35-40       6
## 34386     18-30      10
## 34387     18-30      10
## 34388     18-30      10
## 34389     30-35       7
## 34390     18-30      10
## 34391     18-30      10
## 34392     18-30      10
## 34393     18-30      10
## 34394     18-30      10
## 34395     18-30      10
## 34396     18-30      10
## 34397     50-60       5
## 34398     50-60       5
## 34399     30-35       7
## 34400     35-40       6
## 34401     30-35       7
## 34402     18-30      10
## 34403     18-30      10
## 34404     18-30      10
## 34405     18-30      10
## 34406     30-35       7
## 34407     30-35       7
## 34408     18-30      10
## 34409     30-35       7
## 34410     18-30      10
## 34411     18-30      10
## 34412     18-30      10
## 34413     30-35       7
## 34414     18-30      10
## 34415     50-60       5
## 34416     18-30      10
## 34417     30-35       7
## 34418       65+       4
## 34419     30-35       7
## 34420     18-30      10
## 34421     40-50       5
## 34422     18-30      10
## 34423     30-35       7
## 34424     18-30      10
## 34425     18-30      10
## 34426     18-30      10
## 34427     18-30      10
## 34428     18-30      10
## 34429     18-30      10
## 34430     40-50       5
## 34431     18-30      10
## 34432     40-50       5
## 34433     35-40       6
## 34434     35-40       6
## 34435     18-30      10
## 34436     18-30      10
## 34437     18-30      10
## 34438     18-30      10
## 34439     50-60       5
## 34440     18-30      10
## 34441     30-35       7
## 34442     30-35       7
## 34443     18-30      10
## 34444     40-50       5
## 34445     18-30      10
## 34446     18-30      10
## 34447     18-30      10
## 34448     35-40       6
## 34449     18-30      10
## 34450     40-50       5
## 34451     40-50       5
## 34452     18-30      10
## 34453     18-30      10
## 34454     18-30      10
## 34455     30-35       7
## 34456     18-30      10
## 34457     50-60       5
## 34458     30-35       7
## 34459       65+       4
## 34460     18-30      10
## 34461     50-60       5
## 34462     30-35       7
## 34463     50-60       5
## 34464     18-30      10
## 34465     30-35       7
## 34466     30-35       7
## 34467     18-30      10
## 34468     18-30      10
## 34469     18-30      10
## 34470     40-50       5
## 34471     18-30      10
## 34472     30-35       7
## 34473     18-30      10
## 34474     18-30      10
## 34475     18-30      10
## 34476     18-30      10
## 34477     40-50       5
## 34478     18-30      10
## 34479     35-40       6
## 34480     18-30      10
## 34481     30-35       7
## 34482     18-30      10
## 34483     30-35       7
## 34484     30-35       7
## 34485     18-30      10
## 34486     30-35       7
## 34487     35-40       6
## 34488     18-30      10
## 34489     35-40       6
## 34490     40-50       5
## 34491     18-30      10
## 34492     18-30      10
## 34493     18-30      10
## 34494     18-30      10
## 34495     40-50       5
## 34496     18-30      10
## 34497     30-35       7
## 34498     18-30      10
## 34499     18-30      10
## 34500     35-40       6
## 34501     40-50       5
## 34502     40-50       5
## 34503     35-40       6
## 34504     40-50       5
## 34505     40-50       5
## 34506       65+       4
## 34507     18-30      10
## 34508     18-30      10
## 34509     18-30      10
## 34510     30-35       7
## 34511     18-30      10
## 34512     18-30      10
## 34513     30-35       7
## 34514     18-30      10
## 34515     18-30      10
## 34516     18-30      10
## 34517     18-30      10
## 34518     18-30      10
## 34519     18-30      10
## 34520     18-30      10
## 34521     30-35       7
## 34522     18-30      10
## 34523     18-30      10
## 34524     18-30      10
## 34525     18-30      10
## 34526     35-40       6
## 34527     35-40       6
## 34528     18-30      10
## 34529     18-30      10
## 34530     40-50       5
## 34531     40-50       5
## 34532     18-30      10
## 34533     35-40       6
## 34534     18-30      10
## 34535     35-40       6
## 34536     30-35       7
## 34537     18-30      10
## 34538     18-30      10
## 34539     35-40       6
## 34540     50-60       5
## 34541     35-40       6
## 34542     30-35       7
## 34543     35-40       6
## 34544     35-40       6
## 34545     18-30      10
## 34546     18-30      10
## 34547     18-30      10
## 34548     30-35       7
## 34549     18-30      10
## 34550     30-35       7
## 34551     30-35       7
## 34552     18-30      10
## 34553     40-50       5
## 34554     18-30      10
## 34555     50-60       5
## 34556     18-30      10
## 34557     18-30      10
## 34558     18-30      10
## 34559     18-30      10
## 34560     18-30      10
## 34561     18-30      10
## 34562     40-50       5
## 34563     18-30      10
## 34564     18-30      10
## 34565     35-40       6
## 34566     18-30      10
## 34567     30-35       7
## 34568     18-30      10
## 34569     18-30      10
## 34570     50-60       5
## 34571     30-35       7
## 34572     30-35       7
## 34573     18-30      10
## 34574     35-40       6
## 34575     18-30      10
## 34576     40-50       5
## 34577     40-50       5
## 34578     18-30      10
## 34579     18-30      10
## 34580     30-35       7
## 34581     18-30      10
## 34582     18-30      10
## 34583     40-50       5
## 34584     40-50       5
## 34585     50-60       5
## 34586     18-30      10
## 34587     18-30      10
## 34588     18-30      10
## 34589     35-40       6
## 34590     18-30      10
## 34591     35-40       6
## 34592     18-30      10
## 34593     18-30      10
## 34594     30-35       7
## 34595     18-30      10
## 34596     30-35       7
## 34597     30-35       7
## 34598     18-30      10
## 34599     40-50       5
## 34600     30-35       7
## 34601     18-30      10
## 34602     18-30      10
## 34603     30-35       7
## 34604     18-30      10
## 34605     40-50       5
## 34606     35-40       6
## 34607     18-30      10
## 34608     18-30      10
## 34609     30-35       7
## 34610     30-35       7
## 34611     18-30      10
## 34612     18-30      10
## 34613     40-50       5
## 34614     35-40       6
## 34615     30-35       7
## 34616     35-40       6
## 34617     18-30      10
## 34618     40-50       5
## 34619     35-40       6
## 34620     35-40       6
## 34621     18-30      10
## 34622     18-30      10
## 34623     40-50       5
## 34624     40-50       5
## 34625     18-30      10
## 34626     40-50       5
## 34627     35-40       6
## 34628     35-40       6
## 34629     35-40       6
## 34630     30-35       7
## 34631     30-35       7
## 34632     40-50       5
## 34633     35-40       6
## 34634     18-30      10
## 34635     30-35       7
## 34636     18-30      10
## 34637     35-40       6
## 34638     18-30      10
## 34639     18-30      10
## 34640     18-30      10
## 34641     18-30      10
## 34642     18-30      10
## 34643     40-50       5
## 34644     40-50       5
## 34645     30-35       7
## 34646     35-40       6
## 34647     35-40       6
## 34648     18-30      10
## 34649     18-30      10
## 34650     35-40       6
## 34651     18-30      10
## 34652     18-30      10
## 34653     18-30      10
## 34654     30-35       7
## 34655     35-40       6
## 34656     30-35       7
## 34657     50-60       5
## 34658     18-30      10
## 34659     18-30      10
## 34660     50-60       5
## 34661     30-35       7
## 34662     18-30      10
## 34663     35-40       6
## 34664     50-60       5
## 34665     18-30      10
## 34666     40-50       5
## 34667     35-40       6
## 34668     18-30      10
## 34669     30-35       7
## 34670     18-30      10
## 34671     30-35       7
## 34672     30-35       7
## 34673     18-30      10
## 34674     40-50       5
## 34675     18-30      10
## 34676     40-50       5
## 34677     18-30      10
## 34678     18-30      10
## 34679     18-30      10
## 34680     18-30      10
## 34681     18-30      10
## 34682     40-50       5
## 34683     18-30      10
## 34684     30-35       7
## 34685     35-40       6
## 34686     18-30      10
## 34687     40-50       5
## 34688     18-30      10
## 34689     18-30      10
## 34690     50-60       5
## 34691     18-30      10
## 34692     18-30      10
## 34693     30-35       7
## 34694     18-30      10
## 34695     40-50       5
## 34696     18-30      10
## 34697     40-50       5
## 34698     18-30      10
## 34699     18-30      10
## 34700     35-40       6
## 34701     18-30      10
## 34702     18-30      10
## 34703     35-40       6
## 34704     40-50       5
## 34705     18-30      10
## 34706     50-60       5
## 34707     18-30      10
## 34708     40-50       5
## 34709     40-50       5
## 34710     18-30      10
## 34711     18-30      10
## 34712     30-35       7
## 34713     18-30      10
## 34714     35-40       6
## 34715     30-35       7
## 34716     30-35       7
## 34717     18-30      10
## 34718     50-60       5
## 34719     18-30      10
## 34720     50-60       5
## 34721     18-30      10
## 34722     35-40       6
## 34723     18-30      10
## 34724     18-30      10
## 34725     30-35       7
## 34726     18-30      10
## 34727     18-30      10
## 34728     30-35       7
## 34729     18-30      10
## 34730     18-30      10
## 34731     18-30      10
## 34732     30-35       7
## 34733     40-50       5
## 34734     50-60       5
## 34735     30-35       7
## 34736     30-35       7
## 34737     18-30      10
## 34738     40-50       5
## 34739     18-30      10
## 34740     30-35       7
## 34741     18-30      10
## 34742     40-50       5
## 34743     18-30      10
## 34744     30-35       7
## 34745     30-35       7
## 34746     50-60       5
## 34747     30-35       7
## 34748     30-35       7
## 34749     35-40       6
## 34750     50-60       5
## 34751     50-60       5
## 34752     50-60       5
## 34753     40-50       5
## 34754     18-30      10
## 34755     18-30      10
## 34756     18-30      10
## 34757     18-30      10
## 34758     18-30      10
## 34759     30-35       7
## 34760     40-50       5
## 34761     18-30      10
## 34762     40-50       5
## 34763     18-30      10
## 34764     40-50       5
## 34765     40-50       5
## 34766     30-35       7
## 34767     30-35       7
## 34768     30-35       7
## 34769     30-35       7
## 34770     18-30      10
## 34771     18-30      10
## 34772     30-35       7
## 34773     30-35       7
## 34774     18-30      10
## 34775     30-35       7
## 34776     40-50       5
## 34777     18-30      10
## 34778     30-35       7
## 34779     18-30      10
## 34780     18-30      10
## 34781     18-30      10
## 34782     40-50       5
## 34783     18-30      10
## 34784     35-40       6
## 34785     35-40       6
## 34786     18-30      10
## 34787     18-30      10
## 34788     35-40       6
## 34789     50-60       5
## 34790     40-50       5
## 34791     18-30      10
## 34792     18-30      10
## 34793     40-50       5
## 34794     18-30      10
## 34795     30-35       7
## 34796     18-30      10
## 34797     35-40       6
## 34798     30-35       7
## 34799     18-30      10
## 34800     30-35       7
## 34801     35-40       6
## 34802     30-35       7
## 34803     18-30      10
## 34804     30-35       7
## 34805     18-30      10
## 34806     40-50       5
## 34807     40-50       5
## 34808     18-30      10
## 34809     50-60       5
## 34810     18-30      10
## 34811     18-30      10
## 34812     18-30      10
## 34813     30-35       7
## 34814     30-35       7
## 34815     18-30      10
## 34816     40-50       5
## 34817     18-30      10
## 34818     50-60       5
## 34819     35-40       6
## 34820     40-50       5
## 34821     18-30      10
## 34822     18-30      10
## 34823     18-30      10
## 34824     30-35       7
## 34825     18-30      10
## 34826     18-30      10
## 34827     30-35       7
## 34828     18-30      10
## 34829     40-50       5
## 34830     40-50       5
## 34831     18-30      10
## 34832     30-35       7
## 34833     40-50       5
## 34834     30-35       7
## 34835     40-50       5
## 34836     35-40       6
## 34837     40-50       5
## 34838     35-40       6
## 34839     40-50       5
## 34840     30-35       7
## 34841     18-30      10
## 34842     35-40       6
## 34843     50-60       5
## 34844     18-30      10
## 34845     18-30      10
## 34846     18-30      10
## 34847     18-30      10
## 34848     18-30      10
## 34849     18-30      10
## 34850       65+       4
## 34851     18-30      10
## 34852       65+       4
## 34853     30-35       7
## 34854     30-35       7
## 34855     18-30      10
## 34856     30-35       7
## 34857     30-35       7
## 34858     30-35       7
## 34859     18-30      10
## 34860     30-35       7
## 34861     18-30      10
## 34862     18-30      10
## 34863     50-60       5
## 34864     18-30      10
## 34865     18-30      10
## 34866     18-30      10
## 34867     18-30      10
## 34868     50-60       5
## 34869     18-30      10
## 34870     18-30      10
## 34871     18-30      10
## 34872     40-50       5
## 34873     50-60       5
## 34874     18-30      10
## 34875     18-30      10
## 34876     18-30      10
## 34877     30-35       7
## 34878     18-30      10
## 34879     30-35       7
## 34880     35-40       6
## 34881     40-50       5
## 34882       65+       4
## 34883     30-35       7
## 34884     40-50       5
## 34885     18-30      10
## 34886     35-40       6
## 34887     18-30      10
## 34888     30-35       7
## 34889     40-50       5
## 34890     40-50       5
## 34891     30-35       7
## 34892     35-40       6
## 34893     18-30      10
## 34894     18-30      10
## 34895     18-30      10
## 34896     18-30      10
## 34897     18-30      10
## 34898     18-30      10
## 34899     18-30      10
## 34900     18-30      10
## 34901     35-40       6
## 34902     18-30      10
## 34903     35-40       6
## 34904     50-60       5
## 34905     40-50       5
## 34906     40-50       5
## 34907     50-60       5
## 34908     18-30      10
## 34909     35-40       6
## 34910     18-30      10
## 34911     40-50       5
## 34912     18-30      10
## 34913     18-30      10
## 34914     18-30      10
## 34915     18-30      10
## 34916     30-35       7
## 34917     30-35       7
## 34918     40-50       5
## 34919     30-35       7
## 34920     30-35       7
## 34921     18-30      10
## 34922     50-60       5
## 34923     30-35       7
## 34924     35-40       6
## 34925     30-35       7
## 34926     35-40       6
## 34927     18-30      10
## 34928     30-35       7
## 34929     18-30      10
## 34930     30-35       7
## 34931     18-30      10
## 34932     18-30      10
## 34933     30-35       7
## 34934     40-50       5
## 34935     18-30      10
## 34936     18-30      10
## 34937     50-60       5
## 34938     40-50       5
## 34939     30-35       7
## 34940     30-35       7
## 34941     30-35       7
## 34942       65+       4
## 34943     18-30      10
## 34944       65+       4
## 34945     18-30      10
## 34946     18-30      10
## 34947     40-50       5
## 34948     35-40       6
## 34949     40-50       5
## 34950     18-30      10
## 34951     18-30      10
## 34952     30-35       7
## 34953     18-30      10
## 34954     18-30      10
## 34955     18-30      10
## 34956     18-30      10
## 34957     18-30      10
## 34958       65+       4
## 34959     18-30      10
## 34960     18-30      10
## 34961     40-50       5
## 34962     18-30      10
## 34963     30-35       7
## 34964     18-30      10
## 34965     18-30      10
## 34966     18-30      10
## 34967     35-40       6
## 34968     30-35       7
## 34969     18-30      10
## 34970     35-40       6
## 34971     40-50       5
## 34972     18-30      10
## 34973     18-30      10
## 34974     35-40       6
## 34975     18-30      10
## 34976     18-30      10
## 34977     30-35       7
## 34978     18-30      10
## 34979     30-35       7
## 34980     30-35       7
## 34981     30-35       7
## 34982     35-40       6
## 34983     18-30      10
## 34984     18-30      10
## 34985     18-30      10
## 34986     18-30      10
## 34987     18-30      10
## 34988     18-30      10
## 34989     30-35       7
## 34990     18-30      10
## 34991     40-50       5
## 34992     30-35       7
## 34993     18-30      10
## 34994     18-30      10
## 34995     18-30      10
## 34996     40-50       5
## 34997     18-30      10
## 34998     30-35       7
## 34999     18-30      10
## 35000     18-30      10
## 35001     30-35       7
## 35002     40-50       5
## 35003     18-30      10
## 35004     18-30      10
## 35005     18-30      10
## 35006     18-30      10
## 35007     35-40       6
## 35008     18-30      10
## 35009     18-30      10
## 35010     18-30      10
## 35011     18-30      10
## 35012     35-40       6
## 35013     30-35       7
## 35014     30-35       7
## 35015     18-30      10
## 35016     18-30      10
## 35017     18-30      10
## 35018     30-35       7
## 35019     30-35       7
## 35020     40-50       5
## 35021     30-35       7
## 35022     40-50       5
## 35023     18-30      10
## 35024     30-35       7
## 35025     18-30      10
## 35026     18-30      10
## 35027     18-30      10
## 35028     18-30      10
## 35029       65+       4
## 35030     30-35       7
## 35031     35-40       6
## 35032     18-30      10
## 35033     35-40       6
## 35034     30-35       7
## 35035     50-60       5
## 35036     30-35       7
## 35037     35-40       6
## 35038     40-50       5
## 35039     40-50       5
## 35040     30-35       7
## 35041     50-60       5
## 35042     40-50       5
## 35043     18-30      10
## 35044     18-30      10
## 35045     18-30      10
## 35046     18-30      10
## 35047     35-40       6
## 35048     18-30      10
## 35049     18-30      10
## 35050     18-30      10
## 35051     18-30      10
## 35052     18-30      10
## 35053     18-30      10
## 35054     50-60       5
## 35055     35-40       6
## 35056     35-40       6
## 35057     40-50       5
## 35058     50-60       5
## 35059     18-30      10
## 35060     50-60       5
## 35061     50-60       5
## 35062     40-50       5
## 35063     18-30      10
## 35064     35-40       6
## 35065     18-30      10
## 35066     18-30      10
## 35067     30-35       7
## 35068     18-30      10
## 35069     18-30      10
## 35070     18-30      10
## 35071     18-30      10
## 35072     30-35       7
## 35073     18-30      10
## 35074     18-30      10
## 35075     30-35       7
## 35076     30-35       7
## 35077     30-35       7
## 35078     18-30      10
## 35079     18-30      10
## 35080     18-30      10
## 35081     18-30      10
## 35082     40-50       5
## 35083     40-50       5
## 35084     30-35       7
## 35085     18-30      10
## 35086     35-40       6
## 35087     50-60       5
## 35088     35-40       6
## 35089     50-60       5
## 35090     50-60       5
## 35091     40-50       5
## 35092     18-30      10
## 35093     18-30      10
## 35094     18-30      10
## 35095     18-30      10
## 35096     18-30      10
## 35097     18-30      10
## 35098     18-30      10
## 35099     35-40       6
## 35100     18-30      10
## 35101     18-30      10
## 35102     18-30      10
## 35103     40-50       5
## 35104     50-60       5
## 35105     40-50       5
## 35106     40-50       5
## 35107     50-60       5
## 35108     18-30      10
## 35109     18-30      10
## 35110     18-30      10
## 35111     35-40       6
## 35112     18-30      10
## 35113     35-40       6
## 35114     30-35       7
## 35115     30-35       7
## 35116     30-35       7
## 35117     18-30      10
## 35118     35-40       6
## 35119     18-30      10
## 35120     30-35       7
## 35121     35-40       6
## 35122     18-30      10
## 35123     18-30      10
## 35124     50-60       5
## 35125     18-30      10
## 35126     30-35       7
## 35127     18-30      10
## 35128     35-40       6
## 35129     30-35       7
## 35130     40-50       5
## 35131     18-30      10
## 35132     40-50       5
## 35133     30-35       7
## 35134     18-30      10
## 35135     18-30      10
## 35136     40-50       5
## 35137     18-30      10
## 35138     18-30      10
## 35139     30-35       7
## 35140     18-30      10
## 35141     18-30      10
## 35142     18-30      10
## 35143     18-30      10
## 35144     40-50       5
## 35145     18-30      10
## 35146     18-30      10
## 35147     35-40       6
## 35148     18-30      10
## 35149     35-40       6
## 35150     18-30      10
## 35151     18-30      10
## 35152     18-30      10
## 35153     18-30      10
## 35154     18-30      10
## 35155     18-30      10
## 35156     18-30      10
## 35157     30-35       7
## 35158     18-30      10
## 35159     18-30      10
## 35160     40-50       5
## 35161     18-30      10
## 35162     18-30      10
## 35163       65+       4
## 35164     50-60       5
## 35165     30-35       7
## 35166     40-50       5
## 35167     18-30      10
## 35168     18-30      10
## 35169     18-30      10
## 35170     18-30      10
## 35171     18-30      10
## 35172     18-30      10
## 35173     35-40       6
## 35174     18-30      10
## 35175     18-30      10
## 35176     30-35       7
## 35177     40-50       5
## 35178     18-30      10
## 35179     18-30      10
## 35180     18-30      10
## 35181     18-30      10
## 35182     18-30      10
## 35183     18-30      10
## 35184     18-30      10
## 35185     30-35       7
## 35186     35-40       6
## 35187     18-30      10
## 35188     18-30      10
## 35189     30-35       7
## 35190     30-35       7
## 35191     30-35       7
## 35192     18-30      10
## 35193     40-50       5
## 35194       65+       4
## 35195     40-50       5
## 35196     30-35       7
## 35197     40-50       5
## 35198     30-35       7
## 35199     18-30      10
## 35200     18-30      10
## 35201     40-50       5
## 35202     30-35       7
## 35203     40-50       5
## 35204     40-50       5
## 35205     50-60       5
## 35206     35-40       6
## 35207     35-40       6
## 35208     18-30      10
## 35209     18-30      10
## 35210     30-35       7
## 35211     30-35       7
## 35212     40-50       5
## 35213     18-30      10
## 35214     30-35       7
## 35215     35-40       6
## 35216     40-50       5
## 35217     18-30      10
## 35218     35-40       6
## 35219     30-35       7
## 35220     18-30      10
## 35221     30-35       7
## 35222     18-30      10
## 35223     30-35       7
## 35224     50-60       5
## 35225     40-50       5
## 35226     35-40       6
## 35227     30-35       7
## 35228     40-50       5
## 35229     30-35       7
## 35230     18-30      10
## 35231     18-30      10
## 35232     18-30      10
## 35233     18-30      10
## 35234     30-35       7
## 35235     18-30      10
## 35236     35-40       6
## 35237     30-35       7
## 35238     18-30      10
## 35239     18-30      10
## 35240     18-30      10
## 35241     18-30      10
## 35242     30-35       7
## 35243     18-30      10
## 35244     30-35       7
## 35245     35-40       6
## 35246     50-60       5
## 35247     18-30      10
## 35248     40-50       5
## 35249     18-30      10
## 35250     40-50       5
## 35251     35-40       6
## 35252     18-30      10
## 35253     35-40       6
## 35254     18-30      10
## 35255     30-35       7
## 35256     18-30      10
## 35257     18-30      10
## 35258     40-50       5
## 35259     30-35       7
## 35260     18-30      10
## 35261     30-35       7
## 35262     30-35       7
## 35263     18-30      10
## 35264     18-30      10
## 35265     18-30      10
## 35266     18-30      10
## 35267     18-30      10
## 35268     18-30      10
## 35269     18-30      10
## 35270     35-40       6
## 35271     18-30      10
## 35272     18-30      10
## 35273     18-30      10
## 35274     18-30      10
## 35275     18-30      10
## 35276     40-50       5
## 35277     18-30      10
## 35278     18-30      10
## 35279     30-35       7
## 35280     18-30      10
## 35281     18-30      10
## 35282     18-30      10
## 35283     18-30      10
## 35284     30-35       7
## 35285     18-30      10
## 35286     50-60       5
## 35287     18-30      10
## 35288     40-50       5
## 35289     18-30      10
## 35290     18-30      10
## 35291     50-60       5
## 35292     18-30      10
## 35293     18-30      10
## 35294     18-30      10
## 35295     18-30      10
## 35296     18-30      10
## 35297     18-30      10
## 35298     40-50       5
## 35299     50-60       5
## 35300     18-30      10
## 35301     40-50       5
## 35302     18-30      10
## 35303     40-50       5
## 35304     30-35       7
## 35305     50-60       5
## 35306     30-35       7
## 35307     35-40       6
## 35308     50-60       5
## 35309     40-50       5
## 35310       65+       4
## 35311     18-30      10
## 35312     40-50       5
## 35313     30-35       7
## 35314     18-30      10
## 35315     18-30      10
## 35316     40-50       5
## 35317     35-40       6
## 35318     18-30      10
## 35319     35-40       6
## 35320     18-30      10
## 35321     30-35       7
## 35322     30-35       7
## 35323     30-35       7
## 35324     18-30      10
## 35325     18-30      10
## 35326     18-30      10
## 35327     35-40       6
## 35328     18-30      10
## 35329     18-30      10
## 35330     18-30      10
## 35331     18-30      10
## 35332     18-30      10
## 35333     18-30      10
## 35334     35-40       6
## 35335     40-50       5
## 35336     40-50       5
## 35337     18-30      10
## 35338     18-30      10
## 35339     30-35       7
## 35340     18-30      10
## 35341     30-35       7
## 35342     40-50       5
## 35343     18-30      10
## 35344     18-30      10
## 35345     18-30      10
## 35346     18-30      10
## 35347     18-30      10
## 35348     18-30      10
## 35349     30-35       7
## 35350     30-35       7
## 35351     18-30      10
## 35352     18-30      10
## 35353     30-35       7
## 35354     18-30      10
## 35355     18-30      10
## 35356     30-35       7
## 35357     18-30      10
## 35358     18-30      10
## 35359     30-35       7
## 35360     18-30      10
## 35361     40-50       5
## 35362     18-30      10
## 35363     18-30      10
## 35364     18-30      10
## 35365     18-30      10
## 35366     18-30      10
## 35367     18-30      10
## 35368     35-40       6
## 35369     18-30      10
## 35370     18-30      10
## 35371     18-30      10
## 35372     40-50       5
## 35373     18-30      10
## 35374     35-40       6
## 35375     18-30      10
## 35376     18-30      10
## 35377     18-30      10
## 35378     18-30      10
## 35379     18-30      10
## 35380     40-50       5
## 35381     30-35       7
## 35382     18-30      10
## 35383     18-30      10
## 35384     30-35       7
## 35385     30-35       7
## 35386     35-40       6
## 35387     18-30      10
## 35388     18-30      10
## 35389     18-30      10
## 35390     18-30      10
## 35391     35-40       6
## 35392     18-30      10
## 35393     18-30      10
## 35394     30-35       7
## 35395     18-30      10
## 35396     40-50       5
## 35397     18-30      10
## 35398     18-30      10
## 35399     30-35       7
## 35400     40-50       5
## 35401     18-30      10
## 35402     30-35       7
## 35403     18-30      10
## 35404     18-30      10
## 35405     18-30      10
## 35406     30-35       7
## 35407     18-30      10
## 35408     18-30      10
## 35409     40-50       5
## 35410     18-30      10
## 35411     18-30      10
## 35412     18-30      10
## 35413     18-30      10
## 35414     30-35       7
## 35415     30-35       7
## 35416     40-50       5
## 35417     18-30      10
## 35418     18-30      10
## 35419     18-30      10
## 35420     40-50       5
## 35421     35-40       6
## 35422     40-50       5
## 35423     30-35       7
## 35424     35-40       6
## 35425     35-40       6
## 35426     35-40       6
## 35427     40-50       5
## 35428     30-35       7
## 35429     35-40       6
## 35430     18-30      10
## 35431     35-40       6
## 35432     18-30      10
## 35433     18-30      10
## 35434     18-30      10
## 35435     30-35       7
## 35436     18-30      10
## 35437     40-50       5
## 35438     35-40       6
## 35439     18-30      10
## 35440     18-30      10
## 35441     18-30      10
## 35442     40-50       5
## 35443     30-35       7
## 35444     30-35       7
## 35445     18-30      10
## 35446     18-30      10
## 35447     18-30      10
## 35448     30-35       7
## 35449     18-30      10
## 35450     40-50       5
## 35451     18-30      10
## 35452     18-30      10
## 35453     30-35       7
## 35454     30-35       7
## 35455     30-35       7
## 35456     35-40       6
## 35457     30-35       7
## 35458     40-50       5
## 35459     18-30      10
## 35460     18-30      10
## 35461     18-30      10
## 35462     30-35       7
## 35463     30-35       7
## 35464     18-30      10
## 35465     30-35       7
## 35466     35-40       6
## 35467     30-35       7
## 35468     18-30      10
## 35469     30-35       7
## 35470     18-30      10
## 35471     18-30      10
## 35472     30-35       7
## 35473     40-50       5
## 35474     35-40       6
## 35475     30-35       7
## 35476     18-30      10
## 35477     30-35       7
## 35478     18-30      10
## 35479     18-30      10
## 35480     18-30      10
## 35481     40-50       5
## 35482     18-30      10
## 35483     30-35       7
## 35484     35-40       6
## 35485     18-30      10
## 35486     35-40       6
## 35487       65+       4
## 35488     35-40       6
## 35489     18-30      10
## 35490     18-30      10
## 35491     35-40       6
## 35492     30-35       7
## 35493     35-40       6
## 35494     40-50       5
## 35495     18-30      10
## 35496     35-40       6
## 35497     40-50       5
## 35498     18-30      10
## 35499     30-35       7
## 35500     40-50       5
## 35501     40-50       5
## 35502     30-35       7
## 35503     18-30      10
## 35504     18-30      10
## 35505     18-30      10
## 35506     30-35       7
## 35507     18-30      10
## 35508     18-30      10
## 35509     18-30      10
## 35510     18-30      10
## 35511     30-35       7
## 35512     40-50       5
## 35513     18-30      10
## 35514     35-40       6
## 35515     40-50       5
## 35516     40-50       5
## 35517     30-35       7
## 35518     30-35       7
## 35519     30-35       7
## 35520     30-35       7
## 35521       65+       4
## 35522     18-30      10
## 35523     30-35       7
## 35524     35-40       6
## 35525     18-30      10
## 35526     18-30      10
## 35527     18-30      10
## 35528     40-50       5
## 35529     40-50       5
## 35530     30-35       7
## 35531     30-35       7
## 35532     18-30      10
## 35533     50-60       5
## 35534     18-30      10
## 35535     40-50       5
## 35536     18-30      10
## 35537     50-60       5
## 35538     35-40       6
## 35539     50-60       5
## 35540     30-35       7
## 35541     18-30      10
## 35542     30-35       7
## 35543     30-35       7
## 35544     40-50       5
## 35545     18-30      10
## 35546     40-50       5
## 35547     30-35       7
## 35548     30-35       7
## 35549     30-35       7
## 35550     18-30      10
## 35551     18-30      10
## 35552     40-50       5
## 35553     18-30      10
## 35554     18-30      10
## 35555     30-35       7
## 35556     50-60       5
## 35557     18-30      10
## 35558     18-30      10
## 35559     18-30      10
## 35560     18-30      10
## 35561     40-50       5
## 35562     50-60       5
## 35563     18-30      10
## 35564     18-30      10
## 35565     18-30      10
## 35566     18-30      10
## 35567     35-40       6
## 35568     30-35       7
## 35569     40-50       5
## 35570     18-30      10
## 35571     18-30      10
## 35572     18-30      10
## 35573     50-60       5
## 35574     18-30      10
## 35575     18-30      10
## 35576     35-40       6
## 35577     35-40       6
## 35578     18-30      10
## 35579     18-30      10
## 35580     30-35       7
## 35581     40-50       5
## 35582     40-50       5
## 35583     18-30      10
## 35584     18-30      10
## 35585     18-30      10
## 35586     30-35       7
## 35587     18-30      10
## 35588     18-30      10
## 35589     18-30      10
## 35590     30-35       7
## 35591     30-35       7
## 35592     18-30      10
## 35593     40-50       5
## 35594     18-30      10
## 35595     18-30      10
## 35596     40-50       5
## 35597     18-30      10
## 35598     18-30      10
## 35599     18-30      10
## 35600     18-30      10
## 35601     18-30      10
## 35602     18-30      10
## 35603     40-50       5
## 35604     50-60       5
## 35605     18-30      10
## 35606     40-50       5
## 35607     30-35       7
## 35608     18-30      10
## 35609     18-30      10
## 35610     30-35       7
## 35611     18-30      10
## 35612     30-35       7
## 35613     18-30      10
## 35614     50-60       5
## 35615     40-50       5
## 35616     18-30      10
## 35617     18-30      10
## 35618     18-30      10
## 35619     18-30      10
## 35620     40-50       5
## 35621     35-40       6
## 35622     18-30      10
## 35623     35-40       6
## 35624     30-35       7
## 35625     18-30      10
## 35626     18-30      10
## 35627     35-40       6
## 35628     35-40       6
## 35629     18-30      10
## 35630     18-30      10
## 35631     18-30      10
## 35632     18-30      10
## 35633     18-30      10
## 35634     30-35       7
## 35635     18-30      10
## 35636     18-30      10
## 35637     30-35       7
## 35638     40-50       5
## 35639     30-35       7
## 35640     30-35       7
## 35641     18-30      10
## 35642     18-30      10
## 35643     35-40       6
## 35644     18-30      10
## 35645     35-40       6
## 35646     30-35       7
## 35647     18-30      10
## 35648     30-35       7
## 35649     30-35       7
## 35650     30-35       7
## 35651     18-30      10
## 35652     18-30      10
## 35653     18-30      10
## 35654     18-30      10
## 35655     50-60       5
## 35656     40-50       5
## 35657     35-40       6
## 35658     30-35       7
## 35659     30-35       7
## 35660     18-30      10
## 35661     18-30      10
## 35662     18-30      10
## 35663     18-30      10
## 35664     30-35       7
## 35665     50-60       5
## 35666     40-50       5
## 35667     18-30      10
## 35668     18-30      10
## 35669     40-50       5
## 35670     50-60       5
## 35671     18-30      10
## 35672     18-30      10
## 35673     18-30      10
## 35674     18-30      10
## 35675     35-40       6
## 35676     40-50       5
## 35677     18-30      10
## 35678     18-30      10
## 35679     30-35       7
## 35680     30-35       7
## 35681     40-50       5
## 35682     18-30      10
## 35683     35-40       6
## 35684     18-30      10
## 35685     50-60       5
## 35686     18-30      10
## 35687     30-35       7
## 35688     35-40       6
## 35689     50-60       5
## 35690     35-40       6
## 35691     18-30      10
## 35692     18-30      10
## 35693     18-30      10
## 35694     30-35       7
## 35695     30-35       7
## 35696     30-35       7
## 35697     18-30      10
## 35698     18-30      10
## 35699     18-30      10
## 35700     30-35       7
## 35701     40-50       5
## 35702     18-30      10
## 35703     35-40       6
## 35704       65+       4
## 35705     18-30      10
## 35706     18-30      10
## 35707     18-30      10
## 35708     18-30      10
## 35709     18-30      10
## 35710     35-40       6
## 35711     18-30      10
## 35712     40-50       5
## 35713     18-30      10
## 35714     18-30      10
## 35715     18-30      10
## 35716     30-35       7
## 35717     35-40       6
## 35718     18-30      10
## 35719     30-35       7
## 35720     40-50       5
## 35721     30-35       7
## 35722     18-30      10
## 35723     18-30      10
## 35724     18-30      10
## 35725     18-30      10
## 35726     30-35       7
## 35727     30-35       7
## 35728     18-30      10
## 35729     18-30      10
## 35730     30-35       7
## 35731     30-35       7
## 35732     18-30      10
## 35733     18-30      10
## 35734     18-30      10
## 35735       65+       4
## 35736     18-30      10
## 35737     50-60       5
## 35738     35-40       6
## 35739     18-30      10
## 35740     30-35       7
## 35741     18-30      10
## 35742     35-40       6
## 35743     18-30      10
## 35744     18-30      10
## 35745     18-30      10
## 35746     30-35       7
## 35747     18-30      10
## 35748     18-30      10
## 35749     30-35       7
## 35750     18-30      10
## 35751     18-30      10
## 35752       65+       4
## 35753     18-30      10
## 35754     18-30      10
## 35755     18-30      10
## 35756     50-60       5
## 35757     35-40       6
## 35758     18-30      10
## 35759     35-40       6
## 35760     35-40       6
## 35761     18-30      10
## 35762     18-30      10
## 35763     18-30      10
## 35764     18-30      10
## 35765     30-35       7
## 35766     18-30      10
## 35767     18-30      10
## 35768     18-30      10
## 35769     50-60       5
## 35770     35-40       6
## 35771     18-30      10
## 35772     18-30      10
## 35773     40-50       5
## 35774     30-35       7
## 35775     18-30      10
## 35776     18-30      10
## 35777     18-30      10
## 35778     40-50       5
## 35779     30-35       7
## 35780     18-30      10
## 35781       65+       4
## 35782     18-30      10
## 35783     30-35       7
## 35784     35-40       6
## 35785     35-40       6
## 35786     18-30      10
## 35787     18-30      10
## 35788     18-30      10
## 35789     30-35       7
## 35790     18-30      10
## 35791     18-30      10
## 35792     18-30      10
## 35793     35-40       6
## 35794     18-30      10
## 35795     18-30      10
## 35796     35-40       6
## 35797     18-30      10
## 35798     30-35       7
## 35799     18-30      10
## 35800     30-35       7
## 35801     18-30      10
## 35802     35-40       6
## 35803     18-30      10
## 35804     18-30      10
## 35805     18-30      10
## 35806     18-30      10
## 35807     18-30      10
## 35808     18-30      10
## 35809     18-30      10
## 35810     18-30      10
## 35811     18-30      10
## 35812     30-35       7
## 35813     35-40       6
## 35814     18-30      10
## 35815     40-50       5
## 35816     18-30      10
## 35817     18-30      10
## 35818     18-30      10
## 35819     18-30      10
## 35820     18-30      10
## 35821     40-50       5
## 35822     30-35       7
## 35823     18-30      10
## 35824     18-30      10
## 35825       65+       4
## 35826     18-30      10
## 35827     30-35       7
## 35828     30-35       7
## 35829     35-40       6
## 35830     18-30      10
## 35831     30-35       7
## 35832     40-50       5
## 35833     30-35       7
## 35834     18-30      10
## 35835     30-35       7
## 35836     18-30      10
## 35837     18-30      10
## 35838     30-35       7
## 35839     18-30      10
## 35840     18-30      10
## 35841     50-60       5
## 35842     30-35       7
## 35843     50-60       5
## 35844     35-40       6
## 35845     40-50       5
## 35846     50-60       5
## 35847     18-30      10
## 35848     40-50       5
## 35849     35-40       6
## 35850     18-30      10
## 35851     18-30      10
## 35852     18-30      10
## 35853     35-40       6
## 35854     18-30      10
## 35855     40-50       5
## 35856     40-50       5
## 35857     18-30      10
## 35858     18-30      10
## 35859     30-35       7
## 35860     18-30      10
## 35861     18-30      10
## 35862     30-35       7
## 35863     35-40       6
## 35864     50-60       5
## 35865     30-35       7
## 35866     18-30      10
## 35867     30-35       7
## 35868     30-35       7
## 35869     18-30      10
## 35870     18-30      10
## 35871     30-35       7
## 35872     30-35       7
## 35873     35-40       6
## 35874     18-30      10
## 35875     18-30      10
## 35876     18-30      10
## 35877     18-30      10
## 35878     30-35       7
## 35879     30-35       7
## 35880     35-40       6
## 35881     30-35       7
## 35882       65+       4
## 35883     40-50       5
## 35884     40-50       5
## 35885     40-50       5
## 35886     18-30      10
## 35887     18-30      10
## 35888     18-30      10
## 35889     40-50       5
## 35890     18-30      10
## 35891     18-30      10
## 35892     40-50       5
## 35893     30-35       7
## 35894     40-50       5
## 35895     18-30      10
## 35896     18-30      10
## 35897     30-35       7
## 35898     18-30      10
## 35899     30-35       7
## 35900     30-35       7
## 35901     35-40       6
## 35902     18-30      10
## 35903     18-30      10
## 35904     35-40       6
## 35905     18-30      10
## 35906       65+       4
## 35907     18-30      10
## 35908     18-30      10
## 35909     35-40       6
## 35910     18-30      10
## 35911     40-50       5
## 35912     18-30      10
## 35913     40-50       5
## 35914     40-50       5
## 35915     18-30      10
## 35916     30-35       7
## 35917     40-50       5
## 35918     40-50       5
## 35919     18-30      10
## 35920     18-30      10
## 35921     35-40       6
## 35922     30-35       7
## 35923     18-30      10
## 35924     30-35       7
## 35925     18-30      10
## 35926     30-35       7
## 35927     18-30      10
## 35928     18-30      10
## 35929     18-30      10
## 35930     30-35       7
## 35931     18-30      10
## 35932     18-30      10
## 35933     18-30      10
## 35934     30-35       7
## 35935     30-35       7
## 35936     18-30      10
## 35937     30-35       7
## 35938     18-30      10
## 35939     30-35       7
## 35940     18-30      10
## 35941     35-40       6
## 35942     35-40       6
## 35943     18-30      10
## 35944     18-30      10
## 35945     18-30      10
## 35946     35-40       6
## 35947     30-35       7
## 35948     18-30      10
## 35949     30-35       7
## 35950     18-30      10
## 35951     30-35       7
## 35952     18-30      10
## 35953     35-40       6
## 35954     18-30      10
## 35955     50-60       5
## 35956     18-30      10
## 35957     18-30      10
## 35958     35-40       6
## 35959     30-35       7
## 35960     35-40       6
## 35961     30-35       7
## 35962     30-35       7
## 35963     18-30      10
## 35964     30-35       7
## 35965     18-30      10
## 35966     18-30      10
## 35967     18-30      10
## 35968     18-30      10
## 35969     18-30      10
## 35970     30-35       7
## 35971     18-30      10
## 35972     18-30      10
## 35973     18-30      10
## 35974     18-30      10
## 35975     18-30      10
## 35976     18-30      10
## 35977     18-30      10
## 35978     40-50       5
## 35979     30-35       7
## 35980     18-30      10
## 35981     18-30      10
## 35982     35-40       6
## 35983     18-30      10
## 35984     18-30      10
## 35985     40-50       5
## 35986     18-30      10
## 35987     18-30      10
## 35988     18-30      10
## 35989     18-30      10
## 35990     18-30      10
## 35991     18-30      10
## 35992     18-30      10
## 35993     18-30      10
## 35994     18-30      10
## 35995     35-40       6
## 35996     35-40       6
## 35997     18-30      10
## 35998     18-30      10
## 35999     30-35       7
## 36000     35-40       6
## 36001     30-35       7
## 36002     18-30      10
## 36003     18-30      10
## 36004     30-35       7
## 36005     18-30      10
## 36006     18-30      10
## 36007     18-30      10
## 36008     18-30      10
## 36009     18-30      10
## 36010     18-30      10
## 36011     18-30      10
## 36012     30-35       7
## 36013     18-30      10
## 36014     35-40       6
## 36015     40-50       5
## 36016     40-50       5
## 36017     18-30      10
## 36018     50-60       5
## 36019     18-30      10
## 36020     18-30      10
## 36021     50-60       5
## 36022     18-30      10
## 36023     40-50       5
## 36024     18-30      10
## 36025     30-35       7
## 36026     18-30      10
## 36027     18-30      10
## 36028     18-30      10
## 36029     50-60       5
## 36030     18-30      10
## 36031     35-40       6
## 36032     18-30      10
## 36033     35-40       6
## 36034     30-35       7
## 36035     18-30      10
## 36036     30-35       7
## 36037     30-35       7
## 36038     18-30      10
## 36039     18-30      10
## 36040     35-40       6
## 36041     18-30      10
## 36042     18-30      10
## 36043     18-30      10
## 36044     35-40       6
## 36045     18-30      10
## 36046     30-35       7
## 36047     18-30      10
## 36048     50-60       5
## 36049     30-35       7
## 36050     18-30      10
## 36051     18-30      10
## 36052     18-30      10
## 36053     18-30      10
## 36054     35-40       6
## 36055     18-30      10
## 36056     18-30      10
## 36057     18-30      10
## 36058     18-30      10
## 36059     30-35       7
## 36060     18-30      10
## 36061     18-30      10
## 36062     18-30      10
## 36063     40-50       5
## 36064     50-60       5
## 36065       65+       4
## 36066     50-60       5
## 36067     50-60       5
## 36068     35-40       6
## 36069     50-60       5
## 36070     40-50       5
## 36071     18-30      10
## 36072     18-30      10
## 36073     18-30      10
## 36074     18-30      10
## 36075     30-35       7
## 36076     18-30      10
## 36077     18-30      10
## 36078     18-30      10
## 36079     40-50       5
## 36080     30-35       7
## 36081     18-30      10
## 36082     35-40       6
## 36083     40-50       5
## 36084     18-30      10
## 36085     40-50       5
## 36086     35-40       6
## 36087     18-30      10
## 36088     30-35       7
## 36089     40-50       5
## 36090     18-30      10
## 36091     30-35       7
## 36092     30-35       7
## 36093     40-50       5
## 36094     18-30      10
## 36095     35-40       6
## 36096     50-60       5
## 36097     30-35       7
## 36098     40-50       5
## 36099     50-60       5
## 36100     40-50       5
## 36101     40-50       5
## 36102     30-35       7
## 36103     18-30      10
## 36104     40-50       5
## 36105     40-50       5
## 36106     35-40       6
## 36107     18-30      10
## 36108     30-35       7
## 36109     35-40       6
## 36110     40-50       5
## 36111     18-30      10
## 36112     18-30      10
## 36113     30-35       7
## 36114     18-30      10
## 36115     30-35       7
## 36116     18-30      10
## 36117     18-30      10
## 36118     18-30      10
## 36119     30-35       7
## 36120     18-30      10
## 36121     18-30      10
## 36122     18-30      10
## 36123     18-30      10
## 36124     18-30      10
## 36125     35-40       6
## 36126     18-30      10
## 36127     30-35       7
## 36128     18-30      10
## 36129     18-30      10
## 36130     18-30      10
## 36131     18-30      10
## 36132     18-30      10
## 36133     40-50       5
## 36134     18-30      10
## 36135     18-30      10
## 36136       65+       4
## 36137     40-50       5
## 36138     18-30      10
## 36139     18-30      10
## 36140     18-30      10
## 36141     18-30      10
## 36142     18-30      10
## 36143     18-30      10
## 36144     30-35       7
## 36145     18-30      10
## 36146     35-40       6
## 36147     18-30      10
## 36148     30-35       7
## 36149     18-30      10
## 36150     18-30      10
## 36151     40-50       5
## 36152     18-30      10
## 36153     18-30      10
## 36154     30-35       7
## 36155     18-30      10
## 36156     35-40       6
## 36157     18-30      10
## 36158     18-30      10
## 36159     30-35       7
## 36160     18-30      10
## 36161     18-30      10
## 36162     18-30      10
## 36163     40-50       5
## 36164     30-35       7
## 36165     35-40       6
## 36166     30-35       7
## 36167     18-30      10
## 36168     40-50       5
## 36169     18-30      10
## 36170     35-40       6
## 36171     18-30      10
## 36172     35-40       6
## 36173     30-35       7
## 36174     40-50       5
## 36175     35-40       6
## 36176     18-30      10
## 36177     40-50       5
## 36178     35-40       6
## 36179     40-50       5
## 36180     18-30      10
## 36181     50-60       5
## 36182     18-30      10
## 36183     35-40       6
## 36184     30-35       7
## 36185     18-30      10
## 36186     40-50       5
## 36187     18-30      10
## 36188     18-30      10
## 36189     18-30      10
## 36190     35-40       6
## 36191     35-40       6
## 36192     35-40       6
## 36193     30-35       7
## 36194     30-35       7
## 36195     18-30      10
## 36196     18-30      10
## 36197     35-40       6
## 36198     30-35       7
## 36199     35-40       6
## 36200     18-30      10
## 36201     18-30      10
## 36202     30-35       7
## 36203     18-30      10
## 36204     50-60       5
## 36205     50-60       5
## 36206     40-50       5
## 36207     35-40       6
## 36208     35-40       6
## 36209     30-35       7
## 36210     30-35       7
## 36211     35-40       6
## 36212     30-35       7
## 36213     18-30      10
## 36214     18-30      10
## 36215     18-30      10
## 36216     40-50       5
## 36217     18-30      10
## 36218     18-30      10
## 36219     18-30      10
## 36220     18-30      10
## 36221     35-40       6
## 36222     35-40       6
## 36223     40-50       5
## 36224     18-30      10
## 36225     30-35       7
## 36226     18-30      10
## 36227     18-30      10
## 36228     18-30      10
## 36229     50-60       5
## 36230     40-50       5
## 36231     18-30      10
## 36232     18-30      10
## 36233     18-30      10
## 36234     18-30      10
## 36235     18-30      10
## 36236     18-30      10
## 36237     18-30      10
## 36238     50-60       5
## 36239     18-30      10
## 36240     18-30      10
## 36241     18-30      10
## 36242     50-60       5
## 36243     30-35       7
## 36244     18-30      10
## 36245     35-40       6
## 36246     30-35       7
## 36247     50-60       5
## 36248     40-50       5
## 36249     18-30      10
## 36250     18-30      10
## 36251     30-35       7
## 36252     18-30      10
## 36253     35-40       6
## 36254     18-30      10
## 36255     18-30      10
## 36256     35-40       6
## 36257     30-35       7
## 36258     30-35       7
## 36259     18-30      10
## 36260     30-35       7
## 36261     18-30      10
## 36262     18-30      10
## 36263     18-30      10
## 36264     40-50       5
## 36265     18-30      10
## 36266     35-40       6
## 36267     18-30      10
## 36268     18-30      10
## 36269     18-30      10
## 36270     30-35       7
## 36271     18-30      10
## 36272     18-30      10
## 36273     30-35       7
## 36274     18-30      10
## 36275     35-40       6
## 36276     30-35       7
## 36277     40-50       5
## 36278     18-30      10
## 36279     18-30      10
## 36280     18-30      10
## 36281       65+       4
## 36282     30-35       7
## 36283     18-30      10
## 36284     30-35       7
## 36285     18-30      10
## 36286     18-30      10
## 36287     35-40       6
## 36288     18-30      10
## 36289     30-35       7
## 36290       65+       4
## 36291     18-30      10
## 36292     18-30      10
## 36293     40-50       5
## 36294     35-40       6
## 36295     18-30      10
## 36296     30-35       7
## 36297     30-35       7
## 36298     18-30      10
## 36299     50-60       5
## 36300     18-30      10
## 36301     18-30      10
## 36302     18-30      10
## 36303     18-30      10
## 36304     30-35       7
## 36305     30-35       7
## 36306     18-30      10
## 36307     18-30      10
## 36308     40-50       5
## 36309     18-30      10
## 36310     40-50       5
## 36311     18-30      10
## 36312     30-35       7
## 36313     30-35       7
## 36314     18-30      10
## 36315     30-35       7
## 36316     18-30      10
## 36317     30-35       7
## 36318     40-50       5
## 36319     30-35       7
## 36320     18-30      10
## 36321     30-35       7
## 36322     35-40       6
## 36323     18-30      10
## 36324     35-40       6
## 36325     50-60       5
## 36326     18-30      10
## 36327     18-30      10
## 36328     40-50       5
## 36329     18-30      10
## 36330     30-35       7
## 36331     35-40       6
## 36332     18-30      10
## 36333     40-50       5
## 36334     18-30      10
## 36335     18-30      10
## 36336     18-30      10
## 36337     18-30      10
## 36338     30-35       7
## 36339     30-35       7
## 36340     18-30      10
## 36341     18-30      10
## 36342     18-30      10
## 36343     18-30      10
## 36344     18-30      10
## 36345     18-30      10
## 36346     18-30      10
## 36347     40-50       5
## 36348     30-35       7
## 36349     18-30      10
## 36350     18-30      10
## 36351     40-50       5
## 36352     18-30      10
## 36353     18-30      10
## 36354     30-35       7
## 36355     30-35       7
## 36356     30-35       7
## 36357     40-50       5
## 36358     18-30      10
## 36359     30-35       7
## 36360     30-35       7
## 36361     18-30      10
## 36362     18-30      10
## 36363     18-30      10
## 36364     35-40       6
## 36365     30-35       7
## 36366     30-35       7
## 36367     18-30      10
## 36368     40-50       5
## 36369     30-35       7
## 36370     18-30      10
## 36371     18-30      10
## 36372     40-50       5
## 36373     30-35       7
## 36374     18-30      10
## 36375     18-30      10
## 36376     18-30      10
## 36377     40-50       5
## 36378     18-30      10
## 36379     18-30      10
## 36380     18-30      10
## 36381     35-40       6
## 36382     18-30      10
## 36383     18-30      10
## 36384     35-40       6
## 36385     35-40       6
## 36386     18-30      10
## 36387     35-40       6
## 36388     30-35       7
## 36389     30-35       7
## 36390     18-30      10
## 36391     18-30      10
## 36392     18-30      10
## 36393     18-30      10
## 36394     18-30      10
## 36395     18-30      10
## 36396     18-30      10
## 36397     18-30      10
## 36398     18-30      10
## 36399     18-30      10
## 36400     30-35       7
## 36401     18-30      10
## 36402     18-30      10
## 36403     18-30      10
## 36404     18-30      10
## 36405     18-30      10
## 36406     18-30      10
## 36407     30-35       7
## 36408     18-30      10
## 36409     30-35       7
## 36410     50-60       5
## 36411     30-35       7
## 36412     18-30      10
## 36413     18-30      10
## 36414     40-50       5
## 36415     18-30      10
## 36416     18-30      10
## 36417     18-30      10
## 36418     30-35       7
## 36419     35-40       6
## 36420     40-50       5
## 36421     18-30      10
## 36422     18-30      10
## 36423     30-35       7
## 36424     18-30      10
## 36425     18-30      10
## 36426     40-50       5
## 36427     18-30      10
## 36428       65+       4
## 36429     30-35       7
## 36430     18-30      10
## 36431     18-30      10
## 36432     40-50       5
## 36433     30-35       7
## 36434     18-30      10
## 36435     18-30      10
## 36436     35-40       6
## 36437     18-30      10
## 36438     35-40       6
## 36439     18-30      10
## 36440     18-30      10
## 36441     18-30      10
## 36442     18-30      10
## 36443     18-30      10
## 36444     18-30      10
## 36445     18-30      10
## 36446     30-35       7
## 36447     18-30      10
## 36448     18-30      10
## 36449     18-30      10
## 36450     18-30      10
## 36451     40-50       5
## 36452     18-30      10
## 36453     18-30      10
## 36454     30-35       7
## 36455     30-35       7
## 36456     30-35       7
## 36457     18-30      10
## 36458     18-30      10
## 36459     18-30      10
## 36460     18-30      10
## 36461     30-35       7
## 36462     18-30      10
## 36463     18-30      10
## 36464     18-30      10
## 36465     18-30      10
## 36466     30-35       7
## 36467     18-30      10
## 36468     40-50       5
## 36469     40-50       5
## 36470     18-30      10
## 36471     18-30      10
## 36472     18-30      10
## 36473     18-30      10
## 36474     30-35       7
## 36475     18-30      10
## 36476     18-30      10
## 36477       65+       4
## 36478     30-35       7
## 36479     18-30      10
## 36480     35-40       6
## 36481     18-30      10
## 36482     18-30      10
## 36483     18-30      10
## 36484     30-35       7
## 36485     18-30      10
## 36486     18-30      10
## 36487     30-35       7
## 36488     18-30      10
## 36489     18-30      10
## 36490     18-30      10
## 36491     30-35       7
## 36492     18-30      10
## 36493     18-30      10
## 36494     18-30      10
## 36495     30-35       7
## 36496     18-30      10
## 36497     18-30      10
## 36498     35-40       6
## 36499     18-30      10
## 36500     35-40       6
## 36501     18-30      10
## 36502     40-50       5
## 36503     30-35       7
## 36504     35-40       6
## 36505     18-30      10
## 36506     18-30      10
## 36507     18-30      10
## 36508     30-35       7
## 36509     18-30      10
## 36510     30-35       7
## 36511     18-30      10
## 36512     18-30      10
## 36513     18-30      10
## 36514     30-35       7
## 36515     18-30      10
## 36516     18-30      10
## 36517     30-35       7
## 36518     18-30      10
## 36519     18-30      10
## 36520     18-30      10
## 36521     18-30      10
## 36522     18-30      10
## 36523     18-30      10
## 36524     18-30      10
## 36525     18-30      10
## 36526     30-35       7
## 36527     30-35       7
## 36528     30-35       7
## 36529     18-30      10
## 36530     18-30      10
## 36531     30-35       7
## 36532     30-35       7
## 36533     18-30      10
## 36534     40-50       5
## 36535     18-30      10
## 36536     18-30      10
## 36537     40-50       5
## 36538     18-30      10
## 36539     18-30      10
## 36540     30-35       7
## 36541     18-30      10
## 36542     50-60       5
## 36543     18-30      10
## 36544     30-35       7
## 36545     18-30      10
## 36546     35-40       6
## 36547     18-30      10
## 36548     18-30      10
## 36549     18-30      10
## 36550     35-40       6
## 36551     18-30      10
## 36552     18-30      10
## 36553     40-50       5
## 36554     18-30      10
## 36555     35-40       6
## 36556     18-30      10
## 36557     30-35       7
## 36558     18-30      10
## 36559     18-30      10
## 36560     18-30      10
## 36561     40-50       5
## 36562     18-30      10
## 36563     18-30      10
## 36564     18-30      10
## 36565     18-30      10
## 36566     35-40       6
## 36567     35-40       6
## 36568     18-30      10
## 36569     18-30      10
## 36570     30-35       7
## 36571     18-30      10
## 36572     18-30      10
## 36573     18-30      10
## 36574     18-30      10
## 36575     18-30      10
## 36576     18-30      10
## 36577     30-35       7
## 36578     30-35       7
## 36579     18-30      10
## 36580     18-30      10
## 36581     50-60       5
## 36582     18-30      10
## 36583     18-30      10
## 36584     18-30      10
## 36585     18-30      10
## 36586     30-35       7
## 36587     30-35       7
## 36588     18-30      10
## 36589     40-50       5
## 36590     35-40       6
## 36591     30-35       7
## 36592     18-30      10
## 36593     30-35       7
## 36594     18-30      10
## 36595     30-35       7
## 36596     30-35       7
## 36597     18-30      10
## 36598     35-40       6
## 36599     18-30      10
## 36600     18-30      10
## 36601     40-50       5
## 36602       65+       4
## 36603     30-35       7
## 36604     18-30      10
## 36605     18-30      10
## 36606     40-50       5
## 36607     30-35       7
## 36608     18-30      10
## 36609     18-30      10
## 36610     18-30      10
## 36611     18-30      10
## 36612     18-30      10
## 36613     18-30      10
## 36614     40-50       5
## 36615     18-30      10
## 36616     30-35       7
## 36617     18-30      10
## 36618     40-50       5
## 36619     18-30      10
## 36620     18-30      10
## 36621     18-30      10
## 36622     18-30      10
## 36623     18-30      10
## 36624     18-30      10
## 36625     18-30      10
## 36626     18-30      10
## 36627     30-35       7
## 36628     18-30      10
## 36629     18-30      10
## 36630     18-30      10
## 36631     18-30      10
## 36632     18-30      10
## 36633     18-30      10
## 36634     18-30      10
## 36635     18-30      10
## 36636     30-35       7
## 36637     40-50       5
## 36638     18-30      10
## 36639     35-40       6
## 36640     35-40       6
## 36641     30-35       7
## 36642     18-30      10
## 36643     18-30      10
## 36644     35-40       6
## 36645     18-30      10
## 36646     35-40       6
## 36647     40-50       5
## 36648     18-30      10
## 36649     18-30      10
## 36650     35-40       6
## 36651     30-35       7
## 36652     35-40       6
## 36653     30-35       7
## 36654     18-30      10
## 36655     40-50       5
## 36656     35-40       6
## 36657     18-30      10
## 36658     40-50       5
## 36659     18-30      10
## 36660     30-35       7
## 36661     18-30      10
## 36662     18-30      10
## 36663     18-30      10
## 36664     30-35       7
## 36665     30-35       7
## 36666     30-35       7
## 36667     18-30      10
## 36668     35-40       6
## 36669     18-30      10
## 36670     18-30      10
## 36671     40-50       5
## 36672     18-30      10
## 36673     18-30      10
## 36674     18-30      10
## 36675     18-30      10
## 36676     50-60       5
## 36677     18-30      10
## 36678     30-35       7
## 36679       65+       4
## 36680     18-30      10
## 36681     18-30      10
## 36682     35-40       6
## 36683     30-35       7
## 36684     18-30      10
## 36685     30-35       7
## 36686     18-30      10
## 36687     18-30      10
## 36688     18-30      10
## 36689     30-35       7
## 36690     18-30      10
## 36691     18-30      10
## 36692     18-30      10
## 36693     30-35       7
## 36694     40-50       5
## 36695     30-35       7
## 36696     18-30      10
## 36697     30-35       7
## 36698     50-60       5
## 36699     40-50       5
## 36700     30-35       7
## 36701     35-40       6
## 36702     18-30      10
## 36703     30-35       7
## 36704     18-30      10
## 36705     18-30      10
## 36706     18-30      10
## 36707     18-30      10
## 36708     18-30      10
## 36709     18-30      10
## 36710     35-40       6
## 36711     30-35       7
## 36712     18-30      10
## 36713     35-40       6
## 36714     40-50       5
## 36715     18-30      10
## 36716     30-35       7
## 36717     18-30      10
## 36718     50-60       5
## 36719     18-30      10
## 36720     18-30      10
## 36721     18-30      10
## 36722     30-35       7
## 36723     18-30      10
## 36724     18-30      10
## 36725     18-30      10
## 36726     18-30      10
## 36727     30-35       7
## 36728     18-30      10
## 36729     30-35       7
## 36730     40-50       5
## 36731     18-30      10
## 36732     18-30      10
## 36733     18-30      10
## 36734     50-60       5
## 36735     40-50       5
## 36736     35-40       6
## 36737     30-35       7
## 36738     18-30      10
## 36739     18-30      10
## 36740     18-30      10
## 36741     18-30      10
## 36742     40-50       5
## 36743     30-35       7
## 36744     30-35       7
## 36745     35-40       6
## 36746     18-30      10
## 36747     18-30      10
## 36748     18-30      10
## 36749     18-30      10
## 36750     35-40       6
## 36751     18-30      10
## 36752     30-35       7
## 36753     30-35       7
## 36754     18-30      10
## 36755     18-30      10
## 36756     18-30      10
## 36757     18-30      10
## 36758     18-30      10
## 36759     18-30      10
## 36760     40-50       5
## 36761     18-30      10
## 36762     18-30      10
## 36763     35-40       6
## 36764     18-30      10
## 36765     18-30      10
## 36766     18-30      10
## 36767     35-40       6
## 36768     30-35       7
## 36769     35-40       6
## 36770     18-30      10
## 36771     18-30      10
## 36772     18-30      10
## 36773     30-35       7
## 36774     30-35       7
## 36775     18-30      10
## 36776     30-35       7
## 36777     30-35       7
## 36778     50-60       5
## 36779       65+       4
## 36780     40-50       5
## 36781     18-30      10
## 36782     50-60       5
## 36783     18-30      10
## 36784     18-30      10
## 36785     18-30      10
## 36786     18-30      10
## 36787     18-30      10
## 36788     18-30      10
## 36789     18-30      10
## 36790     18-30      10
## 36791     18-30      10
## 36792     18-30      10
## 36793     50-60       5
## 36794     18-30      10
## 36795     18-30      10
## 36796     18-30      10
## 36797     30-35       7
## 36798     18-30      10
## 36799     18-30      10
## 36800     18-30      10
## 36801     18-30      10
## 36802     35-40       6
## 36803     40-50       5
## 36804     18-30      10
## 36805     35-40       6
## 36806     18-30      10
## 36807     18-30      10
## 36808     18-30      10
## 36809     35-40       6
## 36810     18-30      10
## 36811     18-30      10
## 36812     30-35       7
## 36813     30-35       7
## 36814     30-35       7
## 36815     35-40       6
## 36816       65+       4
## 36817     18-30      10
## 36818     40-50       5
## 36819     18-30      10
## 36820     40-50       5
## 36821     40-50       5
## 36822     50-60       5
## 36823     18-30      10
## 36824     18-30      10
## 36825     40-50       5
## 36826     18-30      10
## 36827     18-30      10
## 36828     18-30      10
## 36829     30-35       7
## 36830     18-30      10
## 36831     18-30      10
## 36832     18-30      10
## 36833     35-40       6
## 36834     18-30      10
## 36835     30-35       7
## 36836     18-30      10
## 36837     18-30      10
## 36838     18-30      10
## 36839     30-35       7
## 36840     40-50       5
## 36841     18-30      10
## 36842     40-50       5
## 36843     18-30      10
## 36844     30-35       7
## 36845       65+       4
## 36846     30-35       7
## 36847     18-30      10
## 36848     18-30      10
## 36849     18-30      10
## 36850     18-30      10
## 36851     35-40       6
## 36852     35-40       6
## 36853     18-30      10
## 36854     40-50       5
## 36855     30-35       7
## 36856     18-30      10
## 36857     35-40       6
## 36858       65+       4
## 36859     18-30      10
## 36860     30-35       7
## 36861     30-35       7
## 36862     18-30      10
## 36863     18-30      10
## 36864     18-30      10
## 36865     30-35       7
## 36866     40-50       5
## 36867     18-30      10
## 36868     40-50       5
## 36869     30-35       7
## 36870     18-30      10
## 36871     18-30      10
## 36872     18-30      10
## 36873       65+       4
## 36874     18-30      10
## 36875     30-35       7
## 36876     30-35       7
## 36877     50-60       5
## 36878     18-30      10
## 36879     18-30      10
## 36880     18-30      10
## 36881     30-35       7
## 36882     35-40       6
## 36883     18-30      10
## 36884     18-30      10
## 36885     30-35       7
## 36886     18-30      10
## 36887     18-30      10
## 36888     35-40       6
## 36889     40-50       5
## 36890     18-30      10
## 36891     18-30      10
## 36892     18-30      10
## 36893     35-40       6
## 36894     18-30      10
## 36895     30-35       7
## 36896     18-30      10
## 36897     40-50       5
## 36898     18-30      10
## 36899     35-40       6
## 36900     30-35       7
## 36901     35-40       6
## 36902     30-35       7
## 36903     30-35       7
## 36904     30-35       7
## 36905     30-35       7
## 36906     35-40       6
## 36907     18-30      10
## 36908     50-60       5
## 36909     50-60       5
## 36910     18-30      10
## 36911     40-50       5
## 36912     35-40       6
## 36913     18-30      10
## 36914     18-30      10
## 36915     18-30      10
## 36916     30-35       7
## 36917     18-30      10
## 36918     30-35       7
## 36919     18-30      10
## 36920     30-35       7
## 36921     18-30      10
## 36922     18-30      10
## 36923     30-35       7
## 36924     18-30      10
## 36925     18-30      10
## 36926     18-30      10
## 36927     50-60       5
## 36928     40-50       5
## 36929     40-50       5
## 36930     18-30      10
## 36931     18-30      10
## 36932     18-30      10
## 36933     30-35       7
## 36934     30-35       7
## 36935     18-30      10
## 36936     18-30      10
## 36937     18-30      10
## 36938     18-30      10
## 36939     35-40       6
## 36940     18-30      10
## 36941     30-35       7
## 36942     18-30      10
## 36943     30-35       7
## 36944     18-30      10
## 36945     18-30      10
## 36946     18-30      10
## 36947     18-30      10
## 36948     18-30      10
## 36949     30-35       7
## 36950     18-30      10
## 36951     18-30      10
## 36952     35-40       6
## 36953     18-30      10
## 36954     18-30      10
## 36955     18-30      10
## 36956     18-30      10
## 36957     40-50       5
## 36958     35-40       6
## 36959     30-35       7
## 36960     18-30      10
## 36961     18-30      10
## 36962     18-30      10
## 36963     30-35       7
## 36964     18-30      10
## 36965     30-35       7
## 36966     18-30      10
## 36967     40-50       5
## 36968     18-30      10
## 36969     30-35       7
## 36970     18-30      10
## 36971     30-35       7
## 36972     30-35       7
## 36973     18-30      10
## 36974     30-35       7
## 36975     18-30      10
## 36976     30-35       7
## 36977     18-30      10
## 36978     18-30      10
## 36979     35-40       6
## 36980     18-30      10
## 36981     18-30      10
## 36982     18-30      10
## 36983     18-30      10
## 36984     40-50       5
## 36985     18-30      10
## 36986     18-30      10
## 36987     18-30      10
## 36988     30-35       7
## 36989     18-30      10
## 36990     18-30      10
## 36991     18-30      10
## 36992     18-30      10
## 36993     35-40       6
## 36994     18-30      10
## 36995     35-40       6
## 36996     18-30      10
## 36997     18-30      10
## 36998     18-30      10
## 36999     18-30      10
## 37000     18-30      10
## 37001     35-40       6
## 37002     18-30      10
## 37003     18-30      10
## 37004     18-30      10
## 37005     18-30      10
## 37006     18-30      10
## 37007     40-50       5
## 37008     30-35       7
## 37009     18-30      10
## 37010     30-35       7
## 37011     18-30      10
## 37012     18-30      10
## 37013     18-30      10
## 37014     30-35       7
## 37015     18-30      10
## 37016     18-30      10
## 37017     18-30      10
## 37018     40-50       5
## 37019     40-50       5
## 37020     18-30      10
## 37021     40-50       5
## 37022     30-35       7
## 37023     18-30      10
## 37024     18-30      10
## 37025     18-30      10
## 37026     18-30      10
## 37027     18-30      10
## 37028     35-40       6
## 37029     40-50       5
## 37030     18-30      10
## 37031     35-40       6
## 37032     18-30      10
## 37033     18-30      10
## 37034     35-40       6
## 37035       65+       4
## 37036     18-30      10
## 37037     18-30      10
## 37038     18-30      10
## 37039     18-30      10
## 37040     18-30      10
## 37041     40-50       5
## 37042     18-30      10
## 37043     30-35       7
## 37044     40-50       5
## 37045     18-30      10
## 37046     18-30      10
## 37047     18-30      10
## 37048     35-40       6
## 37049     18-30      10
## 37050     35-40       6
## 37051     30-35       7
## 37052     40-50       5
## 37053     30-35       7
## 37054     18-30      10
## 37055     18-30      10
## 37056     18-30      10
## 37057     40-50       5
## 37058     35-40       6
## 37059     50-60       5
## 37060     18-30      10
## 37061     18-30      10
## 37062     50-60       5
## 37063     40-50       5
## 37064     35-40       6
## 37065     18-30      10
## 37066     18-30      10
## 37067     35-40       6
## 37068     18-30      10
## 37069     40-50       5
## 37070     18-30      10
## 37071     18-30      10
## 37072     35-40       6
## 37073     18-30      10
## 37074     18-30      10
## 37075     18-30      10
## 37076     18-30      10
## 37077     35-40       6
## 37078     50-60       5
## 37079     18-30      10
## 37080     18-30      10
## 37081     18-30      10
## 37082     18-30      10
## 37083     35-40       6
## 37084     40-50       5
## 37085     18-30      10
## 37086     35-40       6
## 37087     18-30      10
## 37088     18-30      10
## 37089     18-30      10
## 37090     18-30      10
## 37091     30-35       7
## 37092     30-35       7
## 37093     40-50       5
## 37094     18-30      10
## 37095     40-50       5
## 37096     40-50       5
## 37097     40-50       5
## 37098     18-30      10
## 37099     18-30      10
## 37100     50-60       5
## 37101     18-30      10
## 37102     40-50       5
## 37103     35-40       6
## 37104     18-30      10
## 37105     35-40       6
## 37106     18-30      10
## 37107     50-60       5
## 37108     35-40       6
## 37109     35-40       6
## 37110     18-30      10
## 37111     40-50       5
## 37112     18-30      10
## 37113     18-30      10
## 37114     18-30      10
## 37115     18-30      10
## 37116     18-30      10
## 37117     18-30      10
## 37118     18-30      10
## 37119     30-35       7
## 37120     40-50       5
## 37121     18-30      10
## 37122     40-50       5
## 37123     30-35       7
## 37124     40-50       5
## 37125     18-30      10
## 37126     30-35       7
## 37127     35-40       6
## 37128     35-40       6
## 37129       65+       4
## 37130     18-30      10
## 37131     18-30      10
## 37132     40-50       5
## 37133     18-30      10
## 37134     35-40       6
## 37135     18-30      10
## 37136     18-30      10
## 37137     18-30      10
## 37138     35-40       6
## 37139     18-30      10
## 37140     18-30      10
## 37141     18-30      10
## 37142     30-35       7
## 37143     18-30      10
## 37144     30-35       7
## 37145     18-30      10
## 37146     18-30      10
## 37147     30-35       7
## 37148     40-50       5
## 37149     30-35       7
## 37150     18-30      10
## 37151     18-30      10
## 37152     35-40       6
## 37153     35-40       6
## 37154     35-40       6
## 37155     35-40       6
## 37156     18-30      10
## 37157     18-30      10
## 37158     40-50       5
## 37159     18-30      10
## 37160     18-30      10
## 37161     18-30      10
## 37162     18-30      10
## 37163     40-50       5
## 37164     30-35       7
## 37165     35-40       6
## 37166     18-30      10
## 37167     30-35       7
## 37168     30-35       7
## 37169     18-30      10
## 37170     35-40       6
## 37171     18-30      10
## 37172     35-40       6
## 37173     30-35       7
## 37174     18-30      10
## 37175     18-30      10
## 37176     18-30      10
## 37177     18-30      10
## 37178     18-30      10
## 37179     30-35       7
## 37180     18-30      10
## 37181     18-30      10
## 37182     18-30      10
## 37183     18-30      10
## 37184     30-35       7
## 37185     18-30      10
## 37186     18-30      10
## 37187     40-50       5
## 37188     30-35       7
## 37189     35-40       6
## 37190     35-40       6
## 37191     35-40       6
## 37192     18-30      10
## 37193     18-30      10
## 37194     18-30      10
## 37195     18-30      10
## 37196     18-30      10
## 37197     18-30      10
## 37198     30-35       7
## 37199     18-30      10
## 37200     18-30      10
## 37201     50-60       5
## 37202     18-30      10
## 37203     18-30      10
## 37204     18-30      10
## 37205     18-30      10
## 37206     18-30      10
## 37207     35-40       6
## 37208     35-40       6
## 37209     18-30      10
## 37210     30-35       7
## 37211     18-30      10
## 37212     40-50       5
## 37213     18-30      10
## 37214     40-50       5
## 37215     30-35       7
## 37216     18-30      10
## 37217     18-30      10
## 37218     40-50       5
## 37219     50-60       5
## 37220     40-50       5
## 37221     18-30      10
## 37222     18-30      10
## 37223     18-30      10
## 37224     40-50       5
## 37225     18-30      10
## 37226     30-35       7
## 37227     18-30      10
## 37228     30-35       7
## 37229     35-40       6
## 37230     18-30      10
## 37231     18-30      10
## 37232     18-30      10
## 37233     40-50       5
## 37234     50-60       5
## 37235     18-30      10
## 37236     30-35       7
## 37237     18-30      10
## 37238     40-50       5
## 37239     18-30      10
## 37240     18-30      10
## 37241     18-30      10
## 37242     35-40       6
## 37243     35-40       6
## 37244     18-30      10
## 37245     18-30      10
## 37246     18-30      10
## 37247     30-35       7
## 37248     30-35       7
## 37249     40-50       5
## 37250     18-30      10
## 37251     18-30      10
## 37252     30-35       7
## 37253     30-35       7
## 37254     18-30      10
## 37255     18-30      10
## 37256     30-35       7
## 37257     18-30      10
## 37258     18-30      10
## 37259     30-35       7
## 37260     35-40       6
## 37261     18-30      10
## 37262     18-30      10
## 37263     35-40       6
## 37264     18-30      10
## 37265     18-30      10
## 37266     18-30      10
## 37267       65+       4
## 37268     35-40       6
## 37269     18-30      10
## 37270     30-35       7
## 37271     18-30      10
## 37272     18-30      10
## 37273     18-30      10
## 37274     35-40       6
## 37275     35-40       6
## 37276     30-35       7
## 37277     35-40       6
## 37278     50-60       5
## 37279     18-30      10
## 37280     18-30      10
## 37281     18-30      10
## 37282     18-30      10
## 37283     18-30      10
## 37284     18-30      10
## 37285     18-30      10
## 37286     18-30      10
## 37287     35-40       6
## 37288     18-30      10
## 37289     18-30      10
## 37290     30-35       7
## 37291     18-30      10
## 37292     18-30      10
## 37293     18-30      10
## 37294     35-40       6
## 37295     18-30      10
## 37296     30-35       7
## 37297     18-30      10
## 37298     18-30      10
## 37299     18-30      10
## 37300     50-60       5
## 37301     30-35       7
## 37302     18-30      10
## 37303     18-30      10
## 37304     18-30      10
## 37305     40-50       5
## 37306     18-30      10
## 37307     40-50       5
## 37308     18-30      10
## 37309     18-30      10
## 37310     18-30      10
## 37311     40-50       5
## 37312     18-30      10
## 37313     35-40       6
## 37314     40-50       5
## 37315     30-35       7
## 37316     18-30      10
## 37317     18-30      10
## 37318     18-30      10
## 37319     30-35       7
## 37320     18-30      10
## 37321     18-30      10
## 37322     18-30      10
## 37323     30-35       7
## 37324     50-60       5
## 37325     40-50       5
## 37326     40-50       5
## 37327     18-30      10
## 37328     18-30      10
## 37329     35-40       6
## 37330     30-35       7
## 37331     40-50       5
## 37332     50-60       5
## 37333     18-30      10
## 37334     18-30      10
## 37335     18-30      10
## 37336     18-30      10
## 37337     18-30      10
## 37338     30-35       7
## 37339     18-30      10
## 37340     50-60       5
## 37341     40-50       5
## 37342     35-40       6
## 37343     18-30      10
## 37344     18-30      10
## 37345     35-40       6
## 37346     50-60       5
## 37347     18-30      10
## 37348     18-30      10
## 37349     50-60       5
## 37350     18-30      10
## 37351     50-60       5
## 37352     50-60       5
## 37353     18-30      10
## 37354     18-30      10
## 37355     35-40       6
## 37356     40-50       5
## 37357     40-50       5
## 37358     30-35       7
## 37359     18-30      10
## 37360     18-30      10
## 37361     18-30      10
## 37362     30-35       7
## 37363     40-50       5
## 37364     30-35       7
## 37365     35-40       6
## 37366     18-30      10
## 37367     40-50       5
## 37368     18-30      10
## 37369     35-40       6
## 37370     18-30      10
## 37371     18-30      10
## 37372     40-50       5
## 37373     40-50       5
## 37374     30-35       7
## 37375     18-30      10
## 37376     18-30      10
## 37377     35-40       6
## 37378     18-30      10
## 37379       65+       4
## 37380     35-40       6
## 37381     18-30      10
## 37382     40-50       5
## 37383     30-35       7
## 37384     35-40       6
## 37385     18-30      10
## 37386     35-40       6
## 37387     40-50       5
## 37388     18-30      10
## 37389     50-60       5
## 37390     35-40       6
## 37391     18-30      10
## 37392     18-30      10
## 37393     18-30      10
## 37394     30-35       7
## 37395     18-30      10
## 37396     30-35       7
## 37397     30-35       7
## 37398     30-35       7
## 37399     30-35       7
## 37400     35-40       6
## 37401     18-30      10
## 37402     18-30      10
## 37403     30-35       7
## 37404     40-50       5
## 37405     18-30      10
## 37406     50-60       5
## 37407     18-30      10
## 37408     35-40       6
## 37409     18-30      10
## 37410     18-30      10
## 37411     30-35       7
## 37412     18-30      10
## 37413     18-30      10
## 37414     18-30      10
## 37415     18-30      10
## 37416     18-30      10
## 37417     40-50       5
## 37418     18-30      10
## 37419     18-30      10
## 37420     35-40       6
## 37421     35-40       6
## 37422     30-35       7
## 37423     18-30      10
## 37424     18-30      10
## 37425     35-40       6
## 37426     18-30      10
## 37427     18-30      10
## 37428     18-30      10
## 37429     35-40       6
## 37430     18-30      10
## 37431     30-35       7
## 37432     18-30      10
## 37433     18-30      10
## 37434     35-40       6
## 37435     18-30      10
## 37436     18-30      10
## 37437     18-30      10
## 37438     35-40       6
## 37439     35-40       6
## 37440     18-30      10
## 37441     18-30      10
## 37442     30-35       7
## 37443     18-30      10
## 37444     18-30      10
## 37445     18-30      10
## 37446     30-35       7
## 37447     30-35       7
## 37448     40-50       5
## 37449     30-35       7
## 37450     40-50       5
## 37451     30-35       7
## 37452     18-30      10
## 37453     30-35       7
## 37454     18-30      10
## 37455     18-30      10
## 37456     18-30      10
## 37457     40-50       5
## 37458     30-35       7
## 37459     30-35       7
## 37460     30-35       7
## 37461     18-30      10
## 37462     18-30      10
## 37463     18-30      10
## 37464     18-30      10
## 37465     30-35       7
## 37466     35-40       6
## 37467     18-30      10
## 37468     30-35       7
## 37469     30-35       7
## 37470     18-30      10
## 37471     18-30      10
## 37472     30-35       7
## 37473     18-30      10
## 37474     40-50       5
## 37475     40-50       5
## 37476     40-50       5
## 37477     18-30      10
## 37478     40-50       5
## 37479     40-50       5
## 37480     40-50       5
## 37481     18-30      10
## 37482     18-30      10
## 37483     40-50       5
## 37484     40-50       5
## 37485     30-35       7
## 37486     30-35       7
## 37487     18-30      10
## 37488     30-35       7
## 37489     18-30      10
## 37490     18-30      10
## 37491     30-35       7
## 37492     18-30      10
## 37493     18-30      10
## 37494     18-30      10
## 37495     18-30      10
## 37496     18-30      10
## 37497     18-30      10
## 37498     30-35       7
## 37499     40-50       5
## 37500     18-30      10
## 37501     40-50       5
## 37502     18-30      10
## 37503     40-50       5
## 37504     18-30      10
## 37505     18-30      10
## 37506     35-40       6
## 37507     18-30      10
## 37508     30-35       7
## 37509     30-35       7
## 37510     50-60       5
## 37511     18-30      10
## 37512     30-35       7
## 37513     30-35       7
## 37514     30-35       7
## 37515       65+       4
## 37516     30-35       7
## 37517     18-30      10
## 37518     18-30      10
## 37519     18-30      10
## 37520     18-30      10
## 37521     18-30      10
## 37522     18-30      10
## 37523     40-50       5
## 37524     18-30      10
## 37525     35-40       6
## 37526     18-30      10
## 37527     30-35       7
## 37528     30-35       7
## 37529     18-30      10
## 37530     18-30      10
## 37531     18-30      10
## 37532     50-60       5
## 37533     18-30      10
## 37534     18-30      10
## 37535     30-35       7
## 37536     30-35       7
## 37537     18-30      10
## 37538     18-30      10
## 37539     18-30      10
## 37540     18-30      10
## 37541     18-30      10
## 37542     18-30      10
## 37543     18-30      10
## 37544     40-50       5
## 37545       65+       4
## 37546     40-50       5
## 37547     30-35       7
## 37548     30-35       7
## 37549     18-30      10
## 37550     18-30      10
## 37551     30-35       7
## 37552     18-30      10
## 37553     35-40       6
## 37554     18-30      10
## 37555     40-50       5
## 37556     35-40       6
## 37557     18-30      10
## 37558     18-30      10
## 37559     30-35       7
## 37560     30-35       7
## 37561     18-30      10
## 37562     40-50       5
## 37563     18-30      10
## 37564     30-35       7
## 37565     18-30      10
## 37566     30-35       7
## 37567     18-30      10
## 37568     18-30      10
## 37569     18-30      10
## 37570     35-40       6
## 37571     30-35       7
## 37572     35-40       6
## 37573     40-50       5
## 37574     18-30      10
## 37575     18-30      10
## 37576     18-30      10
## 37577     18-30      10
## 37578     18-30      10
## 37579     18-30      10
## 37580     18-30      10
## 37581     30-35       7
## 37582     35-40       6
## 37583     30-35       7
## 37584     18-30      10
## 37585     18-30      10
## 37586     18-30      10
## 37587     18-30      10
## 37588     18-30      10
## 37589     18-30      10
## 37590     18-30      10
## 37591     18-30      10
## 37592     18-30      10
## 37593     18-30      10
## 37594     18-30      10
## 37595     40-50       5
## 37596     30-35       7
## 37597     35-40       6
## 37598     18-30      10
## 37599     18-30      10
## 37600     18-30      10
## 37601     18-30      10
## 37602     18-30      10
## 37603     18-30      10
## 37604     18-30      10
## 37605     18-30      10
## 37606     18-30      10
## 37607     30-35       7
## 37608     30-35       7
## 37609     18-30      10
## 37610     35-40       6
## 37611     30-35       7
## 37612     30-35       7
## 37613     18-30      10
## 37614     18-30      10
## 37615     18-30      10
## 37616     35-40       6
## 37617     30-35       7
## 37618     40-50       5
## 37619     40-50       5
## 37620     18-30      10
## 37621     35-40       6
## 37622       65+       4
## 37623     18-30      10
## 37624     18-30      10
## 37625     18-30      10
## 37626     18-30      10
## 37627     40-50       5
## 37628     18-30      10
## 37629     18-30      10
## 37630     35-40       6
## 37631     18-30      10
## 37632     30-35       7
## 37633     50-60       5
## 37634     35-40       6
## 37635     40-50       5
## 37636     40-50       5
## 37637     18-30      10
## 37638     50-60       5
## 37639     50-60       5
## 37640     35-40       6
## 37641     40-50       5
## 37642     40-50       5
## 37643     18-30      10
## 37644     18-30      10
## 37645     18-30      10
## 37646     30-35       7
## 37647     30-35       7
## 37648     18-30      10
## 37649     18-30      10
## 37650     18-30      10
## 37651     18-30      10
## 37652     18-30      10
## 37653     18-30      10
## 37654     40-50       5
## 37655     40-50       5
## 37656     18-30      10
## 37657     35-40       6
## 37658     18-30      10
## 37659     18-30      10
## 37660     40-50       5
## 37661     30-35       7
## 37662     30-35       7
## 37663     18-30      10
## 37664     18-30      10
## 37665     18-30      10
## 37666     35-40       6
## 37667     18-30      10
## 37668     35-40       6
## 37669     18-30      10
## 37670     18-30      10
## 37671     18-30      10
## 37672     18-30      10
## 37673     30-35       7
## 37674     18-30      10
## 37675     18-30      10
## 37676     30-35       7
## 37677     50-60       5
## 37678     18-30      10
## 37679     18-30      10
## 37680     30-35       7
## 37681     30-35       7
## 37682     18-30      10
## 37683     30-35       7
## 37684     18-30      10
## 37685     30-35       7
## 37686     18-30      10
## 37687     18-30      10
## 37688     18-30      10
## 37689     18-30      10
## 37690     18-30      10
## 37691     18-30      10
## 37692     30-35       7
## 37693     18-30      10
## 37694     40-50       5
## 37695     30-35       7
## 37696     18-30      10
## 37697     35-40       6
## 37698     30-35       7
## 37699     18-30      10
## 37700       65+       4
## 37701     40-50       5
## 37702     30-35       7
## 37703     35-40       6
## 37704     30-35       7
## 37705     30-35       7
## 37706     18-30      10
## 37707     35-40       6
## 37708     40-50       5
## 37709     30-35       7
## 37710     18-30      10
## 37711     18-30      10
## 37712     18-30      10
## 37713     40-50       5
## 37714     18-30      10
## 37715     18-30      10
## 37716     50-60       5
## 37717       65+       4
## 37718     18-30      10
## 37719     18-30      10
## 37720     18-30      10
## 37721     18-30      10
## 37722     30-35       7
## 37723     30-35       7
## 37724     18-30      10
## 37725     18-30      10
## 37726     40-50       5
## 37727     18-30      10
## 37728     18-30      10
## 37729     18-30      10
## 37730     18-30      10
## 37731     30-35       7
## 37732     18-30      10
## 37733     30-35       7
## 37734     30-35       7
## 37735     18-30      10
## 37736     18-30      10
## 37737     30-35       7
## 37738     18-30      10
## 37739     30-35       7
## 37740     18-30      10
## 37741     18-30      10
## 37742     18-30      10
## 37743     30-35       7
## 37744     50-60       5
## 37745     18-30      10
## 37746     40-50       5
## 37747     18-30      10
## 37748     35-40       6
## 37749     35-40       6
## 37750     35-40       6
## 37751     35-40       6
## 37752     18-30      10
## 37753     18-30      10
## 37754     18-30      10
## 37755     18-30      10
## 37756     18-30      10
## 37757     18-30      10
## 37758     18-30      10
## 37759     30-35       7
## 37760     18-30      10
## 37761     18-30      10
## 37762     18-30      10
## 37763     18-30      10
## 37764     18-30      10
## 37765     35-40       6
## 37766     30-35       7
## 37767     18-30      10
## 37768     40-50       5
## 37769       65+       4
## 37770     30-35       7
## 37771     35-40       6
## 37772     18-30      10
## 37773     18-30      10
## 37774     18-30      10
## 37775     18-30      10
## 37776     18-30      10
## 37777     18-30      10
## 37778     18-30      10
## 37779     18-30      10
## 37780     30-35       7
## 37781     18-30      10
## 37782     18-30      10
## 37783     35-40       6
## 37784     18-30      10
## 37785     18-30      10
## 37786     35-40       6
## 37787       65+       4
## 37788     35-40       6
## 37789     40-50       5
## 37790     30-35       7
## 37791     30-35       7
## 37792     18-30      10
## 37793     30-35       7
## 37794     18-30      10
## 37795     30-35       7
## 37796     35-40       6
## 37797     35-40       6
## 37798     30-35       7
## 37799     18-30      10
## 37800     18-30      10
## 37801     18-30      10
## 37802     18-30      10
## 37803     18-30      10
## 37804     18-30      10
## 37805     30-35       7
## 37806     18-30      10
## 37807     18-30      10
## 37808     30-35       7
## 37809     30-35       7
## 37810     18-30      10
## 37811     40-50       5
## 37812     18-30      10
## 37813     18-30      10
## 37814     18-30      10
## 37815     18-30      10
## 37816     40-50       5
## 37817     18-30      10
## 37818     18-30      10
## 37819     18-30      10
## 37820     30-35       7
## 37821     30-35       7
## 37822     18-30      10
## 37823     18-30      10
## 37824     40-50       5
## 37825     50-60       5
## 37826     35-40       6
## 37827     35-40       6
## 37828     30-35       7
## 37829     18-30      10
## 37830     35-40       6
## 37831     18-30      10
## 37832     30-35       7
## 37833     30-35       7
## 37834     40-50       5
## 37835     50-60       5
## 37836     18-30      10
## 37837     18-30      10
## 37838     18-30      10
## 37839     18-30      10
## 37840     18-30      10
## 37841     40-50       5
## 37842     30-35       7
## 37843     18-30      10
## 37844     30-35       7
## 37845     18-30      10
## 37846     18-30      10
## 37847     30-35       7
## 37848     18-30      10
## 37849     18-30      10
## 37850     50-60       5
## 37851     18-30      10
## 37852     18-30      10
## 37853     18-30      10
## 37854     40-50       5
## 37855     35-40       6
## 37856     18-30      10
## 37857     50-60       5
## 37858     35-40       6
## 37859     18-30      10
## 37860     30-35       7
## 37861       65+       4
## 37862     30-35       7
## 37863     18-30      10
## 37864     30-35       7
## 37865     35-40       6
## 37866     18-30      10
## 37867     30-35       7
## 37868     18-30      10
## 37869     18-30      10
## 37870     35-40       6
## 37871     40-50       5
## 37872     40-50       5
## 37873     18-30      10
## 37874     50-60       5
## 37875     40-50       5
## 37876     30-35       7
## 37877     30-35       7
## 37878     30-35       7
## 37879     30-35       7
## 37880     18-30      10
## 37881     40-50       5
## 37882     35-40       6
## 37883     18-30      10
## 37884     35-40       6
## 37885     30-35       7
## 37886     40-50       5
## 37887     18-30      10
## 37888     18-30      10
## 37889     18-30      10
## 37890     40-50       5
## 37891     18-30      10
## 37892     50-60       5
## 37893     30-35       7
## 37894     30-35       7
## 37895     18-30      10
## 37896     40-50       5
## 37897     18-30      10
## 37898     18-30      10
## 37899     18-30      10
## 37900     40-50       5
## 37901     18-30      10
## 37902     18-30      10
## 37903     18-30      10
## 37904       65+       4
## 37905     40-50       5
## 37906     30-35       7
## 37907     35-40       6
## 37908     18-30      10
## 37909     30-35       7
## 37910     18-30      10
## 37911     18-30      10
## 37912     18-30      10
## 37913     18-30      10
## 37914     18-30      10
## 37915     18-30      10
## 37916     40-50       5
## 37917     18-30      10
## 37918     18-30      10
## 37919     18-30      10
## 37920     30-35       7
## 37921     30-35       7
## 37922     18-30      10
## 37923     30-35       7
## 37924     30-35       7
## 37925     18-30      10
## 37926     35-40       6
## 37927     30-35       7
## 37928     30-35       7
## 37929     35-40       6
## 37930     50-60       5
## 37931     30-35       7
## 37932     18-30      10
## 37933     18-30      10
## 37934     18-30      10
## 37935     18-30      10
## 37936     35-40       6
## 37937     18-30      10
## 37938     18-30      10
## 37939     40-50       5
## 37940     18-30      10
## 37941     18-30      10
## 37942     18-30      10
## 37943     30-35       7
## 37944     18-30      10
## 37945     18-30      10
## 37946     18-30      10
## 37947     40-50       5
## 37948     30-35       7
## 37949     40-50       5
## 37950     30-35       7
## 37951     18-30      10
## 37952     18-30      10
## 37953     18-30      10
## 37954     35-40       6
## 37955     18-30      10
## 37956     18-30      10
## 37957     18-30      10
## 37958     18-30      10
## 37959     18-30      10
## 37960     18-30      10
## 37961     18-30      10
## 37962     35-40       6
## 37963     30-35       7
## 37964     35-40       6
## 37965     30-35       7
## 37966     18-30      10
## 37967     18-30      10
## 37968     40-50       5
## 37969     30-35       7
## 37970     18-30      10
## 37971     40-50       5
## 37972     18-30      10
## 37973     35-40       6
## 37974     30-35       7
## 37975     18-30      10
## 37976     18-30      10
## 37977     18-30      10
## 37978     18-30      10
## 37979     40-50       5
## 37980     18-30      10
## 37981     40-50       5
## 37982     18-30      10
## 37983     35-40       6
## 37984     35-40       6
## 37985     30-35       7
## 37986     18-30      10
## 37987     30-35       7
## 37988     30-35       7
## 37989     50-60       5
## 37990     18-30      10
## 37991     18-30      10
## 37992     35-40       6
## 37993     50-60       5
## 37994     50-60       5
## 37995     35-40       6
## 37996     50-60       5
## 37997     18-30      10
## 37998     35-40       6
## 37999     30-35       7
## 38000     40-50       5
## 38001     30-35       7
## 38002     18-30      10
## 38003     18-30      10
## 38004     18-30      10
## 38005       65+       4
## 38006     18-30      10
## 38007     40-50       5
## 38008     18-30      10
## 38009     40-50       5
## 38010     18-30      10
## 38011     18-30      10
## 38012     18-30      10
## 38013     30-35       7
## 38014     18-30      10
## 38015     50-60       5
## 38016     30-35       7
## 38017     18-30      10
## 38018     40-50       5
## 38019     35-40       6
## 38020     18-30      10
## 38021     18-30      10
## 38022     30-35       7
## 38023     40-50       5
## 38024     30-35       7
## 38025     35-40       6
## 38026     40-50       5
## 38027     35-40       6
## 38028     35-40       6
## 38029     18-30      10
## 38030     30-35       7
## 38031     40-50       5
## 38032     18-30      10
## 38033     18-30      10
## 38034     40-50       5
## 38035     35-40       6
## 38036     30-35       7
## 38037     50-60       5
## 38038     30-35       7
## 38039     18-30      10
## 38040     18-30      10
## 38041     30-35       7
## 38042     18-30      10
## 38043     35-40       6
## 38044     18-30      10
## 38045     50-60       5
## 38046     40-50       5
## 38047     40-50       5
## 38048     40-50       5
## 38049     18-30      10
## 38050     18-30      10
## 38051     18-30      10
## 38052     35-40       6
## 38053     18-30      10
## 38054     40-50       5
## 38055     30-35       7
## 38056     30-35       7
## 38057     18-30      10
## 38058     18-30      10
## 38059     40-50       5
## 38060     18-30      10
## 38061     18-30      10
## 38062     35-40       6
## 38063     50-60       5
## 38064     35-40       6
## 38065     30-35       7
## 38066     18-30      10
## 38067     30-35       7
## 38068     18-30      10
## 38069     40-50       5
## 38070     18-30      10
## 38071     18-30      10
## 38072     18-30      10
## 38073     40-50       5
## 38074     30-35       7
## 38075     30-35       7
## 38076     30-35       7
## 38077     18-30      10
## 38078     18-30      10
## 38079     18-30      10
## 38080     18-30      10
## 38081     30-35       7
## 38082     18-30      10
## 38083     18-30      10
## 38084     35-40       6
## 38085     18-30      10
## 38086     40-50       5
## 38087     18-30      10
## 38088     18-30      10
## 38089     18-30      10
## 38090     18-30      10
## 38091     18-30      10
## 38092     18-30      10
## 38093     30-35       7
## 38094     18-30      10
## 38095     18-30      10
## 38096     30-35       7
## 38097     40-50       5
## 38098     18-30      10
## 38099     35-40       6
## 38100     18-30      10
## 38101     30-35       7
## 38102     18-30      10
## 38103     30-35       7
## 38104     35-40       6
## 38105     18-30      10
## 38106     40-50       5
## 38107     30-35       7
## 38108     18-30      10
## 38109     30-35       7
## 38110     30-35       7
## 38111     50-60       5
## 38112     30-35       7
## 38113     18-30      10
## 38114     18-30      10
## 38115     18-30      10
## 38116     18-30      10
## 38117     30-35       7
## 38118     30-35       7
## 38119     40-50       5
## 38120     40-50       5
## 38121     18-30      10
## 38122     30-35       7
## 38123     30-35       7
## 38124     40-50       5
## 38125     40-50       5
## 38126     40-50       5
## 38127     35-40       6
## 38128     40-50       5
## 38129       65+       4
## 38130     18-30      10
## 38131     30-35       7
## 38132     18-30      10
## 38133     18-30      10
## 38134     30-35       7
## 38135     35-40       6
## 38136     40-50       5
## 38137     18-30      10
## 38138     30-35       7
## 38139     18-30      10
## 38140     18-30      10
## 38141     18-30      10
## 38142     35-40       6
## 38143     18-30      10
## 38144     18-30      10
## 38145     18-30      10
## 38146     30-35       7
## 38147     30-35       7
## 38148     18-30      10
## 38149     18-30      10
## 38150     18-30      10
## 38151     30-35       7
## 38152     35-40       6
## 38153     18-30      10
## 38154     18-30      10
## 38155     18-30      10
## 38156     30-35       7
## 38157     18-30      10
## 38158     40-50       5
## 38159     30-35       7
## 38160     30-35       7
## 38161     40-50       5
## 38162     18-30      10
## 38163     18-30      10
## 38164       65+       4
## 38165     18-30      10
## 38166     40-50       5
## 38167     18-30      10
## 38168     35-40       6
## 38169     18-30      10
## 38170     40-50       5
## 38171     18-30      10
## 38172     40-50       5
## 38173     18-30      10
## 38174     35-40       6
## 38175     18-30      10
## 38176     18-30      10
## 38177     30-35       7
## 38178     30-35       7
## 38179     50-60       5
## 38180     18-30      10
## 38181     30-35       7
## 38182     18-30      10
## 38183     18-30      10
## 38184     35-40       6
## 38185     40-50       5
## 38186     18-30      10
## 38187     18-30      10
## 38188       65+       4
## 38189     30-35       7
## 38190     30-35       7
## 38191     40-50       5
## 38192     50-60       5
## 38193       65+       4
## 38194     30-35       7
## 38195     18-30      10
## 38196     18-30      10
## 38197     18-30      10
## 38198     30-35       7
## 38199     18-30      10
## 38200     30-35       7
## 38201     18-30      10
## 38202     40-50       5
## 38203     40-50       5
## 38204     18-30      10
## 38205     18-30      10
## 38206     18-30      10
## 38207     18-30      10
## 38208     18-30      10
## 38209     18-30      10
## 38210     18-30      10
## 38211     40-50       5
## 38212     18-30      10
## 38213     18-30      10
## 38214     30-35       7
## 38215     18-30      10
## 38216     18-30      10
## 38217     40-50       5
## 38218     30-35       7
## 38219     18-30      10
## 38220     18-30      10
## 38221     18-30      10
## 38222     30-35       7
## 38223       65+       4
## 38224     18-30      10
## 38225     35-40       6
## 38226     35-40       6
## 38227     35-40       6
## 38228     18-30      10
## 38229     18-30      10
## 38230     40-50       5
## 38231     18-30      10
## 38232     30-35       7
## 38233     18-30      10
## 38234     18-30      10
## 38235     40-50       5
## 38236     30-35       7
## 38237     18-30      10
## 38238     18-30      10
## 38239     18-30      10
## 38240     18-30      10
## 38241     50-60       5
## 38242     40-50       5
## 38243     30-35       7
## 38244     30-35       7
## 38245     40-50       5
## 38246     30-35       7
## 38247     18-30      10
## 38248     18-30      10
## 38249     18-30      10
## 38250     40-50       5
## 38251     30-35       7
## 38252     40-50       5
## 38253     50-60       5
## 38254     50-60       5
## 38255     18-30      10
## 38256     50-60       5
## 38257     30-35       7
## 38258       65+       4
## 38259       65+       4
## 38260     18-30      10
## 38261     30-35       7
## 38262     50-60       5
## 38263     30-35       7
## 38264     30-35       7
## 38265     50-60       5
## 38266     18-30      10
## 38267     18-30      10
## 38268     35-40       6
## 38269     35-40       6
## 38270     18-30      10
## 38271     40-50       5
## 38272     50-60       5
## 38273     35-40       6
## 38274     18-30      10
## 38275     30-35       7
## 38276     40-50       5
## 38277     18-30      10
## 38278     18-30      10
## 38279     18-30      10
## 38280     40-50       5
## 38281     18-30      10
## 38282     18-30      10
## 38283     18-30      10
## 38284       65+       4
## 38285     18-30      10
## 38286     18-30      10
## 38287     18-30      10
## 38288     18-30      10
## 38289     30-35       7
## 38290     18-30      10
## 38291     35-40       6
## 38292     18-30      10
## 38293     18-30      10
## 38294     40-50       5
## 38295     18-30      10
## 38296     18-30      10
## 38297     40-50       5
## 38298     30-35       7
## 38299     30-35       7
## 38300     18-30      10
## 38301     18-30      10
## 38302     18-30      10
## 38303     30-35       7
## 38304     18-30      10
## 38305     18-30      10
## 38306     35-40       6
## 38307     35-40       6
## 38308     18-30      10
## 38309     50-60       5
## 38310     30-35       7
## 38311     18-30      10
## 38312     35-40       6
## 38313     18-30      10
## 38314     18-30      10
## 38315     18-30      10
## 38316     30-35       7
## 38317     30-35       7
## 38318     40-50       5
## 38319     50-60       5
## 38320     18-30      10
## 38321     30-35       7
## 38322     30-35       7
## 38323     18-30      10
## 38324     18-30      10
## 38325     35-40       6
## 38326     18-30      10
## 38327     40-50       5
## 38328     18-30      10
## 38329     18-30      10
## 38330     50-60       5
## 38331     30-35       7
## 38332     35-40       6
## 38333     18-30      10
## 38334     18-30      10
## 38335     18-30      10
## 38336     35-40       6
## 38337     18-30      10
## 38338     30-35       7
## 38339     18-30      10
## 38340     18-30      10
## 38341     50-60       5
## 38342     18-30      10
## 38343     18-30      10
## 38344     18-30      10
## 38345     30-35       7
## 38346     18-30      10
## 38347     18-30      10
## 38348     18-30      10
## 38349     18-30      10
## 38350     18-30      10
## 38351     18-30      10
## 38352     18-30      10
## 38353     40-50       5
## 38354     30-35       7
## 38355     30-35       7
## 38356     40-50       5
## 38357     18-30      10
## 38358     35-40       6
## 38359     18-30      10
## 38360     18-30      10
## 38361     40-50       5
## 38362     40-50       5
## 38363     35-40       6
## 38364     18-30      10
## 38365     40-50       5
## 38366     18-30      10
## 38367     18-30      10
## 38368     18-30      10
## 38369     40-50       5
## 38370     18-30      10
## 38371     18-30      10
## 38372     18-30      10
## 38373     18-30      10
## 38374     18-30      10
## 38375     18-30      10
## 38376     18-30      10
## 38377     30-35       7
## 38378     18-30      10
## 38379     18-30      10
## 38380     30-35       7
## 38381     18-30      10
## 38382     30-35       7
## 38383     30-35       7
## 38384     40-50       5
## 38385     18-30      10
## 38386     18-30      10
## 38387     18-30      10
## 38388     35-40       6
## 38389     18-30      10
## 38390     30-35       7
## 38391     18-30      10
## 38392     18-30      10
## 38393     30-35       7
## 38394     18-30      10
## 38395     30-35       7
## 38396     18-30      10
## 38397     30-35       7
## 38398     18-30      10
## 38399     30-35       7
## 38400     18-30      10
## 38401     18-30      10
## 38402     40-50       5
## 38403     18-30      10
## 38404     18-30      10
## 38405     40-50       5
## 38406     18-30      10
## 38407     50-60       5
## 38408     18-30      10
## 38409     18-30      10
## 38410     18-30      10
## 38411     18-30      10
## 38412     18-30      10
## 38413     18-30      10
## 38414     18-30      10
## 38415     18-30      10
## 38416     18-30      10
## 38417     35-40       6
## 38418     18-30      10
## 38419     18-30      10
## 38420     35-40       6
## 38421     18-30      10
## 38422     18-30      10
## 38423     35-40       6
## 38424     18-30      10
## 38425     18-30      10
## 38426     50-60       5
## 38427     35-40       6
## 38428     18-30      10
## 38429     18-30      10
## 38430     30-35       7
## 38431     18-30      10
## 38432     18-30      10
## 38433     18-30      10
## 38434     18-30      10
## 38435     18-30      10
## 38436     18-30      10
## 38437     18-30      10
## 38438     18-30      10
## 38439     18-30      10
## 38440     18-30      10
## 38441     18-30      10
## 38442     40-50       5
## 38443     18-30      10
## 38444     30-35       7
## 38445     40-50       5
## 38446     18-30      10
## 38447     18-30      10
## 38448     18-30      10
## 38449     40-50       5
## 38450     35-40       6
## 38451     40-50       5
## 38452     30-35       7
## 38453     18-30      10
## 38454     18-30      10
## 38455     18-30      10
## 38456     18-30      10
## 38457     30-35       7
## 38458     18-30      10
## 38459     18-30      10
## 38460     50-60       5
## 38461     35-40       6
## 38462     18-30      10
## 38463     18-30      10
## 38464     18-30      10
## 38465     18-30      10
## 38466     18-30      10
## 38467     35-40       6
## 38468     18-30      10
## 38469     18-30      10
## 38470     18-30      10
## 38471     18-30      10
## 38472     18-30      10
## 38473     18-30      10
## 38474     30-35       7
## 38475     18-30      10
## 38476     35-40       6
## 38477     35-40       6
## 38478     35-40       6
## 38479     35-40       6
## 38480     18-30      10
## 38481     18-30      10
## 38482     35-40       6
## 38483     18-30      10
## 38484     18-30      10
## 38485     30-35       7
## 38486     35-40       6
## 38487     40-50       5
## 38488     30-35       7
## 38489     18-30      10
## 38490     18-30      10
## 38491     18-30      10
## 38492     35-40       6
## 38493     30-35       7
## 38494     35-40       6
## 38495     40-50       5
## 38496     18-30      10
## 38497     30-35       7
## 38498     18-30      10
## 38499     30-35       7
## 38500     18-30      10
## 38501     18-30      10
## 38502     40-50       5
## 38503     18-30      10
## 38504     30-35       7
## 38505     30-35       7
## 38506     18-30      10
## 38507     18-30      10
## 38508     18-30      10
## 38509     18-30      10
## 38510     30-35       7
## 38511     18-30      10
## 38512     30-35       7
## 38513     18-30      10
## 38514       65+       4
## 38515     18-30      10
## 38516     35-40       6
## 38517     18-30      10
## 38518     18-30      10
## 38519     18-30      10
## 38520     18-30      10
## 38521       65+       4
## 38522     18-30      10
## 38523     18-30      10
## 38524     18-30      10
## 38525     18-30      10
## 38526     18-30      10
## 38527     18-30      10
## 38528     18-30      10
## 38529     18-30      10
## 38530     18-30      10
## 38531     18-30      10
## 38532     18-30      10
## 38533     40-50       5
## 38534     18-30      10
## 38535     35-40       6
## 38536     50-60       5
## 38537     35-40       6
## 38538     18-30      10
## 38539     18-30      10
## 38540     18-30      10
## 38541     18-30      10
## 38542     35-40       6
## 38543     40-50       5
## 38544     18-30      10
## 38545     30-35       7
## 38546     30-35       7
## 38547     30-35       7
## 38548     18-30      10
## 38549     18-30      10
## 38550     18-30      10
## 38551     18-30      10
## 38552     35-40       6
## 38553     35-40       6
## 38554     40-50       5
## 38555     18-30      10
## 38556     30-35       7
## 38557     35-40       6
## 38558     18-30      10
## 38559     18-30      10
## 38560     18-30      10
## 38561     35-40       6
## 38562     18-30      10
## 38563     35-40       6
## 38564     18-30      10
## 38565     18-30      10
## 38566     30-35       7
## 38567     50-60       5
## 38568     40-50       5
## 38569     30-35       7
## 38570     30-35       7
## 38571     30-35       7
## 38572     30-35       7
## 38573     18-30      10
## 38574     18-30      10
## 38575     40-50       5
## 38576     18-30      10
## 38577     18-30      10
## 38578     18-30      10
## 38579     18-30      10
## 38580     18-30      10
## 38581     18-30      10
## 38582     30-35       7
## 38583     30-35       7
## 38584     18-30      10
## 38585     18-30      10
## 38586     40-50       5
## 38587     18-30      10
## 38588     18-30      10
## 38589     40-50       5
## 38590     18-30      10
## 38591     30-35       7
## 38592     18-30      10
## 38593     30-35       7
## 38594     18-30      10
## 38595     18-30      10
## 38596     18-30      10
## 38597     18-30      10
## 38598     35-40       6
## 38599     50-60       5
## 38600     30-35       7
## 38601     40-50       5
## 38602     30-35       7
## 38603     18-30      10
## 38604     18-30      10
## 38605     30-35       7
## 38606     18-30      10
## 38607     18-30      10
## 38608     30-35       7
## 38609     18-30      10
## 38610     18-30      10
## 38611     30-35       7
## 38612     18-30      10
## 38613     18-30      10
## 38614     18-30      10
## 38615     40-50       5
## 38616     18-30      10
## 38617     40-50       5
## 38618     18-30      10
## 38619     18-30      10
## 38620     30-35       7
## 38621     18-30      10
## 38622     40-50       5
## 38623     18-30      10
## 38624     40-50       5
## 38625     18-30      10
## 38626     18-30      10
## 38627     30-35       7
## 38628     18-30      10
## 38629     18-30      10
## 38630     50-60       5
## 38631     18-30      10
## 38632     18-30      10
## 38633     50-60       5
## 38634     18-30      10
## 38635     18-30      10
## 38636     35-40       6
## 38637     18-30      10
## 38638     40-50       5
## 38639     18-30      10
## 38640     18-30      10
## 38641     35-40       6
## 38642     50-60       5
## 38643     18-30      10
## 38644     18-30      10
## 38645     18-30      10
## 38646     30-35       7
## 38647     35-40       6
## 38648     18-30      10
## 38649     30-35       7
## 38650     18-30      10
## 38651     18-30      10
## 38652     18-30      10
## 38653     18-30      10
## 38654     18-30      10
## 38655     50-60       5
## 38656     50-60       5
## 38657     18-30      10
## 38658     40-50       5
## 38659     18-30      10
## 38660     35-40       6
## 38661     40-50       5
## 38662     18-30      10
## 38663     18-30      10
## 38664     50-60       5
## 38665     18-30      10
## 38666     18-30      10
## 38667     18-30      10
## 38668     35-40       6
## 38669     18-30      10
## 38670     30-35       7
## 38671     35-40       6
## 38672     50-60       5
## 38673     40-50       5
## 38674     18-30      10
## 38675     40-50       5
## 38676     18-30      10
## 38677     18-30      10
## 38678     40-50       5
## 38679     18-30      10
## 38680     18-30      10
## 38681     18-30      10
## 38682     18-30      10
## 38683     18-30      10
## 38684       65+       4
## 38685     18-30      10
## 38686     30-35       7
## 38687     18-30      10
## 38688     50-60       5
## 38689     40-50       5
## 38690     30-35       7
## 38691     30-35       7
## 38692     18-30      10
## 38693     18-30      10
## 38694     35-40       6
## 38695     35-40       6
## 38696     18-30      10
## 38697     18-30      10
## 38698     18-30      10
## 38699     18-30      10
## 38700     18-30      10
## 38701     18-30      10
## 38702     30-35       7
## 38703     18-30      10
## 38704       65+       4
## 38705     18-30      10
## 38706     30-35       7
## 38707     40-50       5
## 38708     18-30      10
## 38709       65+       4
## 38710     30-35       7
## 38711     35-40       6
## 38712     18-30      10
## 38713     35-40       6
## 38714     40-50       5
## 38715     18-30      10
## 38716     18-30      10
## 38717     18-30      10
## 38718     18-30      10
## 38719     18-30      10
## 38720     18-30      10
## 38721     18-30      10
## 38722     30-35       7
## 38723     18-30      10
## 38724     18-30      10
## 38725     18-30      10
## 38726     18-30      10
## 38727     18-30      10
## 38728     35-40       6
## 38729     30-35       7
## 38730     18-30      10
## 38731     30-35       7
## 38732     30-35       7
## 38733     35-40       6
## 38734     18-30      10
## 38735     35-40       6
## 38736     18-30      10
## 38737     40-50       5
## 38738     18-30      10
## 38739     18-30      10
## 38740       65+       4
## 38741     18-30      10
## 38742     18-30      10
## 38743     18-30      10
## 38744     18-30      10
## 38745     18-30      10
## 38746     18-30      10
## 38747     18-30      10
## 38748     30-35       7
## 38749     18-30      10
## 38750     18-30      10
## 38751     18-30      10
## 38752     30-35       7
## 38753     30-35       7
## 38754     18-30      10
## 38755     18-30      10
## 38756     35-40       6
## 38757     30-35       7
## 38758     18-30      10
## 38759     30-35       7
## 38760     18-30      10
## 38761     50-60       5
## 38762     30-35       7
## 38763     18-30      10
## 38764     18-30      10
## 38765     18-30      10
## 38766     18-30      10
## 38767     18-30      10
## 38768     18-30      10
## 38769     18-30      10
## 38770     35-40       6
## 38771     30-35       7
## 38772     18-30      10
## 38773     18-30      10
## 38774     18-30      10
## 38775     30-35       7
## 38776     18-30      10
## 38777     18-30      10
## 38778     35-40       6
## 38779     35-40       6
## 38780     18-30      10
## 38781     30-35       7
## 38782     30-35       7
## 38783     18-30      10
## 38784     30-35       7
## 38785     18-30      10
## 38786     18-30      10
## 38787     18-30      10
## 38788     30-35       7
## 38789     40-50       5
## 38790     30-35       7
## 38791     30-35       7
## 38792       65+       4
## 38793     30-35       7
## 38794     18-30      10
## 38795     30-35       7
## 38796     40-50       5
## 38797     35-40       6
## 38798     40-50       5
## 38799     18-30      10
## 38800     18-30      10
## 38801     18-30      10
## 38802     18-30      10
## 38803     30-35       7
## 38804     30-35       7
## 38805     18-30      10
## 38806     40-50       5
## 38807       65+       4
## 38808     18-30      10
## 38809     18-30      10
## 38810       65+       4
## 38811     50-60       5
## 38812     18-30      10
## 38813     18-30      10
## 38814     18-30      10
## 38815     30-35       7
## 38816       65+       4
## 38817     30-35       7
## 38818     18-30      10
## 38819     40-50       5
## 38820     40-50       5
## 38821     35-40       6
## 38822     35-40       6
## 38823     30-35       7
## 38824     18-30      10
## 38825     18-30      10
## 38826     50-60       5
## 38827     18-30      10
## 38828     40-50       5
## 38829     30-35       7
## 38830     40-50       5
## 38831     18-30      10
## 38832     30-35       7
## 38833     35-40       6
## 38834     18-30      10
## 38835     35-40       6
## 38836     18-30      10
## 38837     35-40       6
## 38838     35-40       6
## 38839     18-30      10
## 38840     18-30      10
## 38841     18-30      10
## 38842     40-50       5
## 38843     18-30      10
## 38844     18-30      10
## 38845     18-30      10
## 38846     30-35       7
## 38847     18-30      10
## 38848     18-30      10
## 38849     40-50       5
## 38850     30-35       7
## 38851     18-30      10
## 38852     18-30      10
## 38853     40-50       5
## 38854     18-30      10
## 38855     18-30      10
## 38856     35-40       6
## 38857     30-35       7
## 38858     18-30      10
## 38859     35-40       6
## 38860     18-30      10
## 38861     18-30      10
## 38862     18-30      10
## 38863     18-30      10
## 38864     18-30      10
## 38865       65+       4
## 38866     30-35       7
## 38867     35-40       6
## 38868     50-60       5
## 38869     50-60       5
## 38870     50-60       5
## 38871     50-60       5
## 38872     18-30      10
## 38873     40-50       5
## 38874     18-30      10
## 38875     18-30      10
## 38876     35-40       6
## 38877     18-30      10
## 38878     40-50       5
## 38879     18-30      10
## 38880     18-30      10
## 38881     18-30      10
## 38882     30-35       7
## 38883     18-30      10
## 38884     40-50       5
## 38885     35-40       6
## 38886     30-35       7
## 38887     18-30      10
## 38888     40-50       5
## 38889     18-30      10
## 38890     18-30      10
## 38891     18-30      10
## 38892     18-30      10
## 38893     18-30      10
## 38894     18-30      10
## 38895     18-30      10
## 38896     18-30      10
## 38897     18-30      10
## 38898     30-35       7
## 38899     18-30      10
## 38900     18-30      10
## 38901     40-50       5
## 38902     18-30      10
## 38903     50-60       5
## 38904     40-50       5
## 38905     50-60       5
## 38906     30-35       7
## 38907     18-30      10
## 38908     18-30      10
## 38909     30-35       7
## 38910     30-35       7
## 38911     18-30      10
## 38912     30-35       7
## 38913     30-35       7
## 38914     18-30      10
## 38915     50-60       5
## 38916     18-30      10
## 38917     18-30      10
## 38918     40-50       5
## 38919     40-50       5
## 38920     18-30      10
## 38921     18-30      10
## 38922     35-40       6
## 38923     18-30      10
## 38924     18-30      10
## 38925     18-30      10
## 38926     40-50       5
## 38927     35-40       6
## 38928     18-30      10
## 38929     18-30      10
## 38930     18-30      10
## 38931     50-60       5
## 38932     18-30      10
## 38933     18-30      10
## 38934     18-30      10
## 38935     18-30      10
## 38936     35-40       6
## 38937     35-40       6
## 38938     18-30      10
## 38939     35-40       6
## 38940     30-35       7
## 38941     18-30      10
## 38942     35-40       6
## 38943       65+       4
## 38944     40-50       5
## 38945     18-30      10
## 38946     30-35       7
## 38947     35-40       6
## 38948     18-30      10
## 38949     18-30      10
## 38950     40-50       5
## 38951     40-50       5
## 38952     50-60       5
## 38953     18-30      10
## 38954       65+       4
## 38955     50-60       5
## 38956     18-30      10
## 38957     30-35       7
## 38958     18-30      10
## 38959     18-30      10
## 38960     18-30      10
## 38961     40-50       5
## 38962     18-30      10
## 38963     35-40       6
## 38964     30-35       7
## 38965     18-30      10
## 38966     50-60       5
## 38967     40-50       5
## 38968     35-40       6
## 38969     18-30      10
## 38970     18-30      10
## 38971     35-40       6
## 38972     18-30      10
## 38973     30-35       7
## 38974     18-30      10
## 38975     18-30      10
## 38976     50-60       5
## 38977     35-40       6
## 38978     30-35       7
## 38979     40-50       5
## 38980     18-30      10
## 38981     40-50       5
## 38982     18-30      10
## 38983     35-40       6
## 38984     40-50       5
## 38985     35-40       6
## 38986     18-30      10
## 38987     18-30      10
## 38988     18-30      10
## 38989     18-30      10
## 38990     18-30      10
## 38991     18-30      10
## 38992     18-30      10
## 38993     35-40       6
## 38994     18-30      10
## 38995     18-30      10
## 38996     50-60       5
## 38997     40-50       5
## 38998     35-40       6
## 38999     18-30      10
## 39000     18-30      10
## 39001     18-30      10
## 39002     50-60       5
## 39003       65+       4
## 39004     30-35       7
## 39005     30-35       7
## 39006     18-30      10
## 39007     30-35       7
## 39008     30-35       7
## 39009     18-30      10
## 39010     18-30      10
## 39011     18-30      10
## 39012     18-30      10
## 39013     18-30      10
## 39014     30-35       7
## 39015       65+       4
## 39016     18-30      10
## 39017     18-30      10
## 39018     50-60       5
## 39019     18-30      10
## 39020     18-30      10
## 39021     18-30      10
## 39022     30-35       7
## 39023     35-40       6
## 39024     35-40       6
## 39025     35-40       6
## 39026     18-30      10
## 39027     18-30      10
## 39028     18-30      10
## 39029       65+       4
## 39030     50-60       5
## 39031     40-50       5
## 39032     18-30      10
## 39033     18-30      10
## 39034     18-30      10
## 39035     18-30      10
## 39036     50-60       5
## 39037     18-30      10
## 39038     18-30      10
## 39039     18-30      10
## 39040     35-40       6
## 39041     18-30      10
## 39042     30-35       7
## 39043     40-50       5
## 39044     18-30      10
## 39045     18-30      10
## 39046     40-50       5
## 39047     18-30      10
## 39048     18-30      10
## 39049     35-40       6
## 39050     30-35       7
## 39051     30-35       7
## 39052     18-30      10
## 39053     30-35       7
## 39054     18-30      10
## 39055     30-35       7
## 39056     18-30      10
## 39057     35-40       6
## 39058     40-50       5
## 39059     40-50       5
## 39060     18-30      10
## 39061     18-30      10
## 39062     18-30      10
## 39063     50-60       5
## 39064     18-30      10
## 39065     30-35       7
## 39066     35-40       6
## 39067     35-40       6
## 39068     18-30      10
## 39069     35-40       6
## 39070     18-30      10
## 39071     18-30      10
## 39072     35-40       6
## 39073     18-30      10
## 39074     18-30      10
## 39075     18-30      10
## 39076     40-50       5
## 39077     30-35       7
## 39078     30-35       7
## 39079     30-35       7
## 39080     18-30      10
## 39081     18-30      10
## 39082     18-30      10
## 39083     40-50       5
## 39084     40-50       5
## 39085     35-40       6
## 39086     18-30      10
## 39087     30-35       7
## 39088     40-50       5
## 39089       65+       4
## 39090     18-30      10
## 39091     30-35       7
## 39092     18-30      10
## 39093     35-40       6
## 39094       65+       4
## 39095     18-30      10
## 39096     18-30      10
## 39097       65+       4
## 39098     50-60       5
## 39099     18-30      10
## 39100     40-50       5
## 39101     18-30      10
## 39102     30-35       7
## 39103     18-30      10
## 39104     18-30      10
## 39105     18-30      10
## 39106     18-30      10
## 39107     50-60       5
## 39108     18-30      10
## 39109     30-35       7
## 39110     18-30      10
## 39111     50-60       5
## 39112     30-35       7
## 39113     18-30      10
## 39114     18-30      10
## 39115     35-40       6
## 39116       65+       4
## 39117     35-40       6
## 39118     18-30      10
## 39119     18-30      10
## 39120     18-30      10
## 39121     18-30      10
## 39122     30-35       7
## 39123     30-35       7
## 39124     18-30      10
## 39125     18-30      10
## 39126     35-40       6
## 39127     35-40       6
## 39128     18-30      10
## 39129     18-30      10
## 39130     35-40       6
## 39131     30-35       7
## 39132     18-30      10
## 39133     30-35       7
## 39134     18-30      10
## 39135     30-35       7
## 39136     35-40       6
## 39137     18-30      10
## 39138     35-40       6
## 39139     18-30      10
## 39140     30-35       7
## 39141     18-30      10
## 39142     18-30      10
## 39143     35-40       6
## 39144     18-30      10
## 39145     18-30      10
## 39146     18-30      10
## 39147     18-30      10
## 39148     35-40       6
## 39149     18-30      10
## 39150     40-50       5
## 39151     30-35       7
## 39152     18-30      10
## 39153     30-35       7
## 39154     40-50       5
## 39155     18-30      10
## 39156     18-30      10
## 39157     30-35       7
## 39158     18-30      10
## 39159     18-30      10
## 39160     18-30      10
## 39161     30-35       7
## 39162     18-30      10
## 39163     18-30      10
## 39164     18-30      10
## 39165     35-40       6
## 39166       65+       4
## 39167     18-30      10
## 39168     18-30      10
## 39169     30-35       7
## 39170     18-30      10
## 39171     18-30      10
## 39172     40-50       5
## 39173     18-30      10
## 39174     18-30      10
## 39175     40-50       5
## 39176     35-40       6
## 39177     18-30      10
## 39178     35-40       6
## 39179     18-30      10
## 39180     18-30      10
## 39181     18-30      10
## 39182     18-30      10
## 39183     18-30      10
## 39184     18-30      10
## 39185     18-30      10
## 39186     18-30      10
## 39187     18-30      10
## 39188     18-30      10
## 39189     18-30      10
## 39190     35-40       6
## 39191     35-40       6
## 39192     50-60       5
## 39193     18-30      10
## 39194     18-30      10
## 39195     18-30      10
## 39196     30-35       7
## 39197     40-50       5
## 39198     18-30      10
## 39199     30-35       7
## 39200     30-35       7
## 39201     40-50       5
## 39202     18-30      10
## 39203     18-30      10
## 39204     18-30      10
## 39205     18-30      10
## 39206     18-30      10
## 39207     18-30      10
## 39208     30-35       7
## 39209     18-30      10
## 39210     30-35       7
## 39211     40-50       5
## 39212     40-50       5
## 39213     18-30      10
## 39214     18-30      10
## 39215     18-30      10
## 39216     30-35       7
## 39217     18-30      10
## 39218     18-30      10
## 39219     30-35       7
## 39220     18-30      10
## 39221     30-35       7
## 39222     35-40       6
## 39223     18-30      10
## 39224     18-30      10
## 39225     18-30      10
## 39226     30-35       7
## 39227     40-50       5
## 39228     40-50       5
## 39229     30-35       7
## 39230     40-50       5
## 39231     50-60       5
## 39232     40-50       5
## 39233     30-35       7
## 39234     30-35       7
## 39235     18-30      10
## 39236     18-30      10
## 39237     18-30      10
## 39238     18-30      10
## 39239     40-50       5
## 39240     40-50       5
## 39241     18-30      10
## 39242     18-30      10
## 39243     35-40       6
## 39244     35-40       6
## 39245     18-30      10
## 39246     40-50       5
## 39247     35-40       6
## 39248     30-35       7
## 39249     35-40       6
## 39250     18-30      10
## 39251     18-30      10
## 39252     18-30      10
## 39253     18-30      10
## 39254     30-35       7
## 39255     18-30      10
## 39256     30-35       7
## 39257     18-30      10
## 39258     30-35       7
## 39259     18-30      10
## 39260     18-30      10
## 39261     18-30      10
## 39262     18-30      10
## 39263     18-30      10
## 39264     30-35       7
## 39265     18-30      10
## 39266     18-30      10
## 39267     35-40       6
## 39268     18-30      10
## 39269     18-30      10
## 39270     18-30      10
## 39271     18-30      10
## 39272     40-50       5
## 39273     40-50       5
## 39274     18-30      10
## 39275     18-30      10
## 39276     40-50       5
## 39277     40-50       5
## 39278     40-50       5
## 39279     18-30      10
## 39280     30-35       7
## 39281     30-35       7
## 39282     18-30      10
## 39283     18-30      10
## 39284     18-30      10
## 39285     35-40       6
## 39286     18-30      10
## 39287     18-30      10
## 39288     18-30      10
## 39289     18-30      10
## 39290     18-30      10
## 39291     18-30      10
## 39292     18-30      10
## 39293     40-50       5
## 39294     18-30      10
## 39295     18-30      10
## 39296     18-30      10
## 39297     18-30      10
## 39298     18-30      10
## 39299     35-40       6
## 39300     18-30      10
## 39301     30-35       7
## 39302     30-35       7
## 39303     30-35       7
## 39304     35-40       6
## 39305     18-30      10
## 39306     50-60       5
## 39307     18-30      10
## 39308     18-30      10
## 39309     18-30      10
## 39310     18-30      10
## 39311     18-30      10
## 39312     18-30      10
## 39313     40-50       5
## 39314     50-60       5
## 39315     35-40       6
## 39316     18-30      10
## 39317     18-30      10
## 39318     18-30      10
## 39319     18-30      10
## 39320     35-40       6
## 39321     35-40       6
## 39322     18-30      10
## 39323     18-30      10
## 39324     18-30      10
## 39325     18-30      10
## 39326     18-30      10
## 39327     18-30      10
## 39328     35-40       6
## 39329     18-30      10
## 39330     35-40       6
## 39331       65+       4
## 39332     18-30      10
## 39333     40-50       5
## 39334     18-30      10
## 39335     30-35       7
## 39336     18-30      10
## 39337     50-60       5
## 39338     18-30      10
## 39339     35-40       6
## 39340     30-35       7
## 39341     18-30      10
## 39342     18-30      10
## 39343     40-50       5
## 39344     40-50       5
## 39345     50-60       5
## 39346     18-30      10
## 39347     50-60       5
## 39348     40-50       5
## 39349     18-30      10
## 39350     30-35       7
## 39351     30-35       7
## 39352     18-30      10
## 39353     18-30      10
## 39354     18-30      10
## 39355     18-30      10
## 39356     18-30      10
## 39357     18-30      10
## 39358     18-30      10
## 39359     18-30      10
## 39360     18-30      10
## 39361     40-50       5
## 39362     18-30      10
## 39363     35-40       6
## 39364     35-40       6
## 39365     30-35       7
## 39366     18-30      10
## 39367     30-35       7
## 39368     50-60       5
## 39369       65+       4
## 39370     50-60       5
## 39371     18-30      10
## 39372     40-50       5
## 39373     18-30      10
## 39374     18-30      10
## 39375     35-40       6
## 39376     18-30      10
## 39377     35-40       6
## 39378     30-35       7
## 39379     18-30      10
## 39380     18-30      10
## 39381     18-30      10
## 39382     18-30      10
## 39383     18-30      10
## 39384     18-30      10
## 39385     18-30      10
## 39386     18-30      10
## 39387     30-35       7
## 39388     50-60       5
## 39389     18-30      10
## 39390     18-30      10
## 39391     18-30      10
## 39392     50-60       5
## 39393     18-30      10
## 39394     30-35       7
## 39395     18-30      10
## 39396     35-40       6
## 39397     18-30      10
## 39398     18-30      10
## 39399     40-50       5
## 39400     18-30      10
## 39401     30-35       7
## 39402     18-30      10
## 39403     18-30      10
## 39404     35-40       6
## 39405     18-30      10
## 39406     40-50       5
## 39407     18-30      10
## 39408     18-30      10
## 39409     50-60       5
## 39410     18-30      10
## 39411     30-35       7
## 39412     50-60       5
## 39413     18-30      10
## 39414     18-30      10
## 39415     18-30      10
## 39416     18-30      10
## 39417       65+       4
## 39418     18-30      10
## 39419     50-60       5
## 39420     40-50       5
## 39421     18-30      10
## 39422     18-30      10
## 39423     18-30      10
## 39424     18-30      10
## 39425     35-40       6
## 39426     40-50       5
## 39427     18-30      10
## 39428     35-40       6
## 39429     40-50       5
## 39430     40-50       5
## 39431     30-35       7
## 39432     18-30      10
## 39433     35-40       6
## 39434     40-50       5
## 39435     30-35       7
## 39436     30-35       7
## 39437     30-35       7
## 39438     18-30      10
## 39439     18-30      10
## 39440     30-35       7
## 39441     30-35       7
## 39442     18-30      10
## 39443     40-50       5
## 39444     50-60       5
## 39445     18-30      10
## 39446     50-60       5
## 39447     18-30      10
## 39448     18-30      10
## 39449       65+       4
## 39450     30-35       7
## 39451     18-30      10
## 39452     18-30      10
## 39453     35-40       6
## 39454     18-30      10
## 39455     18-30      10
## 39456     30-35       7
## 39457     18-30      10
## 39458     40-50       5
## 39459     30-35       7
## 39460     18-30      10
## 39461     18-30      10
## 39462     18-30      10
## 39463     30-35       7
## 39464     35-40       6
## 39465     30-35       7
## 39466     18-30      10
## 39467     30-35       7
## 39468     40-50       5
## 39469     18-30      10
## 39470     18-30      10
## 39471     30-35       7
## 39472       65+       4
## 39473     30-35       7
## 39474       65+       4
## 39475     18-30      10
## 39476     35-40       6
## 39477     18-30      10
## 39478     30-35       7
## 39479     30-35       7
## 39480     40-50       5
## 39481     35-40       6
## 39482     18-30      10
## 39483     18-30      10
## 39484     30-35       7
## 39485     18-30      10
## 39486     18-30      10
## 39487     18-30      10
## 39488     40-50       5
## 39489     18-30      10
## 39490     18-30      10
## 39491     18-30      10
## 39492     35-40       6
## 39493     35-40       6
## 39494     18-30      10
## 39495       65+       4
## 39496     35-40       6
## 39497     18-30      10
## 39498     35-40       6
## 39499     40-50       5
## 39500     18-30      10
## 39501     18-30      10
## 39502     18-30      10
## 39503     18-30      10
## 39504     18-30      10
## 39505     30-35       7
## 39506     18-30      10
## 39507     35-40       6
## 39508     35-40       6
## 39509     30-35       7
## 39510     40-50       5
## 39511     18-30      10
## 39512     40-50       5
## 39513     18-30      10
## 39514     30-35       7
## 39515     35-40       6
## 39516     30-35       7
## 39517     18-30      10
## 39518     30-35       7
## 39519     35-40       6
## 39520     40-50       5
## 39521     18-30      10
## 39522     18-30      10
## 39523     18-30      10
## 39524     18-30      10
## 39525     35-40       6
## 39526     50-60       5
## 39527     18-30      10
## 39528     30-35       7
## 39529     18-30      10
## 39530     40-50       5
## 39531     18-30      10
## 39532     18-30      10
## 39533     18-30      10
## 39534     18-30      10
## 39535     18-30      10
## 39536     30-35       7
## 39537     40-50       5
## 39538     35-40       6
## 39539     18-30      10
## 39540     18-30      10
## 39541     35-40       6
## 39542     35-40       6
## 39543       65+       4
## 39544     30-35       7
## 39545     18-30      10
## 39546     40-50       5
## 39547     40-50       5
## 39548     40-50       5
## 39549     30-35       7
## 39550     18-30      10
## 39551     18-30      10
## 39552     18-30      10
## 39553     18-30      10
## 39554     40-50       5
## 39555     18-30      10
## 39556     18-30      10
## 39557     18-30      10
## 39558     35-40       6
## 39559     18-30      10
## 39560     30-35       7
## 39561     30-35       7
## 39562     30-35       7
## 39563     18-30      10
## 39564     18-30      10
## 39565     18-30      10
## 39566     35-40       6
## 39567     18-30      10
## 39568     18-30      10
## 39569     30-35       7
## 39570     50-60       5
## 39571     30-35       7
## 39572     30-35       7
## 39573     18-30      10
## 39574     18-30      10
## 39575     35-40       6
## 39576     40-50       5
## 39577     18-30      10
## 39578     18-30      10
## 39579     40-50       5
## 39580     40-50       5
## 39581     18-30      10
## 39582     40-50       5
## 39583     35-40       6
## 39584     18-30      10
## 39585     35-40       6
## 39586     18-30      10
## 39587     18-30      10
## 39588     18-30      10
## 39589     18-30      10
## 39590     18-30      10
## 39591     30-35       7
## 39592     30-35       7
## 39593     35-40       6
## 39594     18-30      10
## 39595     18-30      10
## 39596     35-40       6
## 39597     18-30      10
## 39598     30-35       7
## 39599     30-35       7
## 39600     18-30      10
## 39601     18-30      10
## 39602     40-50       5
## 39603     30-35       7
## 39604     18-30      10
## 39605     30-35       7
## 39606     18-30      10
## 39607     30-35       7
## 39608     30-35       7
## 39609     30-35       7
## 39610     18-30      10
## 39611     18-30      10
## 39612     35-40       6
## 39613     50-60       5
## 39614     18-30      10
## 39615     40-50       5
## 39616     18-30      10
## 39617     30-35       7
## 39618     35-40       6
## 39619     40-50       5
## 39620     18-30      10
## 39621     18-30      10
## 39622     18-30      10
## 39623     18-30      10
## 39624     30-35       7
## 39625     18-30      10
## 39626     35-40       6
## 39627     18-30      10
## 39628     35-40       6
## 39629     18-30      10
## 39630     18-30      10
## 39631     30-35       7
## 39632     40-50       5
## 39633     18-30      10
## 39634     18-30      10
## 39635     18-30      10
## 39636     30-35       7
## 39637     18-30      10
## 39638     50-60       5
## 39639     18-30      10
## 39640     18-30      10
## 39641     18-30      10
## 39642     18-30      10
## 39643     18-30      10
## 39644     50-60       5
## 39645     40-50       5
## 39646     18-30      10
## 39647     18-30      10
## 39648     40-50       5
## 39649     35-40       6
## 39650     18-30      10
## 39651     18-30      10
## 39652     50-60       5
## 39653     18-30      10
## 39654     18-30      10
## 39655     18-30      10
## 39656     18-30      10
## 39657     18-30      10
## 39658     18-30      10
## 39659     18-30      10
## 39660     18-30      10
## 39661     30-35       7
## 39662     18-30      10
## 39663     50-60       5
## 39664     35-40       6
## 39665     30-35       7
## 39666     30-35       7
## 39667       65+       4
## 39668     18-30      10
## 39669     30-35       7
## 39670     18-30      10
## 39671     18-30      10
## 39672     40-50       5
## 39673     18-30      10
## 39674     30-35       7
## 39675     18-30      10
## 39676     18-30      10
## 39677     40-50       5
## 39678     18-30      10
## 39679     18-30      10
## 39680     30-35       7
## 39681     18-30      10
## 39682     18-30      10
## 39683     18-30      10
## 39684     18-30      10
## 39685     18-30      10
## 39686     40-50       5
## 39687     30-35       7
## 39688     18-30      10
## 39689     18-30      10
## 39690     18-30      10
## 39691     18-30      10
## 39692     30-35       7
## 39693     18-30      10
## 39694     40-50       5
## 39695     35-40       6
## 39696     35-40       6
## 39697     18-30      10
## 39698     30-35       7
## 39699     35-40       6
## 39700     18-30      10
## 39701     30-35       7
## 39702       65+       4
## 39703     18-30      10
## 39704     18-30      10
## 39705     30-35       7
## 39706     35-40       6
## 39707     18-30      10
## 39708     18-30      10
## 39709     40-50       5
## 39710     18-30      10
## 39711     18-30      10
## 39712     30-35       7
## 39713     18-30      10
## 39714     18-30      10
## 39715     18-30      10
## 39716     18-30      10
## 39717     40-50       5
## 39718     18-30      10
## 39719     18-30      10
## 39720     18-30      10
## 39721     35-40       6
## 39722     50-60       5
## 39723     18-30      10
## 39724     50-60       5
## 39725     18-30      10
## 39726     18-30      10
## 39727     18-30      10
## 39728     18-30      10
## 39729     50-60       5
## 39730     18-30      10
## 39731     30-35       7
## 39732     35-40       6
## 39733     18-30      10
## 39734     18-30      10
## 39735     40-50       5
## 39736     18-30      10
## 39737     18-30      10
## 39738     18-30      10
## 39739     18-30      10
## 39740       65+       4
## 39741     18-30      10
## 39742     18-30      10
## 39743     18-30      10
## 39744     35-40       6
## 39745     18-30      10
## 39746     18-30      10
## 39747     30-35       7
## 39748     18-30      10
## 39749     30-35       7
## 39750     18-30      10
## 39751     18-30      10
## 39752     40-50       5
## 39753     18-30      10
## 39754     18-30      10
## 39755     18-30      10
## 39756     18-30      10
## 39757     18-30      10
## 39758     18-30      10
## 39759     18-30      10
## 39760     18-30      10
## 39761     35-40       6
## 39762     18-30      10
## 39763     30-35       7
## 39764     18-30      10
## 39765     18-30      10
## 39766     18-30      10
## 39767     18-30      10
## 39768     18-30      10
## 39769     35-40       6
## 39770     18-30      10
## 39771     50-60       5
## 39772     18-30      10
## 39773     50-60       5
## 39774     40-50       5
## 39775     40-50       5
## 39776     30-35       7
## 39777     50-60       5
## 39778     18-30      10
## 39779     30-35       7
## 39780     18-30      10
## 39781     35-40       6
## 39782     35-40       6
## 39783     30-35       7
## 39784     18-30      10
## 39785     50-60       5
## 39786     18-30      10
## 39787     18-30      10
## 39788     35-40       6
## 39789     18-30      10
## 39790     18-30      10
## 39791     18-30      10
## 39792     40-50       5
## 39793     18-30      10
## 39794     18-30      10
## 39795     35-40       6
## 39796     30-35       7
## 39797     35-40       6
## 39798     40-50       5
## 39799     30-35       7
## 39800     18-30      10
## 39801     18-30      10
## 39802     18-30      10
## 39803     18-30      10
## 39804     50-60       5
## 39805     35-40       6
## 39806     18-30      10
## 39807     35-40       6
## 39808     30-35       7
## 39809     30-35       7
## 39810     35-40       6
## 39811     18-30      10
## 39812     30-35       7
## 39813     18-30      10
## 39814     35-40       6
## 39815     40-50       5
## 39816     18-30      10
## 39817     18-30      10
## 39818     18-30      10
## 39819     50-60       5
## 39820     35-40       6
## 39821       65+       4
## 39822     30-35       7
## 39823     18-30      10
## 39824     18-30      10
## 39825     30-35       7
## 39826     40-50       5
## 39827     35-40       6
## 39828     18-30      10
## 39829     18-30      10
## 39830     18-30      10
## 39831     40-50       5
## 39832     18-30      10
## 39833     35-40       6
## 39834     18-30      10
## 39835     18-30      10
## 39836     18-30      10
## 39837     35-40       6
## 39838     18-30      10
## 39839     18-30      10
## 39840     30-35       7
## 39841     18-30      10
## 39842       65+       4
## 39843     30-35       7
## 39844     18-30      10
## 39845     18-30      10
## 39846     40-50       5
## 39847       65+       4
## 39848     18-30      10
## 39849     40-50       5
## 39850     50-60       5
## 39851     35-40       6
## 39852     18-30      10
## 39853       65+       4
## 39854     18-30      10
## 39855     30-35       7
## 39856     18-30      10
## 39857     18-30      10
## 39858     40-50       5
## 39859     50-60       5
## 39860     40-50       5
## 39861     35-40       6
## 39862     50-60       5
## 39863     18-30      10
## 39864     18-30      10
## 39865     30-35       7
## 39866     18-30      10
## 39867     30-35       7
## 39868     18-30      10
## 39869     30-35       7
## 39870     30-35       7
## 39871     40-50       5
## 39872     18-30      10
## 39873     18-30      10
## 39874     18-30      10
## 39875       65+       4
## 39876     40-50       5
## 39877     40-50       5
## 39878     18-30      10
## 39879     18-30      10
## 39880     40-50       5
## 39881     30-35       7
## 39882     18-30      10
## 39883     18-30      10
## 39884     18-30      10
## 39885     40-50       5
## 39886     18-30      10
## 39887     18-30      10
## 39888     18-30      10
## 39889     18-30      10
## 39890     18-30      10
## 39891     30-35       7
## 39892     18-30      10
## 39893     18-30      10
## 39894     50-60       5
## 39895     35-40       6
## 39896     18-30      10
## 39897     18-30      10
## 39898     30-35       7
## 39899     40-50       5
## 39900       65+       4
## 39901     18-30      10
## 39902     18-30      10
## 39903     30-35       7
## 39904     18-30      10
## 39905     18-30      10
## 39906     30-35       7
## 39907     30-35       7
## 39908     18-30      10
## 39909     50-60       5
## 39910     40-50       5
## 39911     18-30      10
## 39912     18-30      10
## 39913     18-30      10
## 39914     18-30      10
## 39915     35-40       6
## 39916     30-35       7
## 39917     18-30      10
## 39918     30-35       7
## 39919     40-50       5
## 39920     18-30      10
## 39921     18-30      10
## 39922     35-40       6
## 39923     18-30      10
## 39924     30-35       7
## 39925     18-30      10
## 39926     18-30      10
## 39927     18-30      10
## 39928     18-30      10
## 39929     30-35       7
## 39930     18-30      10
## 39931     18-30      10
## 39932     18-30      10
## 39933     50-60       5
## 39934     18-30      10
## 39935     50-60       5
## 39936     35-40       6
## 39937     18-30      10
## 39938     18-30      10
## 39939     35-40       6
## 39940     18-30      10
## 39941     18-30      10
## 39942     30-35       7
## 39943     18-30      10
## 39944     30-35       7
## 39945     18-30      10
## 39946     18-30      10
## 39947     18-30      10
## 39948     18-30      10
## 39949     18-30      10
## 39950     18-30      10
## 39951     30-35       7
## 39952     30-35       7
## 39953     18-30      10
## 39954     35-40       6
## 39955     18-30      10
## 39956     18-30      10
## 39957     18-30      10
## 39958     18-30      10
## 39959     18-30      10
## 39960     18-30      10
## 39961     18-30      10
## 39962     35-40       6
## 39963     18-30      10
## 39964     40-50       5
## 39965     18-30      10
## 39966     18-30      10
## 39967     18-30      10
## 39968     40-50       5
## 39969     35-40       6
## 39970     18-30      10
## 39971     30-35       7
## 39972     18-30      10
## 39973     30-35       7
## 39974     35-40       6
## 39975     18-30      10
## 39976     18-30      10
## 39977     30-35       7
## 39978     50-60       5
## 39979     18-30      10
## 39980     40-50       5
## 39981     18-30      10
## 39982     40-50       5
## 39983     30-35       7
## 39984     35-40       6
## 39985     18-30      10
## 39986     18-30      10
## 39987     40-50       5
## 39988     18-30      10
## 39989     18-30      10
## 39990     50-60       5
## 39991     40-50       5
## 39992     18-30      10
## 39993     35-40       6
## 39994     18-30      10
## 39995     30-35       7
## 39996     18-30      10
## 39997     18-30      10
## 39998     30-35       7
## 39999       65+       4
## 40000     18-30      10
## 40001     18-30      10
## 40002     35-40       6
## 40003     18-30      10
## 40004     18-30      10
## 40005     18-30      10
## 40006     30-35       7
## 40007     35-40       6
## 40008     30-35       7
## 40009     40-50       5
## 40010     30-35       7
## 40011     30-35       7
## 40012     40-50       5
## 40013     40-50       5
## 40014     30-35       7
## 40015     30-35       7
## 40016     18-30      10
## 40017     18-30      10
## 40018     50-60       5
## 40019     18-30      10
## 40020     18-30      10
## 40021     18-30      10
## 40022     35-40       6
## 40023     18-30      10
## 40024     50-60       5
## 40025     30-35       7
## 40026     18-30      10
## 40027     35-40       6
## 40028     18-30      10
## 40029     30-35       7
## 40030     35-40       6
## 40031     35-40       6
## 40032     40-50       5
## 40033     18-30      10
## 40034     18-30      10
## 40035     40-50       5
## 40036     35-40       6
## 40037     18-30      10
## 40038     18-30      10
## 40039     40-50       5
## 40040     18-30      10
## 40041     35-40       6
## 40042     18-30      10
## 40043     35-40       6
## 40044     35-40       6
## 40045     30-35       7
## 40046     18-30      10
## 40047     18-30      10
## 40048     18-30      10
## 40049     18-30      10
## 40050     18-30      10
## 40051     40-50       5
## 40052     18-30      10
## 40053     40-50       5
## 40054     35-40       6
## 40055     30-35       7
## 40056     18-30      10
## 40057     18-30      10
## 40058     40-50       5
## 40059     18-30      10
## 40060     18-30      10
## 40061     18-30      10
## 40062     18-30      10
## 40063     30-35       7
## 40064     30-35       7
## 40065     35-40       6
## 40066     18-30      10
## 40067     40-50       5
## 40068     18-30      10
## 40069     35-40       6
## 40070     30-35       7
## 40071     30-35       7
## 40072     18-30      10
## 40073     35-40       6
## 40074     18-30      10
## 40075     18-30      10
## 40076     18-30      10
## 40077     18-30      10
## 40078     30-35       7
## 40079     18-30      10
## 40080     18-30      10
## 40081     30-35       7
## 40082     18-30      10
## 40083     18-30      10
## 40084     30-35       7
## 40085     18-30      10
## 40086     35-40       6
## 40087     30-35       7
## 40088     18-30      10
## 40089     18-30      10
## 40090     35-40       6
## 40091     18-30      10
## 40092     18-30      10
## 40093     30-35       7
## 40094     18-30      10
## 40095     18-30      10
## 40096     18-30      10
## 40097     35-40       6
## 40098     35-40       6
## 40099     18-30      10
## 40100     18-30      10
## 40101     35-40       6
## 40102     40-50       5
## 40103     18-30      10
## 40104     18-30      10
## 40105     18-30      10
## 40106     30-35       7
## 40107     18-30      10
## 40108     18-30      10
## 40109     18-30      10
## 40110     40-50       5
## 40111     18-30      10
## 40112     40-50       5
## 40113     40-50       5
## 40114     30-35       7
## 40115     30-35       7
## 40116     18-30      10
## 40117     30-35       7
## 40118     18-30      10
## 40119     18-30      10
## 40120     18-30      10
## 40121       65+       4
## 40122     18-30      10
## 40123     40-50       5
## 40124     40-50       5
## 40125     18-30      10
## 40126     30-35       7
## 40127     18-30      10
## 40128     18-30      10
## 40129     30-35       7
## 40130     18-30      10
## 40131     30-35       7
## 40132     18-30      10
## 40133     40-50       5
## 40134     18-30      10
## 40135     18-30      10
## 40136     35-40       6
## 40137     35-40       6
## 40138     18-30      10
## 40139     18-30      10
## 40140     18-30      10
## 40141     30-35       7
## 40142     40-50       5
## 40143     35-40       6
## 40144     18-30      10
## 40145     35-40       6
## 40146     40-50       5
## 40147     40-50       5
## 40148     35-40       6
## 40149     18-30      10
## 40150     18-30      10
## 40151     18-30      10
## 40152     18-30      10
## 40153     18-30      10
## 40154     50-60       5
## 40155     35-40       6
## 40156     18-30      10
## 40157     35-40       6
## 40158     50-60       5
## 40159     30-35       7
## 40160     18-30      10
## 40161     50-60       5
## 40162     35-40       6
## 40163     18-30      10
## 40164     30-35       7
## 40165     18-30      10
## 40166     18-30      10
## 40167     18-30      10
## 40168     35-40       6
## 40169     35-40       6
## 40170     18-30      10
## 40171     18-30      10
## 40172     35-40       6
## 40173     50-60       5
## 40174     18-30      10
## 40175     18-30      10
## 40176     30-35       7
## 40177     18-30      10
## 40178     18-30      10
## 40179     50-60       5
## 40180     40-50       5
## 40181     18-30      10
## 40182     18-30      10
## 40183     18-30      10
## 40184     18-30      10
## 40185     30-35       7
## 40186     18-30      10
## 40187     18-30      10
## 40188     18-30      10
## 40189     18-30      10
## 40190     18-30      10
## 40191     35-40       6
## 40192     40-50       5
## 40193     50-60       5
## 40194     18-30      10
## 40195       65+       4
## 40196       65+       4
## 40197       65+       4
## 40198     35-40       6
## 40199     18-30      10
## 40200     30-35       7
## 40201     18-30      10
## 40202     18-30      10
## 40203     18-30      10
## 40204     18-30      10
## 40205     18-30      10
## 40206     18-30      10
## 40207     18-30      10
## 40208     30-35       7
## 40209     30-35       7
## 40210     18-30      10
## 40211     18-30      10
## 40212     30-35       7
## 40213     18-30      10
## 40214     18-30      10
## 40215     35-40       6
## 40216     18-30      10
## 40217     40-50       5
## 40218     18-30      10
## 40219     50-60       5
## 40220     18-30      10
## 40221     40-50       5
## 40222     18-30      10
## 40223     18-30      10
## 40224     35-40       6
## 40225     18-30      10
## 40226     30-35       7
## 40227     30-35       7
## 40228     18-30      10
## 40229     18-30      10
## 40230     30-35       7
## 40231     18-30      10
## 40232     18-30      10
## 40233     18-30      10
## 40234     18-30      10
## 40235     18-30      10
## 40236     18-30      10
## 40237     18-30      10
## 40238     40-50       5
## 40239     18-30      10
## 40240     35-40       6
## 40241       65+       4
## 40242     40-50       5
## 40243     18-30      10
## 40244     30-35       7
## 40245     18-30      10
## 40246     18-30      10
## 40247     30-35       7
## 40248     18-30      10
## 40249     18-30      10
## 40250     18-30      10
## 40251     18-30      10
## 40252     18-30      10
## 40253     40-50       5
## 40254     35-40       6
## 40255     40-50       5
## 40256     18-30      10
## 40257     35-40       6
## 40258     30-35       7
## 40259     35-40       6
## 40260     18-30      10
## 40261     35-40       6
## 40262     18-30      10
## 40263     18-30      10
## 40264     30-35       7
## 40265     30-35       7
## 40266     30-35       7
## 40267     18-30      10
## 40268     18-30      10
## 40269     18-30      10
## 40270     40-50       5
## 40271     35-40       6
## 40272     18-30      10
## 40273     30-35       7
## 40274     18-30      10
## 40275     30-35       7
## 40276     50-60       5
## 40277     18-30      10
## 40278     18-30      10
## 40279     30-35       7
## 40280     35-40       6
## 40281     50-60       5
## 40282     18-30      10
## 40283     18-30      10
## 40284     40-50       5
## 40285     18-30      10
## 40286     18-30      10
## 40287     30-35       7
## 40288     18-30      10
## 40289     50-60       5
## 40290     35-40       6
## 40291     18-30      10
## 40292     30-35       7
## 40293     30-35       7
## 40294     30-35       7
## 40295     30-35       7
## 40296     18-30      10
## 40297     18-30      10
## 40298     18-30      10
## 40299     35-40       6
## 40300     18-30      10
## 40301     18-30      10
## 40302     18-30      10
## 40303     18-30      10
## 40304     18-30      10
## 40305     18-30      10
## 40306     18-30      10
## 40307     18-30      10
## 40308     18-30      10
## 40309     18-30      10
## 40310     18-30      10
## 40311     18-30      10
## 40312     18-30      10
## 40313     40-50       5
## 40314     50-60       5
## 40315     30-35       7
## 40316     40-50       5
## 40317     50-60       5
## 40318     18-30      10
## 40319     30-35       7
## 40320     40-50       5
## 40321     18-30      10
## 40322     18-30      10
## 40323     18-30      10
## 40324     18-30      10
## 40325     18-30      10
## 40326     30-35       7
## 40327     30-35       7
## 40328     30-35       7
## 40329     18-30      10
## 40330     18-30      10
## 40331     18-30      10
## 40332       65+       4
## 40333     30-35       7
## 40334     18-30      10
## 40335     18-30      10
## 40336     18-30      10
## 40337     35-40       6
## 40338     30-35       7
## 40339     18-30      10
## 40340     18-30      10
## 40341     18-30      10
## 40342     18-30      10
## 40343     30-35       7
## 40344     35-40       6
## 40345     18-30      10
## 40346     18-30      10
## 40347     18-30      10
## 40348     18-30      10
## 40349     30-35       7
## 40350     18-30      10
## 40351     18-30      10
## 40352     18-30      10
## 40353     18-30      10
## 40354     18-30      10
## 40355     30-35       7
## 40356     50-60       5
## 40357     30-35       7
## 40358     18-30      10
## 40359     35-40       6
## 40360     18-30      10
## 40361     18-30      10
## 40362     18-30      10
## 40363     30-35       7
## 40364     35-40       6
## 40365     18-30      10
## 40366     18-30      10
## 40367     18-30      10
## 40368     18-30      10
## 40369     18-30      10
## 40370     18-30      10
## 40371     18-30      10
## 40372     18-30      10
## 40373     18-30      10
## 40374     18-30      10
## 40375     30-35       7
## 40376     18-30      10
## 40377     35-40       6
## 40378     18-30      10
## 40379     18-30      10
## 40380     40-50       5
## 40381     40-50       5
## 40382     18-30      10
## 40383     30-35       7
## 40384     18-30      10
## 40385     18-30      10
## 40386     18-30      10
## 40387     18-30      10
## 40388     30-35       7
## 40389     18-30      10
## 40390     40-50       5
## 40391     18-30      10
## 40392     18-30      10
## 40393     18-30      10
## 40394     40-50       5
## 40395     18-30      10
## 40396     18-30      10
## 40397     18-30      10
## 40398     18-30      10
## 40399     35-40       6
## 40400     40-50       5
## 40401     50-60       5
## 40402     18-30      10
## 40403     18-30      10
## 40404     18-30      10
## 40405     18-30      10
## 40406     30-35       7
## 40407     18-30      10
## 40408     18-30      10
## 40409     30-35       7
## 40410     40-50       5
## 40411     30-35       7
## 40412     18-30      10
## 40413     50-60       5
## 40414     30-35       7
## 40415     18-30      10
## 40416     18-30      10
## 40417     18-30      10
## 40418     35-40       6
## 40419     30-35       7
## 40420     18-30      10
## 40421     35-40       6
## 40422     18-30      10
## 40423     18-30      10
## 40424     40-50       5
## 40425     18-30      10
## 40426     18-30      10
## 40427     18-30      10
## 40428     18-30      10
## 40429     18-30      10
## 40430     18-30      10
## 40431     30-35       7
## 40432     40-50       5
## 40433     18-30      10
## 40434     18-30      10
## 40435     18-30      10
## 40436     18-30      10
## 40437     18-30      10
## 40438     30-35       7
## 40439     30-35       7
## 40440     18-30      10
## 40441     18-30      10
## 40442     40-50       5
## 40443     30-35       7
## 40444     40-50       5
## 40445     18-30      10
## 40446     30-35       7
## 40447     35-40       6
## 40448     18-30      10
## 40449     18-30      10
## 40450     30-35       7
## 40451     30-35       7
## 40452     30-35       7
## 40453     35-40       6
## 40454     35-40       6
## 40455     30-35       7
## 40456     18-30      10
## 40457     18-30      10
## 40458     18-30      10
## 40459     35-40       6
## 40460     18-30      10
## 40461     35-40       6
## 40462     50-60       5
## 40463     18-30      10
## 40464     18-30      10
## 40465     18-30      10
## 40466     18-30      10
## 40467     18-30      10
## 40468     35-40       6
## 40469     50-60       5
## 40470     30-35       7
## 40471     18-30      10
## 40472     18-30      10
## 40473     30-35       7
## 40474     18-30      10
## 40475     40-50       5
## 40476     30-35       7
## 40477     18-30      10
## 40478     18-30      10
## 40479     18-30      10
## 40480     18-30      10
## 40481     18-30      10
## 40482     35-40       6
## 40483     18-30      10
## 40484     18-30      10
## 40485     18-30      10
## 40486     18-30      10
## 40487     18-30      10
## 40488     35-40       6
## 40489     35-40       6
## 40490     18-30      10
## 40491     30-35       7
## 40492     18-30      10
## 40493     30-35       7
## 40494     35-40       6
## 40495     40-50       5
## 40496     18-30      10
## 40497     18-30      10
## 40498     18-30      10
## 40499     18-30      10
## 40500     18-30      10
## 40501     18-30      10
## 40502     18-30      10
## 40503     35-40       6
## 40504     18-30      10
## 40505     18-30      10
## 40506     18-30      10
## 40507     18-30      10
## 40508     18-30      10
## 40509     30-35       7
## 40510     40-50       5
## 40511     18-30      10
## 40512       65+       4
## 40513     18-30      10
## 40514     18-30      10
## 40515     30-35       7
## 40516     50-60       5
## 40517     35-40       6
## 40518     18-30      10
## 40519     18-30      10
## 40520     30-35       7
## 40521     35-40       6
## 40522     18-30      10
## 40523     30-35       7
## 40524     18-30      10
## 40525     18-30      10
## 40526     40-50       5
## 40527     18-30      10
## 40528       65+       4
## 40529       65+       4
## 40530     18-30      10
## 40531     18-30      10
## 40532     50-60       5
## 40533     18-30      10
## 40534     30-35       7
## 40535     35-40       6
## 40536     18-30      10
## 40537     40-50       5
## 40538     35-40       6
## 40539     35-40       6
## 40540     18-30      10
## 40541     18-30      10
## 40542     18-30      10
## 40543     35-40       6
## 40544     50-60       5
## 40545     35-40       6
## 40546     18-30      10
## 40547     18-30      10
## 40548     50-60       5
## 40549     18-30      10
## 40550     30-35       7
## 40551     35-40       6
## 40552       65+       4
## 40553     18-30      10
## 40554     50-60       5
## 40555     40-50       5
## 40556     18-30      10
## 40557     18-30      10
## 40558     40-50       5
## 40559     35-40       6
## 40560     18-30      10
## 40561     35-40       6
## 40562     18-30      10
## 40563     18-30      10
## 40564     35-40       6
## 40565     18-30      10
## 40566     50-60       5
## 40567     30-35       7
## 40568     18-30      10
## 40569     18-30      10
## 40570     30-35       7
## 40571     18-30      10
## 40572     18-30      10
## 40573     18-30      10
## 40574     18-30      10
## 40575     40-50       5
## 40576     30-35       7
## 40577     18-30      10
## 40578     18-30      10
## 40579     40-50       5
## 40580     30-35       7
## 40581     18-30      10
## 40582     50-60       5
## 40583     40-50       5
## 40584     50-60       5
## 40585     18-30      10
## 40586     18-30      10
## 40587     30-35       7
## 40588     35-40       6
## 40589     40-50       5
## 40590     18-30      10
## 40591     40-50       5
## 40592     18-30      10
## 40593     18-30      10
## 40594     30-35       7
## 40595     30-35       7
## 40596     18-30      10
## 40597     50-60       5
## 40598     18-30      10
## 40599     18-30      10
## 40600     18-30      10
## 40601     18-30      10
## 40602     18-30      10
## 40603     18-30      10
## 40604     35-40       6
## 40605     35-40       6
## 40606     18-30      10
## 40607     18-30      10
## 40608     18-30      10
## 40609     30-35       7
## 40610     18-30      10
## 40611     18-30      10
## 40612     18-30      10
## 40613     40-50       5
## 40614     30-35       7
## 40615     18-30      10
## 40616     18-30      10
## 40617     40-50       5
## 40618     18-30      10
## 40619     18-30      10
## 40620     18-30      10
## 40621     35-40       6
## 40622     18-30      10
## 40623     18-30      10
## 40624     18-30      10
## 40625     40-50       5
## 40626     18-30      10
## 40627     18-30      10
## 40628     18-30      10
## 40629     18-30      10
## 40630     40-50       5
## 40631     18-30      10
## 40632     18-30      10
## 40633     18-30      10
## 40634     18-30      10
## 40635     30-35       7
## 40636     30-35       7
## 40637     18-30      10
## 40638     18-30      10
## 40639     30-35       7
## 40640     35-40       6
## 40641     50-60       5
## 40642     40-50       5
## 40643     18-30      10
## 40644     30-35       7
## 40645     30-35       7
## 40646     35-40       6
## 40647     40-50       5
## 40648     18-30      10
## 40649     30-35       7
## 40650     40-50       5
## 40651     40-50       5
## 40652     18-30      10
## 40653     18-30      10
## 40654     18-30      10
## 40655     18-30      10
## 40656     18-30      10
## 40657     18-30      10
## 40658     18-30      10
## 40659     18-30      10
## 40660     18-30      10
## 40661     18-30      10
## 40662       65+       4
## 40663     50-60       5
## 40664       65+       4
## 40665     30-35       7
## 40666     18-30      10
## 40667     35-40       6
## 40668     18-30      10
## 40669     18-30      10
## 40670     18-30      10
## 40671     18-30      10
## 40672     18-30      10
## 40673     40-50       5
## 40674     18-30      10
## 40675     18-30      10
## 40676     18-30      10
## 40677     18-30      10
## 40678     18-30      10
## 40679     18-30      10
## 40680     18-30      10
## 40681     18-30      10
## 40682     18-30      10
## 40683     30-35       7
## 40684     50-60       5
## 40685     18-30      10
## 40686     18-30      10
## 40687     18-30      10
## 40688     18-30      10
## 40689     18-30      10
## 40690     18-30      10
## 40691     18-30      10
## 40692     50-60       5
## 40693     18-30      10
## 40694     30-35       7
## 40695     30-35       7
## 40696     40-50       5
## 40697     18-30      10
## 40698     18-30      10
## 40699     35-40       6
## 40700     18-30      10
## 40701     30-35       7
## 40702     18-30      10
## 40703     18-30      10
## 40704     30-35       7
## 40705     30-35       7
## 40706     18-30      10
## 40707     30-35       7
## 40708     30-35       7
## 40709     40-50       5
## 40710     18-30      10
## 40711     30-35       7
## 40712     18-30      10
## 40713     30-35       7
## 40714     18-30      10
## 40715     18-30      10
## 40716     40-50       5
## 40717     30-35       7
## 40718     35-40       6
## 40719     18-30      10
## 40720     30-35       7
## 40721     50-60       5
## 40722     18-30      10
## 40723     35-40       6
## 40724     40-50       5
## 40725     35-40       6
## 40726     35-40       6
## 40727     40-50       5
## 40728     18-30      10
## 40729     18-30      10
## 40730     30-35       7
## 40731     50-60       5
## 40732     18-30      10
## 40733     30-35       7
## 40734     40-50       5
## 40735     30-35       7
## 40736     18-30      10
## 40737     30-35       7
## 40738     18-30      10
## 40739     18-30      10
## 40740     40-50       5
## 40741     30-35       7
## 40742     18-30      10
## 40743     18-30      10
## 40744     35-40       6
## 40745     18-30      10
## 40746       65+       4
## 40747     30-35       7
## 40748     40-50       5
## 40749     18-30      10
## 40750     18-30      10
## 40751     30-35       7
## 40752     18-30      10
## 40753     18-30      10
## 40754       65+       4
## 40755     18-30      10
## 40756     40-50       5
## 40757     40-50       5
## 40758     18-30      10
## 40759     18-30      10
## 40760     40-50       5
## 40761     35-40       6
## 40762     40-50       5
## 40763     18-30      10
## 40764     18-30      10
## 40765     18-30      10
## 40766     30-35       7
## 40767     30-35       7
## 40768     18-30      10
## 40769     18-30      10
## 40770     18-30      10
## 40771     18-30      10
## 40772     18-30      10
## 40773     30-35       7
## 40774     18-30      10
## 40775     30-35       7
## 40776     18-30      10
## 40777     18-30      10
## 40778     35-40       6
## 40779     35-40       6
## 40780     30-35       7
## 40781     18-30      10
## 40782     18-30      10
## 40783     18-30      10
## 40784     18-30      10
## 40785     30-35       7
## 40786     18-30      10
## 40787     35-40       6
## 40788     30-35       7
## 40789     18-30      10
## 40790     30-35       7
## 40791     40-50       5
## 40792     40-50       5
## 40793     18-30      10
## 40794     18-30      10
## 40795     30-35       7
## 40796     50-60       5
## 40797     18-30      10
## 40798     30-35       7
## 40799     18-30      10
## 40800     30-35       7
## 40801     30-35       7
## 40802     50-60       5
## 40803     18-30      10
## 40804     18-30      10
## 40805     18-30      10
## 40806     30-35       7
## 40807     40-50       5
## 40808     30-35       7
## 40809     40-50       5
## 40810     18-30      10
## 40811     18-30      10
## 40812     18-30      10
## 40813     30-35       7
## 40814     30-35       7
## 40815     18-30      10
## 40816     18-30      10
## 40817     40-50       5
## 40818     18-30      10
## 40819     18-30      10
## 40820     18-30      10
## 40821     18-30      10
## 40822     40-50       5
## 40823     18-30      10
## 40824     18-30      10
## 40825     30-35       7
## 40826     30-35       7
## 40827     18-30      10
## 40828     18-30      10
## 40829     30-35       7
## 40830     18-30      10
## 40831     18-30      10
## 40832     18-30      10
## 40833     40-50       5
## 40834     30-35       7
## 40835     35-40       6
## 40836     50-60       5
## 40837     30-35       7
## 40838     30-35       7
## 40839     18-30      10
## 40840     35-40       6
## 40841     18-30      10
## 40842     18-30      10
## 40843     18-30      10
## 40844     18-30      10
## 40845     18-30      10
## 40846     18-30      10
## 40847     30-35       7
## 40848     50-60       5
## 40849     18-30      10
## 40850     18-30      10
## 40851     18-30      10
## 40852     30-35       7
## 40853     18-30      10
## 40854     30-35       7
## 40855     18-30      10
## 40856     40-50       5
## 40857     18-30      10
## 40858     30-35       7
## 40859     18-30      10
## 40860     18-30      10
## 40861     40-50       5
## 40862     18-30      10
## 40863     30-35       7
## 40864     30-35       7
## 40865     18-30      10
## 40866     18-30      10
## 40867     40-50       5
## 40868     18-30      10
## 40869     30-35       7
## 40870     30-35       7
## 40871     35-40       6
## 40872     18-30      10
## 40873     30-35       7
## 40874       65+       4
## 40875     18-30      10
## 40876     18-30      10
## 40877     18-30      10
## 40878     30-35       7
## 40879     50-60       5
## 40880     30-35       7
## 40881     40-50       5
## 40882     35-40       6
## 40883     18-30      10
## 40884     18-30      10
## 40885     40-50       5
## 40886     18-30      10
## 40887     30-35       7
## 40888     18-30      10
## 40889     40-50       5
## 40890     30-35       7
## 40891     18-30      10
## 40892     18-30      10
## 40893     18-30      10
## 40894     18-30      10
## 40895     40-50       5
## 40896     40-50       5
## 40897     18-30      10
## 40898     18-30      10
## 40899     50-60       5
## 40900     40-50       5
## 40901     40-50       5
## 40902     30-35       7
## 40903     18-30      10
## 40904     18-30      10
## 40905     40-50       5
## 40906     40-50       5
## 40907     18-30      10
## 40908     18-30      10
## 40909     18-30      10
## 40910     18-30      10
## 40911     18-30      10
## 40912     18-30      10
## 40913     18-30      10
## 40914     18-30      10
## 40915     40-50       5
## 40916     40-50       5
## 40917     40-50       5
## 40918     50-60       5
## 40919     18-30      10
## 40920     30-35       7
## 40921     18-30      10
## 40922     18-30      10
## 40923     18-30      10
## 40924     40-50       5
## 40925     18-30      10
## 40926     18-30      10
## 40927     30-35       7
## 40928     18-30      10
## 40929     18-30      10
## 40930     18-30      10
## 40931     18-30      10
## 40932     18-30      10
## 40933     18-30      10
## 40934     18-30      10
## 40935     50-60       5
## 40936     18-30      10
## 40937     18-30      10
## 40938     18-30      10
## 40939     18-30      10
## 40940     18-30      10
## 40941     18-30      10
## 40942     35-40       6
## 40943     18-30      10
## 40944     18-30      10
## 40945     18-30      10
## 40946     18-30      10
## 40947     18-30      10
## 40948     30-35       7
## 40949     40-50       5
## 40950     40-50       5
## 40951     18-30      10
## 40952     18-30      10
## 40953     18-30      10
## 40954     50-60       5
## 40955     35-40       6
## 40956     40-50       5
## 40957     18-30      10
## 40958     35-40       6
## 40959     18-30      10
## 40960     50-60       5
## 40961     35-40       6
## 40962     35-40       6
## 40963     18-30      10
## 40964     18-30      10
## 40965     30-35       7
## 40966     30-35       7
## 40967     35-40       6
## 40968     35-40       6
## 40969     18-30      10
## 40970     40-50       5
## 40971     35-40       6
## 40972     18-30      10
## 40973     18-30      10
## 40974     18-30      10
## 40975     18-30      10
## 40976     18-30      10
## 40977     30-35       7
## 40978     50-60       5
## 40979     35-40       6
## 40980     50-60       5
## 40981     18-30      10
## 40982     30-35       7
## 40983     18-30      10
## 40984     40-50       5
## 40985     40-50       5
## 40986     35-40       6
## 40987     18-30      10
## 40988     50-60       5
## 40989     18-30      10
## 40990     30-35       7
## 40991     18-30      10
## 40992     35-40       6
## 40993     18-30      10
## 40994     30-35       7
## 40995     18-30      10
## 40996     18-30      10
## 40997     18-30      10
## 40998     18-30      10
## 40999     18-30      10
## 41000     50-60       5
## 41001     40-50       5
## 41002     18-30      10
## 41003     30-35       7
## 41004     18-30      10
## 41005     18-30      10
## 41006     30-35       7
## 41007     30-35       7
## 41008     30-35       7
## 41009     30-35       7
## 41010     30-35       7
## 41011     18-30      10
## 41012     18-30      10
## 41013     18-30      10
## 41014     40-50       5
## 41015     35-40       6
## 41016     18-30      10
## 41017     30-35       7
## 41018     40-50       5
## 41019     30-35       7
## 41020     40-50       5
## 41021     18-30      10
## 41022     18-30      10
## 41023     18-30      10
## 41024     30-35       7
## 41025     18-30      10
## 41026     18-30      10
## 41027     18-30      10
## 41028     35-40       6
## 41029     18-30      10
## 41030     50-60       5
## 41031     18-30      10
## 41032       65+       4
## 41033     18-30      10
## 41034     18-30      10
## 41035     18-30      10
## 41036     30-35       7
## 41037     18-30      10
## 41038       65+       4
## 41039     18-30      10
## 41040     30-35       7
## 41041     18-30      10
## 41042     18-30      10
## 41043     18-30      10
## 41044     18-30      10
## 41045     18-30      10
## 41046     35-40       6
## 41047     18-30      10
## 41048     18-30      10
## 41049     35-40       6
## 41050     18-30      10
## 41051     35-40       6
## 41052     18-30      10
## 41053     18-30      10
## 41054     50-60       5
## 41055     18-30      10
## 41056     40-50       5
## 41057     35-40       6
## 41058     18-30      10
## 41059     18-30      10
## 41060     50-60       5
## 41061     18-30      10
## 41062     50-60       5
## 41063     30-35       7
## 41064     40-50       5
## 41065     30-35       7
## 41066     30-35       7
## 41067     30-35       7
## 41068     40-50       5
## 41069     18-30      10
## 41070     18-30      10
## 41071     18-30      10
## 41072     35-40       6
## 41073       65+       4
## 41074     18-30      10
## 41075     18-30      10
## 41076     30-35       7
## 41077     30-35       7
## 41078     40-50       5
## 41079     18-30      10
## 41080     18-30      10
## 41081     35-40       6
## 41082     35-40       6
## 41083     40-50       5
## 41084     18-30      10
## 41085     40-50       5
## 41086     30-35       7
## 41087     40-50       5
## 41088     18-30      10
## 41089     18-30      10
## 41090     18-30      10
## 41091     30-35       7
## 41092     30-35       7
## 41093     30-35       7
## 41094     18-30      10
## 41095     18-30      10
## 41096     18-30      10
## 41097     30-35       7
## 41098     18-30      10
## 41099     18-30      10
## 41100     18-30      10
## 41101     18-30      10
## 41102     18-30      10
## 41103     18-30      10
## 41104     30-35       7
## 41105     40-50       5
## 41106     35-40       6
## 41107     30-35       7
## 41108     50-60       5
## 41109     18-30      10
## 41110     30-35       7
## 41111     18-30      10
## 41112     18-30      10
## 41113     18-30      10
## 41114     50-60       5
## 41115     35-40       6
## 41116     18-30      10
## 41117     18-30      10
## 41118     18-30      10
## 41119     18-30      10
## 41120     18-30      10
## 41121     18-30      10
## 41122     18-30      10
## 41123     40-50       5
## 41124     18-30      10
## 41125     18-30      10
## 41126     18-30      10
## 41127     18-30      10
## 41128     35-40       6
## 41129     40-50       5
## 41130     18-30      10
## 41131     40-50       5
## 41132     40-50       5
## 41133     18-30      10
## 41134     18-30      10
## 41135     30-35       7
## 41136     30-35       7
## 41137     40-50       5
## 41138     30-35       7
## 41139     18-30      10
## 41140     40-50       5
## 41141     18-30      10
## 41142     50-60       5
## 41143     18-30      10
## 41144     18-30      10
## 41145     18-30      10
## 41146     30-35       7
## 41147     30-35       7
## 41148     18-30      10
## 41149     18-30      10
## 41150     18-30      10
## 41151     18-30      10
## 41152     18-30      10
## 41153     18-30      10
## 41154     40-50       5
## 41155     18-30      10
## 41156     18-30      10
## 41157     18-30      10
## 41158     35-40       6
## 41159     18-30      10
## 41160     18-30      10
## 41161     18-30      10
## 41162     18-30      10
## 41163     35-40       6
## 41164     18-30      10
## 41165     30-35       7
## 41166     40-50       5
## 41167     30-35       7
## 41168     18-30      10
## 41169     50-60       5
## 41170     40-50       5
## 41171     30-35       7
## 41172     18-30      10
## 41173     18-30      10
## 41174     18-30      10
## 41175     40-50       5
## 41176     18-30      10
## 41177     18-30      10
## 41178     30-35       7
## 41179     18-30      10
## 41180     30-35       7
## 41181     40-50       5
## 41182     18-30      10
## 41183     18-30      10
## 41184     18-30      10
## 41185     30-35       7
## 41186     18-30      10
## 41187     50-60       5
## 41188     30-35       7
## 41189     40-50       5
## 41190     30-35       7
## 41191     18-30      10
## 41192     18-30      10
## 41193     18-30      10
## 41194     18-30      10
## 41195     30-35       7
## 41196     50-60       5
## 41197     18-30      10
## 41198     30-35       7
## 41199     18-30      10
## 41200     18-30      10
## 41201     40-50       5
## 41202     18-30      10
## 41203     35-40       6
## 41204     30-35       7
## 41205     18-30      10
## 41206     50-60       5
## 41207     40-50       5
## 41208     18-30      10
## 41209     40-50       5
## 41210     18-30      10
## 41211     18-30      10
## 41212     18-30      10
## 41213     40-50       5
## 41214     18-30      10
## 41215     18-30      10
## 41216     18-30      10
## 41217     35-40       6
## 41218     40-50       5
## 41219     18-30      10
## 41220     18-30      10
## 41221     18-30      10
## 41222     30-35       7
## 41223     30-35       7
## 41224     35-40       6
## 41225     40-50       5
## 41226     18-30      10
## 41227     18-30      10
## 41228     18-30      10
## 41229     18-30      10
## 41230     18-30      10
## 41231     18-30      10
## 41232     30-35       7
## 41233     50-60       5
## 41234     30-35       7
## 41235     18-30      10
## 41236     18-30      10
## 41237     30-35       7
## 41238     40-50       5
## 41239     40-50       5
## 41240     40-50       5
## 41241     18-30      10
## 41242     40-50       5
## 41243     18-30      10
## 41244     18-30      10
## 41245     18-30      10
## 41246     35-40       6
## 41247     18-30      10
## 41248     30-35       7
## 41249     30-35       7
## 41250     18-30      10
## 41251     30-35       7
## 41252     18-30      10
## 41253     18-30      10
## 41254     18-30      10
## 41255     30-35       7
## 41256     18-30      10
## 41257     30-35       7
## 41258     18-30      10
## 41259     18-30      10
## 41260     18-30      10
## 41261     18-30      10
## 41262     40-50       5
## 41263     35-40       6
## 41264     18-30      10
## 41265     18-30      10
## 41266     18-30      10
## 41267     50-60       5
## 41268     35-40       6
## 41269     50-60       5
## 41270     30-35       7
## 41271     35-40       6
## 41272     30-35       7
## 41273     35-40       6
## 41274     18-30      10
## 41275     18-30      10
## 41276     18-30      10
## 41277     30-35       7
## 41278     30-35       7
## 41279     18-30      10
## 41280     18-30      10
## 41281     18-30      10
## 41282     30-35       7
## 41283     18-30      10
## 41284     18-30      10
## 41285     18-30      10
## 41286     40-50       5
## 41287     40-50       5
## 41288     40-50       5
## 41289     30-35       7
## 41290     30-35       7
## 41291     18-30      10
## 41292     18-30      10
## 41293     18-30      10
## 41294     30-35       7
## 41295     30-35       7
## 41296     18-30      10
## 41297     18-30      10
## 41298     30-35       7
## 41299     18-30      10
## 41300     18-30      10
## 41301     18-30      10
## 41302     30-35       7
## 41303     50-60       5
## 41304     18-30      10
## 41305     30-35       7
## 41306     18-30      10
## 41307     40-50       5
## 41308     18-30      10
## 41309     18-30      10
## 41310     18-30      10
## 41311     18-30      10
## 41312     50-60       5
## 41313     18-30      10
## 41314     40-50       5
## 41315     18-30      10
## 41316     18-30      10
## 41317     18-30      10
## 41318     18-30      10
## 41319     30-35       7
## 41320     30-35       7
## 41321     30-35       7
## 41322     18-30      10
## 41323     18-30      10
## 41324     35-40       6
## 41325     35-40       6
## 41326     30-35       7
## 41327     18-30      10
## 41328     40-50       5
## 41329     40-50       5
## 41330     30-35       7
## 41331     35-40       6
## 41332     35-40       6
## 41333     40-50       5
## 41334     30-35       7
## 41335     18-30      10
## 41336     30-35       7
## 41337     18-30      10
## 41338     18-30      10
## 41339     18-30      10
## 41340     18-30      10
## 41341     50-60       5
## 41342     18-30      10
## 41343     40-50       5
## 41344     40-50       5
## 41345     40-50       5
## 41346     30-35       7
## 41347     30-35       7
## 41348     18-30      10
## 41349       65+       4
## 41350     18-30      10
## 41351     30-35       7
## 41352     50-60       5
## 41353     18-30      10
## 41354     30-35       7
## 41355     18-30      10
## 41356     18-30      10
## 41357     30-35       7
## 41358     30-35       7
## 41359     18-30      10
## 41360     18-30      10
## 41361     18-30      10
## 41362     18-30      10
## 41363     50-60       5
## 41364     18-30      10
## 41365     18-30      10
## 41366     18-30      10
## 41367     30-35       7
## 41368     30-35       7
## 41369     50-60       5
## 41370     35-40       6
## 41371     35-40       6
## 41372     30-35       7
## 41373     18-30      10
## 41374     35-40       6
## 41375     18-30      10
## 41376     18-30      10
## 41377     18-30      10
## 41378     35-40       6
## 41379     35-40       6
## 41380     35-40       6
## 41381     18-30      10
## 41382     18-30      10
## 41383     18-30      10
## 41384     18-30      10
## 41385     40-50       5
## 41386     30-35       7
## 41387     50-60       5
## 41388     18-30      10
## 41389     40-50       5
## 41390     40-50       5
## 41391     18-30      10
## 41392     18-30      10
## 41393     30-35       7
## 41394     30-35       7
## 41395     35-40       6
## 41396     40-50       5
## 41397     30-35       7
## 41398     18-30      10
## 41399     18-30      10
## 41400     18-30      10
## 41401     18-30      10
## 41402     18-30      10
## 41403     35-40       6
## 41404     40-50       5
## 41405     18-30      10
## 41406     18-30      10
## 41407     30-35       7
## 41408     30-35       7
## 41409     30-35       7
## 41410     18-30      10
## 41411     18-30      10
## 41412     18-30      10
## 41413     18-30      10
## 41414     40-50       5
## 41415     18-30      10
## 41416     35-40       6
## 41417     18-30      10
## 41418     30-35       7
## 41419     18-30      10
## 41420     40-50       5
## 41421     40-50       5
## 41422     35-40       6
## 41423     35-40       6
## 41424     30-35       7
## 41425     50-60       5
## 41426     18-30      10
## 41427     30-35       7
## 41428       65+       4
## 41429     18-30      10
## 41430     40-50       5
## 41431     18-30      10
## 41432     18-30      10
## 41433     18-30      10
## 41434     18-30      10
## 41435     18-30      10
## 41436     18-30      10
## 41437     18-30      10
## 41438     35-40       6
## 41439     30-35       7
## 41440     18-30      10
## 41441     30-35       7
## 41442     30-35       7
## 41443     18-30      10
## 41444     18-30      10
## 41445       65+       4
## 41446     50-60       5
## 41447     18-30      10
## 41448     35-40       6
## 41449     18-30      10
## 41450     35-40       6
## 41451     18-30      10
## 41452     30-35       7
## 41453     18-30      10
## 41454     18-30      10
## 41455     40-50       5
## 41456     18-30      10
## 41457     35-40       6
## 41458     18-30      10
## 41459     18-30      10
## 41460     40-50       5
## 41461     18-30      10
## 41462     30-35       7
## 41463     35-40       6
## 41464     18-30      10
## 41465     18-30      10
## 41466     18-30      10
## 41467     18-30      10
## 41468     40-50       5
## 41469     18-30      10
## 41470     30-35       7
## 41471     40-50       5
## 41472     18-30      10
## 41473     40-50       5
## 41474     18-30      10
## 41475     30-35       7
## 41476     18-30      10
## 41477     40-50       5
## 41478     30-35       7
## 41479     18-30      10
## 41480     18-30      10
## 41481     35-40       6
## 41482     35-40       6
## 41483     30-35       7
## 41484     18-30      10
## 41485     35-40       6
## 41486     18-30      10
## 41487     18-30      10
## 41488     30-35       7
## 41489     30-35       7
## 41490     18-30      10
## 41491     35-40       6
## 41492     18-30      10
## 41493     40-50       5
## 41494     30-35       7
## 41495     18-30      10
## 41496     30-35       7
## 41497     30-35       7
## 41498     40-50       5
## 41499     18-30      10
## 41500     18-30      10
## 41501     18-30      10
## 41502     18-30      10
## 41503       65+       4
## 41504     18-30      10
## 41505     18-30      10
## 41506     18-30      10
## 41507     30-35       7
## 41508     35-40       6
## 41509     18-30      10
## 41510     50-60       5
## 41511     35-40       6
## 41512     18-30      10
## 41513     18-30      10
## 41514     35-40       6
## 41515     40-50       5
## 41516     18-30      10
## 41517     35-40       6
## 41518     18-30      10
## 41519     30-35       7
## 41520     18-30      10
## 41521     18-30      10
## 41522     18-30      10
## 41523     50-60       5
## 41524     30-35       7
## 41525     50-60       5
## 41526     18-30      10
## 41527     35-40       6
## 41528     18-30      10
## 41529     18-30      10
## 41530     40-50       5
## 41531     40-50       5
## 41532       65+       4
## 41533     18-30      10
## 41534     35-40       6
## 41535     18-30      10
## 41536     18-30      10
## 41537     18-30      10
## 41538     18-30      10
## 41539     18-30      10
## 41540     18-30      10
## 41541     18-30      10
## 41542     40-50       5
## 41543     40-50       5
## 41544     50-60       5
## 41545     30-35       7
## 41546     30-35       7
## 41547     18-30      10
## 41548     30-35       7
## 41549     35-40       6
## 41550     18-30      10
## 41551     18-30      10
## 41552     30-35       7
## 41553     18-30      10
## 41554     40-50       5
## 41555     18-30      10
## 41556     30-35       7
## 41557     18-30      10
## 41558     18-30      10
## 41559     30-35       7
## 41560     30-35       7
## 41561     18-30      10
## 41562     18-30      10
## 41563     18-30      10
## 41564     18-30      10
## 41565     40-50       5
## 41566     30-35       7
## 41567     35-40       6
## 41568     18-30      10
## 41569     35-40       6
## 41570     18-30      10
## 41571     30-35       7
## 41572     18-30      10
## 41573     18-30      10
## 41574     30-35       7
## 41575     18-30      10
## 41576     40-50       5
## 41577     18-30      10
## 41578     18-30      10
## 41579     30-35       7
## 41580     18-30      10
## 41581     18-30      10
## 41582     18-30      10
## 41583     35-40       6
## 41584     30-35       7
## 41585     18-30      10
## 41586     18-30      10
## 41587     18-30      10
## 41588     35-40       6
## 41589     18-30      10
## 41590     30-35       7
## 41591     30-35       7
## 41592     18-30      10
## 41593     30-35       7
## 41594     18-30      10
## 41595     30-35       7
## 41596     30-35       7
## 41597     30-35       7
## 41598     18-30      10
## 41599     18-30      10
## 41600     30-35       7
## 41601     50-60       5
## 41602     35-40       6
## 41603     18-30      10
## 41604     40-50       5
## 41605     18-30      10
## 41606     18-30      10
## 41607     18-30      10
## 41608     30-35       7
## 41609     30-35       7
## 41610     35-40       6
## 41611     18-30      10
## 41612     18-30      10
## 41613     30-35       7
## 41614     18-30      10
## 41615     35-40       6
## 41616     18-30      10
## 41617     18-30      10
## 41618     30-35       7
## 41619     40-50       5
## 41620     18-30      10
## 41621     18-30      10
## 41622     18-30      10
## 41623     40-50       5
## 41624     18-30      10
## 41625     18-30      10
## 41626     18-30      10
## 41627     35-40       6
## 41628     40-50       5
## 41629     18-30      10
## 41630     40-50       5
## 41631     50-60       5
## 41632     18-30      10
## 41633     18-30      10
## 41634     18-30      10
## 41635     18-30      10
## 41636     18-30      10
## 41637     18-30      10
## 41638     18-30      10
## 41639     18-30      10
## 41640     30-35       7
## 41641     18-30      10
## 41642     30-35       7
## 41643     18-30      10
## 41644     18-30      10
## 41645     50-60       5
## 41646     30-35       7
## 41647     18-30      10
## 41648     35-40       6
## 41649     18-30      10
## 41650     18-30      10
## 41651     18-30      10
## 41652     18-30      10
## 41653     18-30      10
## 41654     30-35       7
## 41655     30-35       7
## 41656     18-30      10
## 41657     18-30      10
## 41658     18-30      10
## 41659     40-50       5
## 41660     18-30      10
## 41661     18-30      10
## 41662     30-35       7
## 41663     18-30      10
## 41664     40-50       5
## 41665     18-30      10
## 41666     18-30      10
## 41667     18-30      10
## 41668     18-30      10
## 41669     18-30      10
## 41670     18-30      10
## 41671     18-30      10
## 41672     30-35       7
## 41673     30-35       7
## 41674     30-35       7
## 41675     18-30      10
## 41676     30-35       7
## 41677     18-30      10
## 41678     18-30      10
## 41679     35-40       6
## 41680     18-30      10
## 41681     18-30      10
## 41682     35-40       6
## 41683     18-30      10
## 41684     18-30      10
## 41685     30-35       7
## 41686     18-30      10
## 41687     40-50       5
## 41688     35-40       6
## 41689     30-35       7
## 41690     18-30      10
## 41691     30-35       7
## 41692     18-30      10
## 41693     18-30      10
## 41694     18-30      10
## 41695     18-30      10
## 41696     30-35       7
## 41697     18-30      10
## 41698     35-40       6
## 41699     30-35       7
## 41700     18-30      10
## 41701     40-50       5
## 41702     18-30      10
## 41703     18-30      10
## 41704     40-50       5
## 41705     30-35       7
## 41706     18-30      10
## 41707     18-30      10
## 41708     18-30      10
## 41709     40-50       5
## 41710     18-30      10
## 41711     30-35       7
## 41712     18-30      10
## 41713     18-30      10
## 41714     18-30      10
## 41715     18-30      10
## 41716     30-35       7
## 41717     30-35       7
## 41718     50-60       5
## 41719     18-30      10
## 41720     50-60       5
## 41721     18-30      10
## 41722     35-40       6
## 41723     30-35       7
## 41724     18-30      10
## 41725     35-40       6
## 41726     35-40       6
## 41727     40-50       5
## 41728     18-30      10
## 41729     35-40       6
## 41730     18-30      10
## 41731     40-50       5
## 41732     18-30      10
## 41733     18-30      10
## 41734     40-50       5
## 41735       65+       4
## 41736     18-30      10
## 41737     35-40       6
## 41738     30-35       7
## 41739     30-35       7
## 41740     18-30      10
## 41741     18-30      10
## 41742     18-30      10
## 41743     18-30      10
## 41744     40-50       5
## 41745     18-30      10
## 41746     35-40       6
## 41747     35-40       6
## 41748     40-50       5
## 41749     18-30      10
## 41750     18-30      10
## 41751     18-30      10
## 41752     18-30      10
## 41753     30-35       7
## 41754     18-30      10
## 41755     18-30      10
## 41756     18-30      10
## 41757     18-30      10
## 41758     40-50       5
## 41759     18-30      10
## 41760     35-40       6
## 41761     18-30      10
## 41762     30-35       7
## 41763     18-30      10
## 41764     18-30      10
## 41765     18-30      10
## 41766     50-60       5
## 41767     40-50       5
## 41768     18-30      10
## 41769     18-30      10
## 41770     30-35       7
## 41771     18-30      10
## 41772     50-60       5
## 41773     18-30      10
## 41774     18-30      10
## 41775     18-30      10
## 41776     18-30      10
## 41777     18-30      10
## 41778     18-30      10
## 41779     18-30      10
## 41780     18-30      10
## 41781     35-40       6
## 41782     30-35       7
## 41783     35-40       6
## 41784     30-35       7
## 41785     18-30      10
## 41786     18-30      10
## 41787     18-30      10
## 41788     18-30      10
## 41789     30-35       7
## 41790     18-30      10
## 41791     30-35       7
## 41792     40-50       5
## 41793     18-30      10
## 41794     18-30      10
## 41795     40-50       5
## 41796     35-40       6
## 41797     18-30      10
## 41798     18-30      10
## 41799     18-30      10
## 41800     18-30      10
## 41801     18-30      10
## 41802     18-30      10
## 41803     18-30      10
## 41804     50-60       5
## 41805     18-30      10
## 41806     30-35       7
## 41807     18-30      10
## 41808     18-30      10
## 41809     18-30      10
## 41810     18-30      10
## 41811     18-30      10
## 41812     30-35       7
## 41813     30-35       7
## 41814     18-30      10
## 41815     40-50       5
## 41816     35-40       6
## 41817     18-30      10
## 41818     30-35       7
## 41819     18-30      10
## 41820     18-30      10
## 41821     18-30      10
## 41822     30-35       7
## 41823     40-50       5
## 41824     18-30      10
## 41825     40-50       5
## 41826     18-30      10
## 41827     30-35       7
## 41828     18-30      10
## 41829     30-35       7
## 41830     18-30      10
## 41831     18-30      10
## 41832     18-30      10
## 41833     18-30      10
## 41834     18-30      10
## 41835     18-30      10
## 41836     35-40       6
## 41837     35-40       6
## 41838     30-35       7
## 41839     30-35       7
## 41840     18-30      10
## 41841     18-30      10
## 41842     30-35       7
## 41843     50-60       5
## 41844     35-40       6
## 41845     30-35       7
## 41846     18-30      10
## 41847     40-50       5
## 41848       65+       4
## 41849     50-60       5
## 41850     18-30      10
## 41851     50-60       5
## 41852     18-30      10
## 41853     30-35       7
## 41854     18-30      10
## 41855     40-50       5
## 41856     18-30      10
## 41857     18-30      10
## 41858     18-30      10
## 41859     18-30      10
## 41860     18-30      10
## 41861     18-30      10
## 41862     40-50       5
## 41863     18-30      10
## 41864     18-30      10
## 41865     50-60       5
## 41866     30-35       7
## 41867     35-40       6
## 41868       65+       4
## 41869     30-35       7
## 41870     35-40       6
## 41871     30-35       7
## 41872     18-30      10
## 41873     18-30      10
## 41874     30-35       7
## 41875     30-35       7
## 41876     18-30      10
## 41877     18-30      10
## 41878     35-40       6
## 41879     18-30      10
## 41880     40-50       5
## 41881     18-30      10
## 41882     18-30      10
## 41883     30-35       7
## 41884     30-35       7
## 41885     30-35       7
## 41886     30-35       7
## 41887     40-50       5
## 41888     30-35       7
## 41889     18-30      10
## 41890     18-30      10
## 41891     30-35       7
## 41892     35-40       6
## 41893     18-30      10
## 41894     30-35       7
## 41895     35-40       6
## 41896     18-30      10
## 41897     18-30      10
## 41898     30-35       7
## 41899     30-35       7
## 41900     30-35       7
## 41901     18-30      10
## 41902     18-30      10
## 41903     30-35       7
## 41904     30-35       7
## 41905     18-30      10
## 41906     30-35       7
## 41907     18-30      10
## 41908     18-30      10
## 41909     18-30      10
## 41910     50-60       5
## 41911     40-50       5
## 41912     18-30      10
## 41913     18-30      10
## 41914     18-30      10
## 41915     18-30      10
## 41916     18-30      10
## 41917     18-30      10
## 41918     18-30      10
## 41919     18-30      10
## 41920     18-30      10
## 41921     18-30      10
## 41922     18-30      10
## 41923     18-30      10
## 41924     18-30      10
## 41925     18-30      10
## 41926     18-30      10
## 41927     18-30      10
## 41928     30-35       7
## 41929     50-60       5
## 41930     40-50       5
## 41931     18-30      10
## 41932     18-30      10
## 41933     18-30      10
## 41934     18-30      10
## 41935     35-40       6
## 41936     18-30      10
## 41937     18-30      10
## 41938     18-30      10
## 41939     18-30      10
## 41940     18-30      10
## 41941     18-30      10
## 41942     18-30      10
## 41943     30-35       7
## 41944     35-40       6
## 41945     50-60       5
## 41946     18-30      10
## 41947     30-35       7
## 41948     30-35       7
## 41949     40-50       5
## 41950     18-30      10
## 41951     35-40       6
## 41952     18-30      10
## 41953     18-30      10
## 41954     18-30      10
## 41955     40-50       5
## 41956     30-35       7
## 41957     35-40       6
## 41958     30-35       7
## 41959     18-30      10
## 41960     18-30      10
## 41961     18-30      10
## 41962     18-30      10
## 41963     18-30      10
## 41964     30-35       7
## 41965     35-40       6
## 41966     30-35       7
## 41967     18-30      10
## 41968     18-30      10
## 41969     30-35       7
## 41970     18-30      10
## 41971     18-30      10
## 41972     30-35       7
## 41973     18-30      10
## 41974     18-30      10
## 41975     18-30      10
## 41976     18-30      10
## 41977     18-30      10
## 41978     18-30      10
## 41979     18-30      10
## 41980     30-35       7
## 41981     30-35       7
## 41982     18-30      10
## 41983     18-30      10
## 41984     30-35       7
## 41985     30-35       7
## 41986     18-30      10
## 41987     30-35       7
## 41988     30-35       7
## 41989     18-30      10
## 41990     35-40       6
## 41991     18-30      10
## 41992     30-35       7
## 41993     18-30      10
## 41994     30-35       7
## 41995     30-35       7
## 41996     40-50       5
## 41997     18-30      10
## 41998     18-30      10
## 41999     18-30      10
## 42000     30-35       7
## 42001     18-30      10
## 42002     35-40       6
## 42003     18-30      10
## 42004     30-35       7
## 42005     18-30      10
## 42006     30-35       7
## 42007     40-50       5
## 42008     40-50       5
## 42009     35-40       6
## 42010     30-35       7
## 42011     18-30      10
## 42012     18-30      10
## 42013     30-35       7
## 42014     30-35       7
## 42015     40-50       5
## 42016     18-30      10
## 42017     18-30      10
## 42018     18-30      10
## 42019     30-35       7
## 42020     35-40       6
## 42021     18-30      10
## 42022       65+       4
## 42023     40-50       5
## 42024     35-40       6
## 42025     40-50       5
## 42026     18-30      10
## 42027     18-30      10
## 42028     35-40       6
## 42029     30-35       7
## 42030     18-30      10
## 42031     18-30      10
## 42032     35-40       6
## 42033     18-30      10
## 42034     18-30      10
## 42035     30-35       7
## 42036     18-30      10
## 42037     30-35       7
## 42038     18-30      10
## 42039     18-30      10
## 42040     18-30      10
## 42041     40-50       5
## 42042     18-30      10
## 42043     40-50       5
## 42044     18-30      10
## 42045     18-30      10
## 42046     30-35       7
## 42047     30-35       7
## 42048     30-35       7
## 42049     50-60       5
## 42050     18-30      10
## 42051     50-60       5
## 42052     18-30      10
## 42053     30-35       7
## 42054     35-40       6
## 42055     40-50       5
## 42056     40-50       5
## 42057     40-50       5
## 42058     18-30      10
## 42059     18-30      10
## 42060     30-35       7
## 42061     35-40       6
## 42062     30-35       7
## 42063     18-30      10
## 42064     18-30      10
## 42065     18-30      10
## 42066     35-40       6
## 42067     18-30      10
## 42068     18-30      10
## 42069     18-30      10
## 42070     35-40       6
## 42071     18-30      10
## 42072     18-30      10
## 42073     35-40       6
## 42074     18-30      10
## 42075     18-30      10
## 42076     35-40       6
## 42077     18-30      10
## 42078     18-30      10
## 42079     18-30      10
## 42080     18-30      10
## 42081     40-50       5
## 42082     40-50       5
## 42083     35-40       6
## 42084     18-30      10
## 42085     35-40       6
## 42086     18-30      10
## 42087     18-30      10
## 42088     30-35       7
## 42089     18-30      10
## 42090     18-30      10
## 42091     18-30      10
## 42092     18-30      10
## 42093     18-30      10
## 42094     18-30      10
## 42095     40-50       5
## 42096     18-30      10
## 42097     18-30      10
## 42098     18-30      10
## 42099     18-30      10
## 42100     18-30      10
## 42101     50-60       5
## 42102     18-30      10
## 42103     18-30      10
## 42104     18-30      10
## 42105     18-30      10
## 42106     18-30      10
## 42107     18-30      10
## 42108     50-60       5
## 42109     18-30      10
## 42110     18-30      10
## 42111     35-40       6
## 42112     18-30      10
## 42113     18-30      10
## 42114     18-30      10
## 42115     50-60       5
## 42116     50-60       5
## 42117     40-50       5
## 42118     30-35       7
## 42119     18-30      10
## 42120     18-30      10
## 42121     18-30      10
## 42122     18-30      10
## 42123     30-35       7
## 42124     18-30      10
## 42125     40-50       5
## 42126     35-40       6
## 42127     18-30      10
## 42128     18-30      10
## 42129     18-30      10
## 42130     18-30      10
## 42131     30-35       7
## 42132     30-35       7
## 42133     18-30      10
## 42134     18-30      10
## 42135     18-30      10
## 42136     18-30      10
## 42137     18-30      10
## 42138     35-40       6
## 42139     18-30      10
## 42140     18-30      10
## 42141     18-30      10
## 42142     18-30      10
## 42143     18-30      10
## 42144     18-30      10
## 42145     30-35       7
## 42146     35-40       6
## 42147     18-30      10
## 42148     18-30      10
## 42149     35-40       6
## 42150     18-30      10
## 42151     30-35       7
## 42152     35-40       6
## 42153     18-30      10
## 42154       65+       4
## 42155     18-30      10
## 42156     18-30      10
## 42157     18-30      10
## 42158     30-35       7
## 42159     35-40       6
## 42160     35-40       6
## 42161     18-30      10
## 42162     18-30      10
## 42163     18-30      10
## 42164     18-30      10
## 42165     18-30      10
## 42166     18-30      10
## 42167     18-30      10
## 42168     18-30      10
## 42169     18-30      10
## 42170     40-50       5
## 42171     30-35       7
## 42172     18-30      10
## 42173     18-30      10
## 42174     18-30      10
## 42175     18-30      10
## 42176     30-35       7
## 42177     18-30      10
## 42178     18-30      10
## 42179     18-30      10
## 42180     18-30      10
## 42181     18-30      10
## 42182     18-30      10
## 42183     18-30      10
## 42184     40-50       5
## 42185     18-30      10
## 42186     35-40       6
## 42187     18-30      10
## 42188     18-30      10
## 42189     18-30      10
## 42190     30-35       7
## 42191     18-30      10
## 42192     30-35       7
## 42193     18-30      10
## 42194     18-30      10
## 42195     40-50       5
## 42196     30-35       7
## 42197     18-30      10
## 42198     35-40       6
## 42199     30-35       7
## 42200     40-50       5
## 42201     18-30      10
## 42202     30-35       7
## 42203     30-35       7
## 42204     30-35       7
## 42205     18-30      10
## 42206     18-30      10
## 42207     18-30      10
## 42208     18-30      10
## 42209     30-35       7
## 42210     18-30      10
## 42211     18-30      10
## 42212     35-40       6
## 42213     35-40       6
## 42214     18-30      10
## 42215     30-35       7
## 42216     50-60       5
## 42217     40-50       5
## 42218     30-35       7
## 42219     18-30      10
## 42220     30-35       7
## 42221     18-30      10
## 42222     18-30      10
## 42223     18-30      10
## 42224     18-30      10
## 42225     18-30      10
## 42226     18-30      10
## 42227     18-30      10
## 42228     30-35       7
## 42229     50-60       5
## 42230     18-30      10
## 42231     35-40       6
## 42232     18-30      10
## 42233     18-30      10
## 42234     30-35       7
## 42235     18-30      10
## 42236     35-40       6
## 42237     18-30      10
## 42238     18-30      10
## 42239     18-30      10
## 42240     30-35       7
## 42241     18-30      10
## 42242     30-35       7
## 42243     18-30      10
## 42244     18-30      10
## 42245     30-35       7
## 42246     30-35       7
## 42247     18-30      10
## 42248     40-50       5
## 42249     18-30      10
## 42250     18-30      10
## 42251     18-30      10
## 42252     18-30      10
## 42253     40-50       5
## 42254     18-30      10
## 42255     30-35       7
## 42256     18-30      10
## 42257     18-30      10
## 42258     18-30      10
## 42259     35-40       6
## 42260     30-35       7
## 42261     18-30      10
## 42262     18-30      10
## 42263     35-40       6
## 42264     30-35       7
## 42265     18-30      10
## 42266     18-30      10
## 42267     18-30      10
## 42268     18-30      10
## 42269     18-30      10
## 42270     35-40       6
## 42271     35-40       6
## 42272     18-30      10
## 42273     35-40       6
## 42274     18-30      10
## 42275     18-30      10
## 42276     40-50       5
## 42277     18-30      10
## 42278     18-30      10
## 42279     18-30      10
## 42280     30-35       7
## 42281     18-30      10
## 42282     18-30      10
## 42283     18-30      10
## 42284     18-30      10
## 42285     18-30      10
## 42286     18-30      10
## 42287     30-35       7
## 42288     18-30      10
## 42289     35-40       6
## 42290     18-30      10
## 42291     35-40       6
## 42292     18-30      10
## 42293     18-30      10
## 42294     18-30      10
## 42295     18-30      10
## 42296     18-30      10
## 42297     30-35       7
## 42298     40-50       5
## 42299     30-35       7
## 42300     18-30      10
## 42301     18-30      10
## 42302     18-30      10
## 42303     40-50       5
## 42304     18-30      10
## 42305     18-30      10
## 42306     18-30      10
## 42307     18-30      10
## 42308     18-30      10
## 42309     18-30      10
## 42310     30-35       7
## 42311     18-30      10
## 42312     18-30      10
## 42313     18-30      10
## 42314     35-40       6
## 42315     40-50       5
## 42316     18-30      10
## 42317     18-30      10
## 42318     18-30      10
## 42319     30-35       7
## 42320     18-30      10
## 42321     30-35       7
## 42322     18-30      10
## 42323     30-35       7
## 42324     18-30      10
## 42325     18-30      10
## 42326     18-30      10
## 42327     18-30      10
## 42328     18-30      10
## 42329     40-50       5
## 42330     18-30      10
## 42331     18-30      10
## 42332     18-30      10
## 42333     18-30      10
## 42334     30-35       7
## 42335     18-30      10
## 42336     18-30      10
## 42337     18-30      10
## 42338     35-40       6
## 42339     18-30      10
## 42340     35-40       6
## 42341     40-50       5
## 42342     18-30      10
## 42343     30-35       7
## 42344     18-30      10
## 42345     35-40       6
## 42346     18-30      10
## 42347     40-50       5
## 42348     18-30      10
## 42349     30-35       7
## 42350     18-30      10
## 42351     50-60       5
## 42352     18-30      10
## 42353     40-50       5
## 42354     35-40       6
## 42355     18-30      10
## 42356     30-35       7
## 42357     40-50       5
## 42358     18-30      10
## 42359     18-30      10
## 42360     18-30      10
## 42361     18-30      10
## 42362     18-30      10
## 42363     30-35       7
## 42364     18-30      10
## 42365     18-30      10
## 42366     18-30      10
## 42367     18-30      10
## 42368     35-40       6
## 42369     30-35       7
## 42370     18-30      10
## 42371     18-30      10
## 42372     35-40       6
## 42373     18-30      10
## 42374     18-30      10
## 42375     18-30      10
## 42376     18-30      10
## 42377     35-40       6
## 42378     18-30      10
## 42379     18-30      10
## 42380     18-30      10
## 42381     18-30      10
## 42382     30-35       7
## 42383     18-30      10
## 42384     18-30      10
## 42385     18-30      10
## 42386     35-40       6
## 42387     18-30      10
## 42388     40-50       5
## 42389     35-40       6
## 42390     50-60       5
## 42391     30-35       7
## 42392     18-30      10
## 42393     18-30      10
## 42394     18-30      10
## 42395     18-30      10
## 42396     18-30      10
## 42397     18-30      10
## 42398     18-30      10
## 42399     18-30      10
## 42400     50-60       5
## 42401     35-40       6
## 42402     30-35       7
## 42403     30-35       7
## 42404     30-35       7
## 42405     40-50       5
## 42406     18-30      10
## 42407     18-30      10
## 42408     40-50       5
## 42409     18-30      10
## 42410     18-30      10
## 42411     40-50       5
## 42412     18-30      10
## 42413     18-30      10
## 42414     30-35       7
## 42415     18-30      10
## 42416     30-35       7
## 42417     30-35       7
## 42418     30-35       7
## 42419     18-30      10
## 42420     18-30      10
## 42421     18-30      10
## 42422     18-30      10
## 42423     18-30      10
## 42424     50-60       5
## 42425     50-60       5
## 42426     35-40       6
## 42427     50-60       5
## 42428     40-50       5
## 42429     35-40       6
## 42430     40-50       5
## 42431     30-35       7
## 42432     18-30      10
## 42433     18-30      10
## 42434     18-30      10
## 42435     18-30      10
## 42436     30-35       7
## 42437     18-30      10
## 42438     18-30      10
## 42439     30-35       7
## 42440     18-30      10
## 42441     30-35       7
## 42442     18-30      10
## 42443     18-30      10
## 42444     18-30      10
## 42445     30-35       7
## 42446     18-30      10
## 42447     30-35       7
## 42448     18-30      10
## 42449     18-30      10
## 42450     18-30      10
## 42451     30-35       7
## 42452     18-30      10
## 42453     18-30      10
## 42454     40-50       5
## 42455     30-35       7
## 42456     18-30      10
## 42457     18-30      10
## 42458     18-30      10
## 42459       65+       4
## 42460     40-50       5
## 42461     18-30      10
## 42462     18-30      10
## 42463     30-35       7
## 42464     35-40       6
## 42465     18-30      10
## 42466     40-50       5
## 42467     40-50       5
## 42468     30-35       7
## 42469     18-30      10
## 42470     18-30      10
## 42471     35-40       6
## 42472     30-35       7
## 42473     18-30      10
## 42474     18-30      10
## 42475     30-35       7
## 42476     40-50       5
## 42477     18-30      10
## 42478     35-40       6
## 42479     18-30      10
## 42480     35-40       6
## 42481     18-30      10
## 42482     18-30      10
## 42483     18-30      10
## 42484       65+       4
## 42485     18-30      10
## 42486     18-30      10
## 42487     40-50       5
## 42488     18-30      10
## 42489     40-50       5
## 42490     18-30      10
## 42491     18-30      10
## 42492     18-30      10
## 42493     18-30      10
## 42494     40-50       5
## 42495     18-30      10
## 42496     18-30      10
## 42497     18-30      10
## 42498     18-30      10
## 42499     18-30      10
## 42500     18-30      10
## 42501     18-30      10
## 42502     30-35       7
## 42503     18-30      10
## 42504     18-30      10
## 42505     30-35       7
## 42506     40-50       5
## 42507     18-30      10
## 42508     18-30      10
## 42509     18-30      10
## 42510     30-35       7
## 42511     40-50       5
## 42512     18-30      10
## 42513     18-30      10
## 42514     30-35       7
## 42515     18-30      10
## 42516     35-40       6
## 42517     30-35       7
## 42518     18-30      10
## 42519     40-50       5
## 42520     30-35       7
## 42521     18-30      10
## 42522     35-40       6
## 42523     18-30      10
## 42524     18-30      10
## 42525       65+       4
## 42526     40-50       5
## 42527     50-60       5
## 42528     30-35       7
## 42529     18-30      10
## 42530     18-30      10
## 42531     30-35       7
## 42532     18-30      10
## 42533     35-40       6
## 42534     18-30      10
## 42535     18-30      10
## 42536     30-35       7
## 42537     18-30      10
## 42538     35-40       6
## 42539     18-30      10
## 42540     30-35       7
## 42541     30-35       7
## 42542     18-30      10
## 42543     50-60       5
## 42544     30-35       7
## 42545     18-30      10
## 42546     30-35       7
## 42547     18-30      10
## 42548     18-30      10
## 42549     35-40       6
## 42550     18-30      10
## 42551     30-35       7
## 42552     40-50       5
## 42553     35-40       6
## 42554     18-30      10
## 42555     30-35       7
## 42556     18-30      10
## 42557     18-30      10
## 42558     35-40       6
## 42559     18-30      10
## 42560     18-30      10
## 42561     18-30      10
## 42562     18-30      10
## 42563     18-30      10
## 42564     35-40       6
## 42565     18-30      10
## 42566     30-35       7
## 42567     30-35       7
## 42568     18-30      10
## 42569     18-30      10
## 42570     18-30      10
## 42571     18-30      10
## 42572     35-40       6
## 42573     30-35       7
## 42574     18-30      10
## 42575     30-35       7
## 42576     18-30      10
## 42577     18-30      10
## 42578     18-30      10
## 42579     18-30      10
## 42580     18-30      10
## 42581     18-30      10
## 42582     18-30      10
## 42583     18-30      10
## 42584     40-50       5
## 42585     18-30      10
## 42586     18-30      10
## 42587     35-40       6
## 42588     40-50       5
## 42589     30-35       7
## 42590     40-50       5
## 42591     30-35       7
## 42592     40-50       5
## 42593     18-30      10
## 42594     18-30      10
## 42595     18-30      10
## 42596     18-30      10
## 42597     30-35       7
## 42598     35-40       6
## 42599     18-30      10
## 42600     18-30      10
## 42601     35-40       6
## 42602     18-30      10
## 42603     40-50       5
## 42604     30-35       7
## 42605     18-30      10
## 42606     18-30      10
## 42607     30-35       7
## 42608     30-35       7
## 42609     18-30      10
## 42610     18-30      10
## 42611     18-30      10
## 42612     30-35       7
## 42613     18-30      10
## 42614     35-40       6
## 42615       65+       4
## 42616     35-40       6
## 42617     30-35       7
## 42618     18-30      10
## 42619     40-50       5
## 42620     18-30      10
## 42621     18-30      10
## 42622     18-30      10
## 42623     40-50       5
## 42624     18-30      10
## 42625     18-30      10
## 42626     18-30      10
## 42627     35-40       6
## 42628     30-35       7
## 42629     30-35       7
## 42630     35-40       6
## 42631     18-30      10
## 42632     40-50       5
## 42633     35-40       6
## 42634     30-35       7
## 42635     35-40       6
## 42636     40-50       5
## 42637     30-35       7
## 42638     18-30      10
## 42639     18-30      10
## 42640     18-30      10
## 42641     30-35       7
## 42642     40-50       5
## 42643     18-30      10
## 42644     30-35       7
## 42645       65+       4
## 42646     30-35       7
## 42647     18-30      10
## 42648     30-35       7
## 42649     30-35       7
## 42650     30-35       7
## 42651     18-30      10
## 42652     30-35       7
## 42653     18-30      10
## 42654     30-35       7
## 42655     30-35       7
## 42656     18-30      10
## 42657     18-30      10
## 42658     18-30      10
## 42659     35-40       6
## 42660     18-30      10
## 42661     18-30      10
## 42662     18-30      10
## 42663     18-30      10
## 42664     30-35       7
## 42665     30-35       7
## 42666     18-30      10
## 42667     18-30      10
## 42668     35-40       6
## 42669     18-30      10
## 42670     35-40       6
## 42671     30-35       7
## 42672     18-30      10
## 42673     18-30      10
## 42674     30-35       7
## 42675     35-40       6
## 42676     35-40       6
## 42677     30-35       7
## 42678     30-35       7
## 42679     40-50       5
## 42680     18-30      10
## 42681     18-30      10
## 42682     18-30      10
## 42683     30-35       7
## 42684     40-50       5
## 42685     18-30      10
## 42686     40-50       5
## 42687     40-50       5
## 42688     40-50       5
## 42689     40-50       5
## 42690     18-30      10
## 42691     18-30      10
## 42692     18-30      10
## 42693     30-35       7
## 42694     18-30      10
## 42695     50-60       5
## 42696     40-50       5
## 42697     30-35       7
## 42698     18-30      10
## 42699     30-35       7
## 42700     18-30      10
## 42701     30-35       7
## 42702     18-30      10
## 42703     18-30      10
## 42704     35-40       6
## 42705     35-40       6
## 42706     18-30      10
## 42707     40-50       5
## 42708     18-30      10
## 42709     18-30      10
## 42710     35-40       6
## 42711     18-30      10
## 42712     18-30      10
## 42713     18-30      10
## 42714     40-50       5
## 42715     35-40       6
## 42716     40-50       5
## 42717     18-30      10
## 42718     18-30      10
## 42719     30-35       7
## 42720     30-35       7
## 42721     18-30      10
## 42722     18-30      10
## 42723     35-40       6
## 42724     18-30      10
## 42725     18-30      10
## 42726     18-30      10
## 42727     18-30      10
## 42728     30-35       7
## 42729     18-30      10
## 42730     40-50       5
## 42731     30-35       7
## 42732     18-30      10
## 42733     40-50       5
## 42734     18-30      10
## 42735     18-30      10
## 42736     30-35       7
## 42737     30-35       7
## 42738     18-30      10
## 42739     18-30      10
## 42740     18-30      10
## 42741     50-60       5
## 42742     40-50       5
## 42743     18-30      10
## 42744     18-30      10
## 42745     50-60       5
## 42746     18-30      10
## 42747     30-35       7
## 42748     18-30      10
## 42749     18-30      10
## 42750     18-30      10
## 42751     35-40       6
## 42752     30-35       7
## 42753     18-30      10
## 42754     50-60       5
## 42755     30-35       7
## 42756     40-50       5
## 42757     30-35       7
## 42758     18-30      10
## 42759     18-30      10
## 42760     18-30      10
## 42761     40-50       5
## 42762     50-60       5
## 42763     18-30      10
## 42764     18-30      10
## 42765     35-40       6
## 42766     30-35       7
## 42767     18-30      10
## 42768     18-30      10
## 42769     18-30      10
## 42770     30-35       7
## 42771     18-30      10
## 42772     35-40       6
## 42773     18-30      10
## 42774     18-30      10
## 42775     30-35       7
## 42776     18-30      10
## 42777     18-30      10
## 42778     30-35       7
## 42779     35-40       6
## 42780     18-30      10
## 42781     30-35       7
## 42782     40-50       5
## 42783     18-30      10
## 42784     18-30      10
## 42785     18-30      10
## 42786     18-30      10
## 42787     18-30      10
## 42788     18-30      10
## 42789     35-40       6
## 42790     30-35       7
## 42791     40-50       5
## 42792     40-50       5
## 42793     30-35       7
## 42794     18-30      10
## 42795     30-35       7
## 42796     30-35       7
## 42797     35-40       6
## 42798     50-60       5
## 42799     50-60       5
## 42800     30-35       7
## 42801     18-30      10
## 42802     35-40       6
## 42803     18-30      10
## 42804     30-35       7
## 42805     18-30      10
## 42806     18-30      10
## 42807     35-40       6
## 42808     18-30      10
## 42809     30-35       7
## 42810     18-30      10
## 42811     18-30      10
## 42812     40-50       5
## 42813     18-30      10
## 42814     40-50       5
## 42815     18-30      10
## 42816     30-35       7
## 42817     18-30      10
## 42818     30-35       7
## 42819     40-50       5
## 42820     30-35       7
## 42821     35-40       6
## 42822     35-40       6
## 42823     18-30      10
## 42824     18-30      10
## 42825     40-50       5
## 42826     18-30      10
## 42827     18-30      10
## 42828     18-30      10
## 42829     30-35       7
## 42830     18-30      10
## 42831     30-35       7
## 42832     18-30      10
## 42833     18-30      10
## 42834     50-60       5
## 42835     35-40       6
## 42836     50-60       5
## 42837     50-60       5
## 42838     18-30      10
## 42839     35-40       6
## 42840     18-30      10
## 42841     18-30      10
## 42842     35-40       6
## 42843     18-30      10
## 42844     40-50       5
## 42845     30-35       7
## 42846     18-30      10
## 42847     18-30      10
## 42848     30-35       7
## 42849     40-50       5
## 42850     18-30      10
## 42851     18-30      10
## 42852     35-40       6
## 42853     18-30      10
## 42854     18-30      10
## 42855     35-40       6
## 42856     40-50       5
## 42857     18-30      10
## 42858     30-35       7
## 42859     50-60       5
## 42860     30-35       7
## 42861     18-30      10
## 42862     30-35       7
## 42863     40-50       5
## 42864     18-30      10
## 42865     18-30      10
## 42866     30-35       7
## 42867     50-60       5
## 42868     40-50       5
## 42869     30-35       7
## 42870     18-30      10
## 42871     18-30      10
## 42872     50-60       5
## 42873     18-30      10
## 42874     30-35       7
## 42875     18-30      10
## 42876     18-30      10
## 42877     35-40       6
## 42878     30-35       7
## 42879     18-30      10
## 42880     18-30      10
## 42881     18-30      10
## 42882     18-30      10
## 42883     40-50       5
## 42884     50-60       5
## 42885     18-30      10
## 42886       65+       4
## 42887     18-30      10
## 42888     40-50       5
## 42889     40-50       5
## 42890     18-30      10
## 42891     30-35       7
## 42892     18-30      10
## 42893     18-30      10
## 42894     18-30      10
## 42895     18-30      10
## 42896     18-30      10
## 42897     30-35       7
## 42898     18-30      10
## 42899     18-30      10
## 42900     30-35       7
## 42901     30-35       7
## 42902     18-30      10
## 42903     18-30      10
## 42904     18-30      10
## 42905     35-40       6
## 42906     18-30      10
## 42907     18-30      10
## 42908     35-40       6
## 42909     30-35       7
## 42910     18-30      10
## 42911     18-30      10
## 42912     18-30      10
## 42913     18-30      10
## 42914     35-40       6
## 42915     18-30      10
## 42916     18-30      10
## 42917     30-35       7
## 42918     35-40       6
## 42919     50-60       5
## 42920     18-30      10
## 42921     18-30      10
## 42922     18-30      10
## 42923     18-30      10
## 42924     18-30      10
## 42925     18-30      10
## 42926     18-30      10
## 42927     18-30      10
## 42928     18-30      10
## 42929     18-30      10
## 42930     50-60       5
## 42931     18-30      10
## 42932     18-30      10
## 42933     18-30      10
## 42934     30-35       7
## 42935     18-30      10
## 42936     18-30      10
## 42937     18-30      10
## 42938     30-35       7
## 42939     18-30      10
## 42940     18-30      10
## 42941     35-40       6
## 42942     50-60       5
## 42943     18-30      10
## 42944     35-40       6
## 42945     18-30      10
## 42946     30-35       7
## 42947     18-30      10
## 42948     18-30      10
## 42949     30-35       7
## 42950     50-60       5
## 42951     35-40       6
## 42952     35-40       6
## 42953     30-35       7
## 42954     30-35       7
## 42955       65+       4
## 42956     35-40       6
## 42957     35-40       6
## 42958     35-40       6
## 42959     18-30      10
## 42960     18-30      10
## 42961     40-50       5
## 42962     50-60       5
## 42963     35-40       6
## 42964     18-30      10
## 42965     18-30      10
## 42966     40-50       5
## 42967     35-40       6
## 42968     30-35       7
## 42969     30-35       7
## 42970     18-30      10
## 42971     18-30      10
## 42972       65+       4
## 42973     30-35       7
## 42974     50-60       5
## 42975     18-30      10
## 42976     30-35       7
## 42977     18-30      10
## 42978     18-30      10
## 42979     30-35       7
## 42980     50-60       5
## 42981     18-30      10
## 42982     18-30      10
## 42983     35-40       6
## 42984     35-40       6
## 42985     35-40       6
## 42986     18-30      10
## 42987     40-50       5
## 42988     18-30      10
## 42989     35-40       6
## 42990     30-35       7
## 42991     18-30      10
## 42992     18-30      10
## 42993     18-30      10
## 42994     18-30      10
## 42995     30-35       7
## 42996     18-30      10
## 42997     18-30      10
## 42998     18-30      10
## 42999     18-30      10
## 43000     40-50       5
## 43001     18-30      10
## 43002     18-30      10
## 43003     18-30      10
## 43004     18-30      10
## 43005     30-35       7
## 43006     18-30      10
## 43007     18-30      10
## 43008     18-30      10
## 43009     18-30      10
## 43010     18-30      10
## 43011     35-40       6
## 43012     40-50       5
## 43013     18-30      10
## 43014     18-30      10
## 43015     18-30      10
## 43016     30-35       7
## 43017     18-30      10
## 43018     18-30      10
## 43019     18-30      10
## 43020     30-35       7
## 43021     35-40       6
## 43022     18-30      10
## 43023     35-40       6
## 43024     18-30      10
## 43025     18-30      10
## 43026     18-30      10
## 43027     18-30      10
## 43028     40-50       5
## 43029     40-50       5
## 43030     18-30      10
## 43031     18-30      10
## 43032     18-30      10
## 43033     18-30      10
## 43034     18-30      10
## 43035     18-30      10
## 43036     30-35       7
## 43037     18-30      10
## 43038     40-50       5
## 43039     18-30      10
## 43040     18-30      10
## 43041     30-35       7
## 43042     40-50       5
## 43043     18-30      10
## 43044     18-30      10
## 43045     30-35       7
## 43046     30-35       7
## 43047     30-35       7
## 43048     18-30      10
## 43049     18-30      10
## 43050     40-50       5
## 43051     30-35       7
## 43052     35-40       6
## 43053     40-50       5
## 43054     30-35       7
## 43055     30-35       7
## 43056     18-30      10
## 43057       65+       4
## 43058     18-30      10
## 43059     30-35       7
## 43060     50-60       5
## 43061     18-30      10
## 43062     30-35       7
## 43063     35-40       6
## 43064     35-40       6
## 43065     18-30      10
## 43066     30-35       7
## 43067     40-50       5
## 43068     18-30      10
## 43069     18-30      10
## 43070     35-40       6
## 43071     30-35       7
## 43072     40-50       5
## 43073     30-35       7
## 43074     18-30      10
## 43075     30-35       7
## 43076     30-35       7
## 43077     30-35       7
## 43078     18-30      10
## 43079     18-30      10
## 43080     18-30      10
## 43081     40-50       5
## 43082     18-30      10
## 43083     18-30      10
## 43084     18-30      10
## 43085     35-40       6
## 43086     18-30      10
## 43087     18-30      10
## 43088     18-30      10
## 43089     40-50       5
## 43090     18-30      10
## 43091     18-30      10
## 43092     30-35       7
## 43093     18-30      10
## 43094     30-35       7
## 43095     18-30      10
## 43096     18-30      10
## 43097     18-30      10
## 43098     18-30      10
## 43099     40-50       5
## 43100     18-30      10
## 43101     18-30      10
## 43102     18-30      10
## 43103     18-30      10
## 43104     30-35       7
## 43105     18-30      10
## 43106     18-30      10
## 43107     18-30      10
## 43108     18-30      10
## 43109     18-30      10
## 43110     18-30      10
## 43111     30-35       7
## 43112     18-30      10
## 43113     18-30      10
## 43114     30-35       7
## 43115     18-30      10
## 43116     18-30      10
## 43117     18-30      10
## 43118     30-35       7
## 43119     18-30      10
## 43120     30-35       7
## 43121     18-30      10
## 43122     30-35       7
## 43123     18-30      10
## 43124     18-30      10
## 43125     18-30      10
## 43126     35-40       6
## 43127     40-50       5
## 43128     30-35       7
## 43129     30-35       7
## 43130     35-40       6
## 43131     30-35       7
## 43132     30-35       7
## 43133     18-30      10
## 43134     18-30      10
## 43135     18-30      10
## 43136     30-35       7
## 43137     18-30      10
## 43138     30-35       7
## 43139     18-30      10
## 43140     30-35       7
## 43141     30-35       7
## 43142       65+       4
## 43143     18-30      10
## 43144     18-30      10
## 43145     18-30      10
## 43146     18-30      10
## 43147     18-30      10
## 43148     18-30      10
## 43149     18-30      10
## 43150     40-50       5
## 43151     18-30      10
## 43152     50-60       5
## 43153     18-30      10
## 43154     30-35       7
## 43155     30-35       7
## 43156     18-30      10
## 43157     18-30      10
## 43158     18-30      10
## 43159     18-30      10
## 43160     40-50       5
## 43161     18-30      10
## 43162     18-30      10
## 43163     18-30      10
## 43164     35-40       6
## 43165     30-35       7
## 43166     18-30      10
## 43167     35-40       6
## 43168     18-30      10
## 43169     18-30      10
## 43170     35-40       6
## 43171     18-30      10
## 43172     40-50       5
## 43173     18-30      10
## 43174     30-35       7
## 43175       65+       4
## 43176     40-50       5
## 43177     40-50       5
## 43178     18-30      10
## 43179     30-35       7
## 43180     18-30      10
## 43181     40-50       5
## 43182       65+       4
## 43183     30-35       7
## 43184     18-30      10
## 43185     18-30      10
## 43186     18-30      10
## 43187     30-35       7
## 43188     18-30      10
## 43189     18-30      10
## 43190     30-35       7
## 43191     18-30      10
## 43192     18-30      10
## 43193     18-30      10
## 43194     18-30      10
## 43195     40-50       5
## 43196     40-50       5
## 43197     30-35       7
## 43198     18-30      10
## 43199       65+       4
## 43200     18-30      10
## 43201     18-30      10
## 43202     30-35       7
## 43203     35-40       6
## 43204     30-35       7
## 43205     18-30      10
## 43206     35-40       6
## 43207     18-30      10
## 43208     40-50       5
## 43209     18-30      10
## 43210     18-30      10
## 43211     35-40       6
## 43212     30-35       7
## 43213     18-30      10
## 43214     18-30      10
## 43215     35-40       6
## 43216     18-30      10
## 43217     18-30      10
## 43218     30-35       7
## 43219     30-35       7
## 43220     50-60       5
## 43221     18-30      10
## 43222     30-35       7
## 43223     40-50       5
## 43224     30-35       7
## 43225     35-40       6
## 43226     35-40       6
## 43227     40-50       5
## 43228     18-30      10
## 43229     18-30      10
## 43230     18-30      10
## 43231     18-30      10
## 43232       65+       4
## 43233     18-30      10
## 43234     18-30      10
## 43235     18-30      10
## 43236     35-40       6
## 43237     18-30      10
## 43238     18-30      10
## 43239     18-30      10
## 43240     18-30      10
## 43241       65+       4
## 43242     18-30      10
## 43243     18-30      10
## 43244     30-35       7
## 43245     18-30      10
## 43246     18-30      10
## 43247     40-50       5
## 43248     35-40       6
## 43249     18-30      10
## 43250     18-30      10
## 43251     18-30      10
## 43252     18-30      10
## 43253     18-30      10
## 43254     30-35       7
## 43255     30-35       7
## 43256     40-50       5
## 43257     18-30      10
## 43258     30-35       7
## 43259     18-30      10
## 43260     40-50       5
## 43261     35-40       6
## 43262     18-30      10
## 43263     40-50       5
## 43264     18-30      10
## 43265     18-30      10
## 43266     35-40       6
## 43267     50-60       5
## 43268     30-35       7
## 43269     18-30      10
## 43270     18-30      10
## 43271     35-40       6
## 43272     18-30      10
## 43273     18-30      10
## 43274     18-30      10
## 43275     40-50       5
## 43276     18-30      10
## 43277     18-30      10
## 43278     18-30      10
## 43279     40-50       5
## 43280     18-30      10
## 43281     40-50       5
## 43282     18-30      10
## 43283     18-30      10
## 43284     18-30      10
## 43285     18-30      10
## 43286     18-30      10
## 43287     30-35       7
## 43288     18-30      10
## 43289     18-30      10
## 43290     40-50       5
## 43291     18-30      10
## 43292       65+       4
## 43293     30-35       7
## 43294     30-35       7
## 43295     18-30      10
## 43296     18-30      10
## 43297     18-30      10
## 43298     18-30      10
## 43299     18-30      10
## 43300     18-30      10
## 43301     40-50       5
## 43302     18-30      10
## 43303     35-40       6
## 43304     18-30      10
## 43305     18-30      10
## 43306     18-30      10
## 43307     18-30      10
## 43308     18-30      10
## 43309     18-30      10
## 43310     40-50       5
## 43311     18-30      10
## 43312     18-30      10
## 43313     18-30      10
## 43314     18-30      10
## 43315     18-30      10
## 43316     50-60       5
## 43317     30-35       7
## 43318     18-30      10
## 43319     30-35       7
## 43320     18-30      10
## 43321     18-30      10
## 43322     18-30      10
## 43323     18-30      10
## 43324     18-30      10
## 43325     18-30      10
## 43326     18-30      10
## 43327     35-40       6
## 43328     30-35       7
## 43329     18-30      10
## 43330     30-35       7
## 43331     30-35       7
## 43332     18-30      10
## 43333     18-30      10
## 43334     30-35       7
## 43335     18-30      10
## 43336     30-35       7
## 43337     18-30      10
## 43338       65+       4
## 43339     30-35       7
## 43340     50-60       5
## 43341     18-30      10
## 43342     30-35       7
## 43343     40-50       5
## 43344     18-30      10
## 43345     18-30      10
## 43346     18-30      10
## 43347     18-30      10
## 43348     30-35       7
## 43349     35-40       6
## 43350     18-30      10
## 43351     40-50       5
## 43352     40-50       5
## 43353     18-30      10
## 43354     18-30      10
## 43355     18-30      10
## 43356     30-35       7
## 43357     40-50       5
## 43358     18-30      10
## 43359     35-40       6
## 43360     18-30      10
## 43361     18-30      10
## 43362     18-30      10
## 43363     18-30      10
## 43364     40-50       5
## 43365     40-50       5
## 43366     18-30      10
## 43367     18-30      10
## 43368     35-40       6
## 43369     40-50       5
## 43370     40-50       5
## 43371     30-35       7
## 43372     18-30      10
## 43373     35-40       6
## 43374     18-30      10
## 43375     30-35       7
## 43376     30-35       7
## 43377     18-30      10
## 43378     18-30      10
## 43379     35-40       6
## 43380     40-50       5
## 43381     35-40       6
## 43382     18-30      10
## 43383     30-35       7
## 43384     18-30      10
## 43385     18-30      10
## 43386     18-30      10
## 43387     40-50       5
## 43388     18-30      10
## 43389     18-30      10
## 43390     30-35       7
## 43391     40-50       5
## 43392     18-30      10
## 43393     18-30      10
## 43394     18-30      10
## 43395     50-60       5
## 43396     18-30      10
## 43397     30-35       7
## 43398     18-30      10
## 43399       65+       4
## 43400     18-30      10
## 43401     18-30      10
## 43402     18-30      10
## 43403       65+       4
## 43404     18-30      10
## 43405     40-50       5
## 43406     18-30      10
## 43407     18-30      10
## 43408     18-30      10
## 43409     18-30      10
## 43410     35-40       6
## 43411     18-30      10
## 43412     18-30      10
## 43413     18-30      10
## 43414     35-40       6
## 43415     18-30      10
## 43416     18-30      10
## 43417     18-30      10
## 43418     18-30      10
## 43419     40-50       5
## 43420     18-30      10
## 43421     30-35       7
## 43422     18-30      10
## 43423     18-30      10
## 43424     40-50       5
## 43425     18-30      10
## 43426     18-30      10
## 43427     18-30      10
## 43428     18-30      10
## 43429     35-40       6
## 43430     18-30      10
## 43431     18-30      10
## 43432     18-30      10
## 43433     35-40       6
## 43434     18-30      10
## 43435     18-30      10
## 43436     18-30      10
## 43437     18-30      10
## 43438     18-30      10
## 43439     18-30      10
## 43440     18-30      10
## 43441     18-30      10
## 43442     18-30      10
## 43443     18-30      10
## 43444     18-30      10
## 43445     35-40       6
## 43446     18-30      10
## 43447     18-30      10
## 43448     35-40       6
## 43449     40-50       5
## 43450     18-30      10
## 43451     18-30      10
## 43452     30-35       7
## 43453     18-30      10
## 43454     18-30      10
## 43455     18-30      10
## 43456     50-60       5
## 43457     18-30      10
## 43458     18-30      10
## 43459     18-30      10
## 43460     18-30      10
## 43461     35-40       6
## 43462     18-30      10
## 43463     35-40       6
## 43464     18-30      10
## 43465     18-30      10
## 43466       65+       4
## 43467     18-30      10
## 43468     18-30      10
## 43469     30-35       7
## 43470     18-30      10
## 43471     30-35       7
## 43472     18-30      10
## 43473     30-35       7
## 43474     30-35       7
## 43475     18-30      10
## 43476     18-30      10
## 43477     30-35       7
## 43478     35-40       6
## 43479     18-30      10
## 43480     40-50       5
## 43481     18-30      10
## 43482     18-30      10
## 43483     40-50       5
## 43484     18-30      10
## 43485     35-40       6
## 43486     18-30      10
## 43487     18-30      10
## 43488     18-30      10
## 43489     18-30      10
## 43490     18-30      10
## 43491     50-60       5
## 43492     18-30      10
## 43493     18-30      10
## 43494     18-30      10
## 43495     30-35       7
## 43496     35-40       6
## 43497     18-30      10
## 43498     18-30      10
## 43499     35-40       6
## 43500     18-30      10
## 43501     18-30      10
## 43502     18-30      10
## 43503     18-30      10
## 43504     35-40       6
## 43505     18-30      10
## 43506     40-50       5
## 43507     50-60       5
## 43508     18-30      10
## 43509     30-35       7
## 43510     18-30      10
## 43511     18-30      10
## 43512     18-30      10
## 43513     18-30      10
## 43514     50-60       5
## 43515     30-35       7
## 43516     18-30      10
## 43517     40-50       5
## 43518     18-30      10
## 43519     18-30      10
## 43520     18-30      10
## 43521     18-30      10
## 43522     18-30      10
## 43523     35-40       6
## 43524     18-30      10
## 43525     30-35       7
## 43526     18-30      10
## 43527     40-50       5
## 43528       65+       4
## 43529     35-40       6
## 43530     50-60       5
## 43531     40-50       5
## 43532     18-30      10
## 43533     35-40       6
## 43534     30-35       7
## 43535     18-30      10
## 43536     30-35       7
## 43537     18-30      10
## 43538     50-60       5
## 43539     18-30      10
## 43540     35-40       6
## 43541     30-35       7
## 43542     18-30      10
## 43543     18-30      10
## 43544     18-30      10
## 43545     30-35       7
## 43546     40-50       5
## 43547     18-30      10
## 43548     50-60       5
## 43549     30-35       7
## 43550     18-30      10
## 43551     18-30      10
## 43552     30-35       7
## 43553     40-50       5
## 43554     18-30      10
## 43555     35-40       6
## 43556     18-30      10
## 43557     18-30      10
## 43558     30-35       7
## 43559     18-30      10
## 43560     18-30      10
## 43561     18-30      10
## 43562     30-35       7
## 43563     40-50       5
## 43564     40-50       5
## 43565     18-30      10
## 43566     18-30      10
## 43567     18-30      10
## 43568     18-30      10
## 43569     35-40       6
## 43570     18-30      10
## 43571     40-50       5
## 43572     18-30      10
## 43573     35-40       6
## 43574     18-30      10
## 43575     18-30      10
## 43576     40-50       5
## 43577     18-30      10
## 43578     18-30      10
## 43579     18-30      10
## 43580     18-30      10
## 43581     18-30      10
## 43582     18-30      10
## 43583     30-35       7
## 43584     30-35       7
## 43585     18-30      10
## 43586     50-60       5
## 43587     30-35       7
## 43588     18-30      10
## 43589     18-30      10
## 43590     30-35       7
## 43591     18-30      10
## 43592     30-35       7
## 43593     18-30      10
## 43594     18-30      10
## 43595     40-50       5
## 43596     30-35       7
## 43597     35-40       6
## 43598       65+       4
## 43599     18-30      10
## 43600     18-30      10
## 43601     40-50       5
## 43602     18-30      10
## 43603     18-30      10
## 43604     18-30      10
## 43605     40-50       5
## 43606     40-50       5
## 43607     18-30      10
## 43608     18-30      10
## 43609     18-30      10
## 43610     30-35       7
## 43611     30-35       7
## 43612     18-30      10
## 43613     50-60       5
## 43614     18-30      10
## 43615     18-30      10
## 43616     40-50       5
## 43617     18-30      10
## 43618     50-60       5
## 43619     40-50       5
## 43620     30-35       7
## 43621     40-50       5
## 43622     35-40       6
## 43623     18-30      10
## 43624     18-30      10
## 43625     18-30      10
## 43626     40-50       5
## 43627     40-50       5
## 43628     30-35       7
## 43629     18-30      10
## 43630     30-35       7
## 43631     18-30      10
## 43632     30-35       7
## 43633     18-30      10
## 43634     30-35       7
## 43635     18-30      10
## 43636     18-30      10
## 43637     40-50       5
## 43638     18-30      10
## 43639     35-40       6
## 43640     50-60       5
## 43641     18-30      10
## 43642     18-30      10
## 43643     35-40       6
## 43644     18-30      10
## 43645     18-30      10
## 43646     30-35       7
## 43647     35-40       6
## 43648     18-30      10
## 43649     18-30      10
## 43650     40-50       5
## 43651       65+       4
## 43652     50-60       5
## 43653     18-30      10
## 43654     35-40       6
## 43655     40-50       5
## 43656     30-35       7
## 43657     18-30      10
## 43658     30-35       7
## 43659     18-30      10
## 43660     18-30      10
## 43661     40-50       5
## 43662     18-30      10
## 43663     35-40       6
## 43664     18-30      10
## 43665     18-30      10
## 43666     18-30      10
## 43667     40-50       5
## 43668     18-30      10
## 43669     40-50       5
## 43670     18-30      10
## 43671     30-35       7
## 43672     18-30      10
## 43673     18-30      10
## 43674     18-30      10
## 43675     18-30      10
## 43676     18-30      10
## 43677     30-35       7
## 43678     18-30      10
## 43679     18-30      10
## 43680     18-30      10
## 43681     30-35       7
## 43682     40-50       5
## 43683     40-50       5
## 43684     30-35       7
## 43685     30-35       7
## 43686     18-30      10
## 43687     30-35       7
## 43688     18-30      10
## 43689     18-30      10
## 43690     30-35       7
## 43691     40-50       5
## 43692     18-30      10
## 43693     18-30      10
## 43694     18-30      10
## 43695     18-30      10
## 43696     30-35       7
## 43697     18-30      10
## 43698     18-30      10
## 43699     18-30      10
## 43700     18-30      10
## 43701     35-40       6
## 43702     18-30      10
## 43703     18-30      10
## 43704     18-30      10
## 43705     18-30      10
## 43706     18-30      10
## 43707     18-30      10
## 43708     18-30      10
## 43709     18-30      10
## 43710     18-30      10
## 43711     18-30      10
## 43712     30-35       7
## 43713     18-30      10
## 43714     18-30      10
## 43715     18-30      10
## 43716     18-30      10
## 43717     30-35       7
## 43718     18-30      10
## 43719     40-50       5
## 43720     18-30      10
## 43721     30-35       7
## 43722     18-30      10
## 43723     18-30      10
## 43724     18-30      10
## 43725     30-35       7
## 43726     30-35       7
## 43727     18-30      10
## 43728     18-30      10
## 43729     18-30      10
## 43730     30-35       7
## 43731     35-40       6
## 43732     18-30      10
## 43733     18-30      10
## 43734     30-35       7
## 43735     18-30      10
## 43736     18-30      10
## 43737       65+       4
## 43738     40-50       5
## 43739     30-35       7
## 43740     40-50       5
## 43741     40-50       5
## 43742     18-30      10
## 43743     18-30      10
## 43744     50-60       5
## 43745     18-30      10
## 43746     35-40       6
## 43747     18-30      10
## 43748     18-30      10
## 43749     30-35       7
## 43750     18-30      10
## 43751     18-30      10
## 43752     40-50       5
## 43753     30-35       7
## 43754     18-30      10
## 43755     18-30      10
## 43756     50-60       5
## 43757     40-50       5
## 43758     35-40       6
## 43759     18-30      10
## 43760     18-30      10
## 43761     18-30      10
## 43762     18-30      10
## 43763     40-50       5
## 43764     18-30      10
## 43765     18-30      10
## 43766     35-40       6
## 43767     18-30      10
## 43768     18-30      10
## 43769     30-35       7
## 43770     40-50       5
## 43771     18-30      10
## 43772     18-30      10
## 43773     18-30      10
## 43774     18-30      10
## 43775     35-40       6
## 43776     40-50       5
## 43777     50-60       5
## 43778     30-35       7
## 43779     18-30      10
## 43780     40-50       5
## 43781     30-35       7
## 43782     30-35       7
## 43783     18-30      10
## 43784     18-30      10
## 43785     18-30      10
## 43786     18-30      10
## 43787     18-30      10
## 43788     18-30      10
## 43789     30-35       7
## 43790     18-30      10
## 43791     18-30      10
## 43792     50-60       5
## 43793     18-30      10
## 43794     50-60       5
## 43795     18-30      10
## 43796     18-30      10
## 43797     50-60       5
## 43798     18-30      10
## 43799     35-40       6
## 43800     40-50       5
## 43801     18-30      10
## 43802     18-30      10
## 43803     18-30      10
## 43804     18-30      10
## 43805     30-35       7
## 43806     18-30      10
## 43807     35-40       6
## 43808     18-30      10
## 43809     18-30      10
## 43810     40-50       5
## 43811     18-30      10
## 43812     18-30      10
## 43813     18-30      10
## 43814     30-35       7
## 43815     30-35       7
## 43816     18-30      10
## 43817     18-30      10
## 43818     18-30      10
## 43819     18-30      10
## 43820     18-30      10
## 43821     18-30      10
## 43822     18-30      10
## 43823     18-30      10
## 43824     18-30      10
## 43825     30-35       7
## 43826     18-30      10
## 43827     50-60       5
## 43828     30-35       7
## 43829     30-35       7
## 43830     18-30      10
## 43831     18-30      10
## 43832     18-30      10
## 43833     18-30      10
## 43834     30-35       7
## 43835     18-30      10
## 43836     18-30      10
## 43837     18-30      10
## 43838     18-30      10
## 43839     30-35       7
## 43840     18-30      10
## 43841     18-30      10
## 43842     18-30      10
## 43843     30-35       7
## 43844     18-30      10
## 43845     30-35       7
## 43846     18-30      10
## 43847     50-60       5
## 43848     18-30      10
## 43849     18-30      10
## 43850     18-30      10
## 43851     35-40       6
## 43852     18-30      10
## 43853     18-30      10
## 43854     40-50       5
## 43855     18-30      10
## 43856     40-50       5
## 43857     18-30      10
## 43858     40-50       5
## 43859     18-30      10
## 43860     18-30      10
## 43861     18-30      10
## 43862     18-30      10
## 43863     18-30      10
## 43864     18-30      10
## 43865     18-30      10
## 43866     18-30      10
## 43867     35-40       6
## 43868     35-40       6
## 43869     18-30      10
## 43870     18-30      10
## 43871       65+       4
## 43872     18-30      10
## 43873     18-30      10
## 43874     18-30      10
## 43875     40-50       5
## 43876     30-35       7
## 43877     18-30      10
## 43878     18-30      10
## 43879     18-30      10
## 43880     18-30      10
## 43881       65+       4
## 43882     30-35       7
## 43883     18-30      10
## 43884     50-60       5
## 43885     18-30      10
## 43886     35-40       6
## 43887     30-35       7
## 43888     18-30      10
## 43889     18-30      10
## 43890     18-30      10
## 43891     18-30      10
## 43892     40-50       5
## 43893     40-50       5
## 43894     40-50       5
## 43895     50-60       5
## 43896     40-50       5
## 43897     35-40       6
## 43898     18-30      10
## 43899     40-50       5
## 43900     18-30      10
## 43901     18-30      10
## 43902     35-40       6
## 43903     18-30      10
## 43904     40-50       5
## 43905     18-30      10
## 43906     40-50       5
## 43907     30-35       7
## 43908     18-30      10
## 43909     18-30      10
## 43910     18-30      10
## 43911     18-30      10
## 43912     30-35       7
## 43913     40-50       5
## 43914     35-40       6
## 43915     18-30      10
## 43916     30-35       7
## 43917     18-30      10
## 43918     18-30      10
## 43919     18-30      10
## 43920     35-40       6
## 43921     18-30      10
## 43922     18-30      10
## 43923     18-30      10
## 43924     18-30      10
## 43925     40-50       5
## 43926     18-30      10
## 43927     18-30      10
## 43928     30-35       7
## 43929     18-30      10
## 43930     18-30      10
## 43931     50-60       5
## 43932     18-30      10
## 43933     35-40       6
## 43934     18-30      10
## 43935     18-30      10
## 43936     18-30      10
## 43937     18-30      10
## 43938     18-30      10
## 43939     30-35       7
## 43940     18-30      10
## 43941     18-30      10
## 43942     18-30      10
## 43943     18-30      10
## 43944     18-30      10
## 43945     18-30      10
## 43946     18-30      10
## 43947     40-50       5
## 43948     18-30      10
## 43949     30-35       7
## 43950     18-30      10
## 43951     40-50       5
## 43952     30-35       7
## 43953     18-30      10
## 43954     35-40       6
## 43955     18-30      10
## 43956     30-35       7
## 43957     35-40       6
## 43958     30-35       7
## 43959     18-30      10
## 43960     18-30      10
## 43961     18-30      10
## 43962     40-50       5
## 43963     40-50       5
## 43964     18-30      10
## 43965     18-30      10
## 43966     30-35       7
## 43967     18-30      10
## 43968     18-30      10
## 43969     18-30      10
## 43970     18-30      10
## 43971     18-30      10
## 43972     40-50       5
## 43973     18-30      10
## 43974     30-35       7
## 43975       65+       4
## 43976     18-30      10
## 43977     18-30      10
## 43978     35-40       6
## 43979     18-30      10
## 43980     18-30      10
## 43981     40-50       5
## 43982     18-30      10
## 43983     18-30      10
## 43984     50-60       5
## 43985     18-30      10
## 43986     35-40       6
## 43987     30-35       7
## 43988     18-30      10
## 43989     30-35       7
## 43990     18-30      10
## 43991       65+       4
## 43992     18-30      10
## 43993     18-30      10
## 43994     18-30      10
## 43995     18-30      10
## 43996     18-30      10
## 43997     18-30      10
## 43998     40-50       5
## 43999     35-40       6
## 44000     18-30      10
## 44001     18-30      10
## 44002     18-30      10
## 44003     18-30      10
## 44004     18-30      10
## 44005     40-50       5
## 44006     18-30      10
## 44007     18-30      10
## 44008     35-40       6
## 44009     18-30      10
## 44010     18-30      10
## 44011     40-50       5
## 44012     35-40       6
## 44013     18-30      10
## 44014     18-30      10
## 44015     18-30      10
## 44016     18-30      10
## 44017     30-35       7
## 44018     40-50       5
## 44019     30-35       7
## 44020     30-35       7
## 44021     18-30      10
## 44022     18-30      10
## 44023     18-30      10
## 44024     18-30      10
## 44025     18-30      10
## 44026     18-30      10
## 44027     18-30      10
## 44028     30-35       7
## 44029     18-30      10
## 44030     40-50       5
## 44031     18-30      10
## 44032     18-30      10
## 44033     18-30      10
## 44034     30-35       7
## 44035     18-30      10
## 44036     40-50       5
## 44037     30-35       7
## 44038     50-60       5
## 44039     30-35       7
## 44040     18-30      10
## 44041     35-40       6
## 44042     18-30      10
## 44043     18-30      10
## 44044     30-35       7
## 44045       65+       4
## 44046     35-40       6
## 44047     18-30      10
## 44048     50-60       5
## 44049     18-30      10
## 44050     18-30      10
## 44051     18-30      10
## 44052     18-30      10
## 44053     30-35       7
## 44054     18-30      10
## 44055     18-30      10
## 44056       65+       4
## 44057     50-60       5
## 44058     30-35       7
## 44059     40-50       5
## 44060     50-60       5
## 44061     18-30      10
## 44062     18-30      10
## 44063     35-40       6
## 44064     18-30      10
## 44065     35-40       6
## 44066     50-60       5
## 44067     40-50       5
## 44068     18-30      10
## 44069     18-30      10
## 44070     18-30      10
## 44071     18-30      10
## 44072     18-30      10
## 44073     18-30      10
## 44074     35-40       6
## 44075     40-50       5
## 44076     30-35       7
## 44077     30-35       7
## 44078     30-35       7
## 44079     30-35       7
## 44080     18-30      10
## 44081     18-30      10
## 44082     18-30      10
## 44083     30-35       7
## 44084     18-30      10
## 44085     18-30      10
## 44086     50-60       5
## 44087     18-30      10
## 44088     18-30      10
## 44089     35-40       6
## 44090     35-40       6
## 44091     18-30      10
## 44092     18-30      10
## 44093     18-30      10
## 44094     18-30      10
## 44095     18-30      10
## 44096     30-35       7
## 44097     18-30      10
## 44098     30-35       7
## 44099     50-60       5
## 44100     18-30      10
## 44101     18-30      10
## 44102     35-40       6
## 44103     35-40       6
## 44104     18-30      10
## 44105     30-35       7
## 44106     18-30      10
## 44107     18-30      10
## 44108     40-50       5
## 44109     18-30      10
## 44110     18-30      10
## 44111     40-50       5
## 44112     18-30      10
## 44113     50-60       5
## 44114     40-50       5
## 44115     35-40       6
## 44116     30-35       7
## 44117     30-35       7
## 44118     18-30      10
## 44119     18-30      10
## 44120     35-40       6
## 44121     18-30      10
## 44122     18-30      10
## 44123     18-30      10
## 44124     30-35       7
## 44125     18-30      10
## 44126     18-30      10
## 44127     18-30      10
## 44128     18-30      10
## 44129     18-30      10
## 44130     18-30      10
## 44131     30-35       7
## 44132     18-30      10
## 44133     18-30      10
## 44134     40-50       5
## 44135     18-30      10
## 44136     18-30      10
## 44137     35-40       6
## 44138     18-30      10
## 44139     40-50       5
## 44140     40-50       5
## 44141     18-30      10
## 44142     18-30      10
## 44143     18-30      10
## 44144     30-35       7
## 44145     18-30      10
## 44146     18-30      10
## 44147     18-30      10
## 44148     18-30      10
## 44149     18-30      10
## 44150     18-30      10
## 44151     35-40       6
## 44152     18-30      10
## 44153     18-30      10
## 44154     30-35       7
## 44155     18-30      10
## 44156     30-35       7
## 44157     40-50       5
## 44158     35-40       6
## 44159     18-30      10
## 44160     50-60       5
## 44161     18-30      10
## 44162     18-30      10
## 44163     18-30      10
## 44164     30-35       7
## 44165     18-30      10
## 44166     18-30      10
## 44167     30-35       7
## 44168     18-30      10
## 44169     50-60       5
## 44170     30-35       7
## 44171     18-30      10
## 44172     18-30      10
## 44173     18-30      10
## 44174     35-40       6
## 44175     18-30      10
## 44176     18-30      10
## 44177       65+       4
## 44178     18-30      10
## 44179     18-30      10
## 44180     18-30      10
## 44181     40-50       5
## 44182     18-30      10
## 44183     18-30      10
## 44184     18-30      10
## 44185     30-35       7
## 44186     18-30      10
## 44187     18-30      10
## 44188     50-60       5
## 44189     18-30      10
## 44190     18-30      10
## 44191     18-30      10
## 44192     18-30      10
## 44193     18-30      10
## 44194     18-30      10
## 44195     18-30      10
## 44196     35-40       6
## 44197     30-35       7
## 44198     18-30      10
## 44199     40-50       5
## 44200     18-30      10
## 44201     35-40       6
## 44202     35-40       6
## 44203     18-30      10
## 44204     18-30      10
## 44205     18-30      10
## 44206     18-30      10
## 44207     18-30      10
## 44208     18-30      10
## 44209     18-30      10
## 44210     18-30      10
## 44211     18-30      10
## 44212     18-30      10
## 44213     40-50       5
## 44214     30-35       7
## 44215     30-35       7
## 44216     35-40       6
## 44217     40-50       5
## 44218       65+       4
## 44219     18-30      10
## 44220     18-30      10
## 44221     35-40       6
## 44222     18-30      10
## 44223     18-30      10
## 44224     30-35       7
## 44225     18-30      10
## 44226     18-30      10
## 44227     30-35       7
## 44228     18-30      10
## 44229     30-35       7
## 44230     40-50       5
## 44231     18-30      10
## 44232     40-50       5
## 44233     18-30      10
## 44234     30-35       7
## 44235     18-30      10
## 44236     30-35       7
## 44237     35-40       6
## 44238     40-50       5
## 44239     18-30      10
## 44240     18-30      10
## 44241     30-35       7
## 44242     18-30      10
## 44243     18-30      10
## 44244     18-30      10
## 44245     18-30      10
## 44246     18-30      10
## 44247     30-35       7
## 44248     18-30      10
## 44249       65+       4
## 44250     30-35       7
## 44251     18-30      10
## 44252     30-35       7
## 44253     18-30      10
## 44254     18-30      10
## 44255     50-60       5
## 44256     35-40       6
## 44257     18-30      10
## 44258     40-50       5
## 44259     30-35       7
## 44260     18-30      10
## 44261       65+       4
## 44262     18-30      10
## 44263     30-35       7
## 44264     18-30      10
## 44265     18-30      10
## 44266     18-30      10
## 44267     30-35       7
## 44268     18-30      10
## 44269     30-35       7
## 44270     30-35       7
## 44271     18-30      10
## 44272     40-50       5
## 44273     50-60       5
## 44274     40-50       5
## 44275     18-30      10
## 44276     30-35       7
## 44277     50-60       5
## 44278     40-50       5
## 44279     35-40       6
## 44280       65+       4
## 44281     18-30      10
## 44282     18-30      10
## 44283     18-30      10
## 44284     35-40       6
## 44285     18-30      10
## 44286     35-40       6
## 44287     18-30      10
## 44288     18-30      10
## 44289     18-30      10
## 44290     18-30      10
## 44291     18-30      10
## 44292     18-30      10
## 44293     30-35       7
## 44294     40-50       5
## 44295     40-50       5
## 44296     35-40       6
## 44297     18-30      10
## 44298     35-40       6
## 44299     35-40       6
## 44300     35-40       6
## 44301     40-50       5
## 44302     40-50       5
## 44303     35-40       6
## 44304     30-35       7
## 44305     18-30      10
## 44306     30-35       7
## 44307     40-50       5
## 44308     18-30      10
## 44309     18-30      10
## 44310     18-30      10
## 44311     18-30      10
## 44312     18-30      10
## 44313     18-30      10
## 44314     50-60       5
## 44315     40-50       5
## 44316     40-50       5
## 44317     35-40       6
## 44318       65+       4
## 44319     18-30      10
## 44320     30-35       7
## 44321     30-35       7
## 44322     18-30      10
## 44323     18-30      10
## 44324     35-40       6
## 44325     35-40       6
## 44326     35-40       6
## 44327     18-30      10
## 44328     18-30      10
## 44329     18-30      10
## 44330     35-40       6
## 44331     18-30      10
## 44332     30-35       7
## 44333     18-30      10
## 44334     18-30      10
## 44335     18-30      10
## 44336     18-30      10
## 44337     18-30      10
## 44338     50-60       5
## 44339     35-40       6
## 44340     35-40       6
## 44341     18-30      10
## 44342     18-30      10
## 44343     35-40       6
## 44344     18-30      10
## 44345     18-30      10
## 44346     40-50       5
## 44347     30-35       7
## 44348     18-30      10
## 44349     18-30      10
## 44350     18-30      10
## 44351     18-30      10
## 44352     35-40       6
## 44353     50-60       5
## 44354     40-50       5
## 44355     18-30      10
## 44356     30-35       7
## 44357     18-30      10
## 44358     18-30      10
## 44359     18-30      10
## 44360     18-30      10
## 44361     40-50       5
## 44362     18-30      10
## 44363     18-30      10
## 44364     35-40       6
## 44365     18-30      10
## 44366     18-30      10
## 44367     18-30      10
## 44368     18-30      10
## 44369     18-30      10
## 44370     18-30      10
## 44371     18-30      10
## 44372     18-30      10
## 44373     18-30      10
## 44374     18-30      10
## 44375     40-50       5
## 44376     18-30      10
## 44377     18-30      10
## 44378     40-50       5
## 44379     30-35       7
## 44380     35-40       6
## 44381     18-30      10
## 44382     18-30      10
## 44383     18-30      10
## 44384     30-35       7
## 44385     18-30      10
## 44386     35-40       6
## 44387     40-50       5
## 44388     18-30      10
## 44389     18-30      10
## 44390     40-50       5
## 44391     18-30      10
## 44392     30-35       7
## 44393     35-40       6
## 44394     30-35       7
## 44395     18-30      10
## 44396     30-35       7
## 44397     30-35       7
## 44398       65+       4
## 44399     18-30      10
## 44400     18-30      10
## 44401     18-30      10
## 44402     18-30      10
## 44403     30-35       7
## 44404     18-30      10
## 44405     40-50       5
## 44406     18-30      10
## 44407     18-30      10
## 44408     18-30      10
## 44409     30-35       7
## 44410     30-35       7
## 44411     30-35       7
## 44412     18-30      10
## 44413     18-30      10
## 44414     30-35       7
## 44415     18-30      10
## 44416     30-35       7
## 44417     50-60       5
## 44418     18-30      10
## 44419     18-30      10
## 44420     18-30      10
## 44421     30-35       7
## 44422     18-30      10
## 44423     18-30      10
## 44424     18-30      10
## 44425     18-30      10
## 44426     18-30      10
## 44427     35-40       6
## 44428     40-50       5
## 44429     18-30      10
## 44430     50-60       5
## 44431     18-30      10
## 44432     18-30      10
## 44433     30-35       7
## 44434     18-30      10
## 44435     18-30      10
## 44436     35-40       6
## 44437     18-30      10
## 44438     18-30      10
## 44439     18-30      10
## 44440     40-50       5
## 44441     18-30      10
## 44442     18-30      10
## 44443     18-30      10
## 44444     18-30      10
## 44445     18-30      10
## 44446     18-30      10
## 44447     40-50       5
## 44448     30-35       7
## 44449     30-35       7
## 44450     30-35       7
## 44451     30-35       7
## 44452     30-35       7
## 44453     30-35       7
## 44454     18-30      10
## 44455     35-40       6
## 44456     40-50       5
## 44457     18-30      10
## 44458     18-30      10
## 44459     35-40       6
## 44460     35-40       6
## 44461     35-40       6
## 44462     35-40       6
## 44463     50-60       5
## 44464     30-35       7
## 44465     35-40       6
## 44466     18-30      10
## 44467     18-30      10
## 44468     40-50       5
## 44469     18-30      10
## 44470     30-35       7
## 44471     35-40       6
## 44472     40-50       5
## 44473     30-35       7
## 44474     18-30      10
## 44475     18-30      10
## 44476     18-30      10
## 44477     30-35       7
## 44478     18-30      10
## 44479     30-35       7
## 44480     18-30      10
## 44481     40-50       5
## 44482     18-30      10
## 44483     40-50       5
## 44484     18-30      10
## 44485     40-50       5
## 44486     40-50       5
## 44487     35-40       6
## 44488     18-30      10
## 44489     30-35       7
## 44490     18-30      10
## 44491     30-35       7
## 44492     40-50       5
## 44493     18-30      10
## 44494     18-30      10
## 44495     18-30      10
## 44496     30-35       7
## 44497     35-40       6
## 44498     18-30      10
## 44499     18-30      10
## 44500     18-30      10
## 44501     30-35       7
## 44502     18-30      10
## 44503     35-40       6
## 44504     18-30      10
## 44505     30-35       7
## 44506     30-35       7
## 44507     35-40       6
## 44508     18-30      10
## 44509     18-30      10
## 44510     30-35       7
## 44511     30-35       7
## 44512     18-30      10
## 44513     18-30      10
## 44514     35-40       6
## 44515     18-30      10
## 44516     18-30      10
## 44517     18-30      10
## 44518     18-30      10
## 44519     18-30      10
## 44520     18-30      10
## 44521     35-40       6
## 44522     18-30      10
## 44523     35-40       6
## 44524     40-50       5
## 44525     30-35       7
## 44526     18-30      10
## 44527     18-30      10
## 44528     18-30      10
## 44529     18-30      10
## 44530     35-40       6
## 44531     18-30      10
## 44532     30-35       7
## 44533       65+       4
## 44534     18-30      10
## 44535     18-30      10
## 44536     40-50       5
## 44537       65+       4
## 44538     18-30      10
## 44539     40-50       5
## 44540     30-35       7
## 44541     18-30      10
## 44542     40-50       5
## 44543     18-30      10
## 44544     18-30      10
## 44545     18-30      10
## 44546     18-30      10
## 44547     35-40       6
## 44548     35-40       6
## 44549     50-60       5
## 44550     40-50       5
## 44551     30-35       7
## 44552     35-40       6
## 44553     50-60       5
## 44554     50-60       5
## 44555       65+       4
## 44556       65+       4
## 44557     35-40       6
## 44558     50-60       5
## 44559     40-50       5
## 44560     35-40       6
## 44561     50-60       5
## 44562     50-60       5
## 44563     40-50       5
## 44564     18-30      10
## 44565     18-30      10
## 44566     30-35       7
## 44567     35-40       6
## 44568     18-30      10
## 44569     18-30      10
## 44570     18-30      10
## 44571     30-35       7
## 44572     30-35       7
## 44573       65+       4
## 44574     18-30      10
## 44575     18-30      10
## 44576     18-30      10
## 44577     30-35       7
## 44578     50-60       5
## 44579     40-50       5
## 44580     40-50       5
## 44581     40-50       5
## 44582     40-50       5
## 44583     30-35       7
## 44584     18-30      10
## 44585     18-30      10
## 44586     35-40       6
## 44587     30-35       7
## 44588     18-30      10
## 44589     18-30      10
## 44590     40-50       5
## 44591       65+       4
## 44592       65+       4
## 44593     30-35       7
## 44594     35-40       6
## 44595     30-35       7
## 44596     18-30      10
## 44597       65+       4
## 44598     40-50       5
## 44599     18-30      10
## 44600     18-30      10
## 44601     18-30      10
## 44602     18-30      10
## 44603     18-30      10
## 44604     30-35       7
## 44605     35-40       6
## 44606     35-40       6
## 44607     18-30      10
## 44608     18-30      10
## 44609       65+       4
## 44610     18-30      10
## 44611     35-40       6
## 44612     18-30      10
## 44613     18-30      10
## 44614       65+       4
## 44615     18-30      10
## 44616     18-30      10
## 44617     18-30      10
## 44618     18-30      10
## 44619     35-40       6
## 44620     18-30      10
## 44621     35-40       6
## 44622     18-30      10
## 44623     18-30      10
## 44624     30-35       7
## 44625     40-50       5
## 44626     30-35       7
## 44627     18-30      10
## 44628     35-40       6
## 44629     40-50       5
## 44630     30-35       7
## 44631     18-30      10
## 44632     30-35       7
## 44633     40-50       5
## 44634     18-30      10
## 44635     35-40       6
## 44636     30-35       7
## 44637     18-30      10
## 44638     18-30      10
## 44639     18-30      10
## 44640     18-30      10
## 44641     30-35       7
## 44642     18-30      10
## 44643     40-50       5
## 44644     30-35       7
## 44645     50-60       5
## 44646     40-50       5
## 44647     40-50       5
## 44648     40-50       5
## 44649     18-30      10
## 44650     30-35       7
## 44651     18-30      10
## 44652     35-40       6
## 44653     18-30      10
## 44654     18-30      10
## 44655     30-35       7
## 44656     35-40       6
## 44657     18-30      10
## 44658     18-30      10
## 44659     18-30      10
## 44660     18-30      10
## 44661     35-40       6
## 44662     18-30      10
## 44663     18-30      10
## 44664     18-30      10
## 44665     18-30      10
## 44666     18-30      10
## 44667     35-40       6
## 44668     18-30      10
## 44669     40-50       5
## 44670     18-30      10
## 44671     50-60       5
## 44672     35-40       6
## 44673     18-30      10
## 44674     18-30      10
## 44675     18-30      10
## 44676     18-30      10
## 44677     40-50       5
## 44678     18-30      10
## 44679     18-30      10
## 44680     18-30      10
## 44681     30-35       7
## 44682     35-40       6
## 44683     40-50       5
## 44684     18-30      10
## 44685     30-35       7
## 44686     18-30      10
## 44687     40-50       5
## 44688     18-30      10
## 44689     40-50       5
## 44690     40-50       5
## 44691     18-30      10
## 44692     18-30      10
## 44693     18-30      10
## 44694     40-50       5
## 44695     40-50       5
## 44696     30-35       7
## 44697     18-30      10
## 44698     18-30      10
## 44699     35-40       6
## 44700     18-30      10
## 44701     18-30      10
## 44702     18-30      10
## 44703     18-30      10
## 44704     18-30      10
## 44705     30-35       7
## 44706     18-30      10
## 44707     30-35       7
## 44708     18-30      10
## 44709     35-40       6
## 44710     40-50       5
## 44711     50-60       5
## 44712     18-30      10
## 44713     18-30      10
## 44714     18-30      10
## 44715     18-30      10
## 44716     18-30      10
## 44717     18-30      10
## 44718     18-30      10
## 44719     18-30      10
## 44720     18-30      10
## 44721     30-35       7
## 44722     18-30      10
## 44723     18-30      10
## 44724     30-35       7
## 44725     18-30      10
## 44726     50-60       5
## 44727     30-35       7
## 44728     18-30      10
## 44729     18-30      10
## 44730     30-35       7
## 44731     18-30      10
## 44732     18-30      10
## 44733     18-30      10
## 44734     18-30      10
## 44735     18-30      10
## 44736     18-30      10
## 44737     18-30      10
## 44738     18-30      10
## 44739     18-30      10
## 44740     30-35       7
## 44741     18-30      10
## 44742     30-35       7
## 44743     30-35       7
## 44744     18-30      10
## 44745     30-35       7
## 44746     35-40       6
## 44747     18-30      10
## 44748     30-35       7
## 44749     18-30      10
## 44750     40-50       5
## 44751     40-50       5
## 44752     18-30      10
## 44753     18-30      10
## 44754     35-40       6
## 44755     18-30      10
## 44756     30-35       7
## 44757     18-30      10
## 44758     35-40       6
## 44759     35-40       6
## 44760     18-30      10
## 44761     18-30      10
## 44762     30-35       7
## 44763     18-30      10
## 44764     40-50       5
## 44765     18-30      10
## 44766     35-40       6
## 44767     30-35       7
## 44768     35-40       6
## 44769     35-40       6
## 44770     18-30      10
## 44771     18-30      10
## 44772     35-40       6
## 44773       65+       4
## 44774     18-30      10
## 44775     18-30      10
## 44776     35-40       6
## 44777     18-30      10
## 44778     18-30      10
## 44779     18-30      10
## 44780     30-35       7
## 44781     18-30      10
## 44782     18-30      10
## 44783     18-30      10
## 44784     18-30      10
## 44785     18-30      10
## 44786     35-40       6
## 44787     40-50       5
## 44788     40-50       5
## 44789     18-30      10
## 44790     18-30      10
## 44791     30-35       7
## 44792     18-30      10
## 44793     18-30      10
## 44794     35-40       6
## 44795     30-35       7
## 44796     40-50       5
## 44797     18-30      10
## 44798     35-40       6
## 44799     18-30      10
## 44800     30-35       7
## 44801     18-30      10
## 44802     18-30      10
## 44803     30-35       7
## 44804     40-50       5
## 44805     18-30      10
## 44806     18-30      10
## 44807     18-30      10
## 44808     18-30      10
## 44809     18-30      10
## 44810     50-60       5
## 44811     18-30      10
## 44812     18-30      10
## 44813     18-30      10
## 44814     40-50       5
## 44815     30-35       7
## 44816     30-35       7
## 44817     30-35       7
## 44818     18-30      10
## 44819     18-30      10
## 44820     30-35       7
## 44821     18-30      10
## 44822     30-35       7
## 44823     30-35       7
## 44824     18-30      10
## 44825     50-60       5
## 44826     30-35       7
## 44827     18-30      10
## 44828     18-30      10
## 44829     18-30      10
## 44830     18-30      10
## 44831     30-35       7
## 44832     35-40       6
## 44833     30-35       7
## 44834     18-30      10
## 44835     30-35       7
## 44836     18-30      10
## 44837     35-40       6
## 44838     30-35       7
## 44839     18-30      10
## 44840     30-35       7
## 44841     18-30      10
## 44842     18-30      10
## 44843     18-30      10
## 44844     40-50       5
## 44845     30-35       7
## 44846     30-35       7
## 44847     18-30      10
## 44848     40-50       5
## 44849     35-40       6
## 44850     18-30      10
## 44851     18-30      10
## 44852     18-30      10
## 44853     18-30      10
## 44854     18-30      10
## 44855     30-35       7
## 44856     18-30      10
## 44857     18-30      10
## 44858     30-35       7
## 44859     40-50       5
## 44860     18-30      10
## 44861     35-40       6
## 44862     30-35       7
## 44863     18-30      10
## 44864     50-60       5
## 44865     18-30      10
## 44866     40-50       5
## 44867     30-35       7
## 44868     40-50       5
## 44869     18-30      10
## 44870     40-50       5
## 44871     35-40       6
## 44872     18-30      10
## 44873     35-40       6
## 44874     18-30      10
## 44875     35-40       6
## 44876     18-30      10
## 44877     18-30      10
## 44878     18-30      10
## 44879     35-40       6
## 44880     18-30      10
## 44881     18-30      10
## 44882     18-30      10
## 44883     30-35       7
## 44884     18-30      10
## 44885     18-30      10
## 44886     18-30      10
## 44887     40-50       5
## 44888     35-40       6
## 44889     40-50       5
## 44890     18-30      10
## 44891     50-60       5
## 44892     40-50       5
## 44893     18-30      10
## 44894     18-30      10
## 44895     35-40       6
## 44896     18-30      10
## 44897     35-40       6
## 44898     35-40       6
## 44899     18-30      10
## 44900     18-30      10
## 44901     18-30      10
## 44902     30-35       7
## 44903     18-30      10
## 44904     18-30      10
## 44905     30-35       7
## 44906     18-30      10
## 44907     18-30      10
## 44908     18-30      10
## 44909     18-30      10
## 44910     18-30      10
## 44911     30-35       7
## 44912     30-35       7
## 44913     18-30      10
## 44914     18-30      10
## 44915     18-30      10
## 44916     18-30      10
## 44917     18-30      10
## 44918     18-30      10
## 44919     18-30      10
## 44920     30-35       7
## 44921     18-30      10
## 44922     18-30      10
## 44923     18-30      10
## 44924     30-35       7
## 44925     40-50       5
## 44926     50-60       5
## 44927     35-40       6
## 44928     18-30      10
## 44929     40-50       5
## 44930     40-50       5
## 44931     18-30      10
## 44932     40-50       5
## 44933     18-30      10
## 44934     18-30      10
## 44935     35-40       6
## 44936     35-40       6
## 44937     35-40       6
## 44938     18-30      10
## 44939     18-30      10
## 44940     18-30      10
## 44941     18-30      10
## 44942     18-30      10
## 44943     18-30      10
## 44944     18-30      10
## 44945     40-50       5
## 44946       65+       4
## 44947     40-50       5
## 44948     35-40       6
## 44949     18-30      10
## 44950     18-30      10
## 44951     18-30      10
## 44952     18-30      10
## 44953     18-30      10
## 44954     18-30      10
## 44955     18-30      10
## 44956     18-30      10
## 44957     18-30      10
## 44958     18-30      10
## 44959     18-30      10
## 44960     18-30      10
## 44961     30-35       7
## 44962     40-50       5
## 44963     18-30      10
## 44964     30-35       7
## 44965     50-60       5
## 44966     40-50       5
## 44967     35-40       6
## 44968     18-30      10
## 44969     18-30      10
## 44970     40-50       5
## 44971     18-30      10
## 44972     18-30      10
## 44973     18-30      10
## 44974     50-60       5
## 44975     35-40       6
## 44976     18-30      10
## 44977     30-35       7
## 44978     18-30      10
## 44979     18-30      10
## 44980     35-40       6
## 44981     18-30      10
## 44982     18-30      10
## 44983     35-40       6
## 44984     18-30      10
## 44985     40-50       5
## 44986     18-30      10
## 44987     30-35       7
## 44988     18-30      10
## 44989     30-35       7
## 44990     40-50       5
## 44991     18-30      10
## 44992     18-30      10
## 44993     18-30      10
## 44994     18-30      10
## 44995     18-30      10
## 44996     30-35       7
## 44997     40-50       5
## 44998     18-30      10
## 44999     50-60       5
## 45000     30-35       7
## 45001     18-30      10
## 45002     30-35       7
## 45003     18-30      10
## 45004     35-40       6
## 45005     18-30      10
## 45006     35-40       6
## 45007     40-50       5
## 45008     40-50       5
## 45009     18-30      10
## 45010     50-60       5
## 45011     18-30      10
## 45012     30-35       7
## 45013     30-35       7
## 45014     18-30      10
## 45015     18-30      10
## 45016     18-30      10
## 45017     35-40       6
## 45018     18-30      10
## 45019     18-30      10
## 45020     18-30      10
## 45021     35-40       6
## 45022     30-35       7
## 45023     30-35       7
## 45024     18-30      10
## 45025     50-60       5
## 45026     30-35       7
## 45027     18-30      10
## 45028     18-30      10
## 45029     18-30      10
## 45030     18-30      10
## 45031     35-40       6
## 45032     30-35       7
## 45033     30-35       7
## 45034     30-35       7
## 45035     30-35       7
## 45036     18-30      10
## 45037     18-30      10
## 45038     18-30      10
## 45039     18-30      10
## 45040     18-30      10
## 45041     50-60       5
## 45042     30-35       7
## 45043     18-30      10
## 45044     35-40       6
## 45045     30-35       7
## 45046     35-40       6
## 45047     18-30      10
## 45048     40-50       5
## 45049     18-30      10
## 45050     35-40       6
## 45051     18-30      10
## 45052     40-50       5
## 45053     40-50       5
## 45054     30-35       7
## 45055     35-40       6
## 45056     40-50       5
## 45057     30-35       7
## 45058     18-30      10
## 45059     18-30      10
## 45060     30-35       7
## 45061     18-30      10
## 45062     35-40       6
## 45063     18-30      10
## 45064     18-30      10
## 45065     18-30      10
## 45066     18-30      10
## 45067     18-30      10
## 45068     18-30      10
## 45069     18-30      10
## 45070     35-40       6
## 45071     30-35       7
## 45072     18-30      10
## 45073     30-35       7
## 45074     18-30      10
## 45075     35-40       6
## 45076     18-30      10
## 45077     30-35       7
## 45078     18-30      10
## 45079     18-30      10
## 45080     18-30      10
## 45081     18-30      10
## 45082     35-40       6
## 45083     40-50       5
## 45084     18-30      10
## 45085     35-40       6
## 45086     18-30      10
## 45087     40-50       5
## 45088     18-30      10
## 45089     30-35       7
## 45090     18-30      10
## 45091     35-40       6
## 45092     18-30      10
## 45093     18-30      10
## 45094     35-40       6
## 45095     18-30      10
## 45096     30-35       7
## 45097     30-35       7
## 45098     30-35       7
## 45099     35-40       6
## 45100     18-30      10
## 45101     30-35       7
## 45102     18-30      10
## 45103     18-30      10
## 45104     18-30      10
## 45105     30-35       7
## 45106     18-30      10
## 45107     18-30      10
## 45108     35-40       6
## 45109     35-40       6
## 45110     18-30      10
## 45111     18-30      10
## 45112     18-30      10
## 45113     35-40       6
## 45114     18-30      10
## 45115     18-30      10
## 45116     18-30      10
## 45117     35-40       6
## 45118     35-40       6
## 45119     40-50       5
## 45120     30-35       7
## 45121     18-30      10
## 45122     30-35       7
## 45123     30-35       7
## 45124     30-35       7
## 45125     30-35       7
## 45126     18-30      10
## 45127     18-30      10
## 45128     18-30      10
## 45129     30-35       7
## 45130     30-35       7
## 45131     18-30      10
## 45132     40-50       5
## 45133     30-35       7
## 45134     40-50       5
## 45135     18-30      10
## 45136     18-30      10
## 45137     40-50       5
## 45138     35-40       6
## 45139     30-35       7
## 45140     18-30      10
## 45141     30-35       7
## 45142     30-35       7
## 45143     40-50       5
## 45144     18-30      10
## 45145     18-30      10
## 45146     18-30      10
## 45147     18-30      10
## 45148     30-35       7
## 45149     18-30      10
## 45150     18-30      10
## 45151     30-35       7
## 45152     18-30      10
## 45153     50-60       5
## 45154     18-30      10
## 45155     18-30      10
## 45156     18-30      10
## 45157     18-30      10
## 45158       65+       4
## 45159     18-30      10
## 45160     18-30      10
## 45161     30-35       7
## 45162     35-40       6
## 45163     35-40       6
## 45164     18-30      10
## 45165     18-30      10
## 45166     18-30      10
## 45167     35-40       6
## 45168     18-30      10
## 45169     18-30      10
## 45170     30-35       7
## 45171     35-40       6
## 45172     18-30      10
## 45173     30-35       7
## 45174     35-40       6
## 45175       65+       4
## 45176     18-30      10
## 45177     30-35       7
## 45178     30-35       7
## 45179     18-30      10
## 45180     18-30      10
## 45181     18-30      10
## 45182     40-50       5
## 45183     18-30      10
## 45184     30-35       7
## 45185     18-30      10
## 45186     18-30      10
## 45187     30-35       7
## 45188     18-30      10
## 45189     35-40       6
## 45190     35-40       6
## 45191     30-35       7
## 45192     18-30      10
## 45193     30-35       7
## 45194     30-35       7
## 45195     35-40       6
## 45196     18-30      10
## 45197     30-35       7
## 45198     40-50       5
## 45199     18-30      10
## 45200       65+       4
## 45201     50-60       5
## 45202     50-60       5
## 45203     35-40       6
## 45204     18-30      10
## 45205     35-40       6
## 45206     18-30      10
## 45207     18-30      10
## 45208     30-35       7
## 45209     40-50       5
## 45210     30-35       7
## 45211     18-30      10
## 45212     18-30      10
## 45213     50-60       5
## 45214     18-30      10
## 45215     30-35       7
## 45216     18-30      10
## 45217     18-30      10
## 45218     40-50       5
## 45219     18-30      10
## 45220     40-50       5
## 45221     50-60       5
## 45222     18-30      10
## 45223     18-30      10
## 45224     18-30      10
## 45225     50-60       5
## 45226     18-30      10
## 45227     30-35       7
## 45228     40-50       5
## 45229     18-30      10
## 45230     18-30      10
## 45231     18-30      10
## 45232     30-35       7
## 45233     18-30      10
## 45234     50-60       5
## 45235     50-60       5
## 45236     40-50       5
## 45237     18-30      10
## 45238     18-30      10
## 45239     18-30      10
## 45240     30-35       7
## 45241       65+       4
## 45242     35-40       6
## 45243     30-35       7
## 45244     18-30      10
## 45245     18-30      10
## 45246     18-30      10
## 45247     18-30      10
## 45248       65+       4
## 45249     18-30      10
## 45250     50-60       5
## 45251     35-40       6
## 45252     18-30      10
## 45253     40-50       5
## 45254     18-30      10
## 45255     18-30      10
## 45256     50-60       5
## 45257     35-40       6
## 45258     30-35       7
## 45259     35-40       6
## 45260     18-30      10
## 45261     18-30      10
## 45262     35-40       6
## 45263     30-35       7
## 45264     18-30      10
## 45265     40-50       5
## 45266     35-40       6
## 45267     35-40       6
## 45268     18-30      10
## 45269     18-30      10
## 45270     18-30      10
## 45271     18-30      10
## 45272     30-35       7
## 45273     35-40       6
## 45274     18-30      10
## 45275     40-50       5
## 45276     30-35       7
## 45277     30-35       7
## 45278     35-40       6
## 45279     18-30      10
## 45280     40-50       5
## 45281     30-35       7
## 45282     18-30      10
## 45283     30-35       7
## 45284     18-30      10
## 45285     18-30      10
## 45286     35-40       6
## 45287     40-50       5
## 45288     40-50       5
## 45289     18-30      10
## 45290     30-35       7
## 45291     50-60       5
## 45292     18-30      10
## 45293     18-30      10
## 45294     18-30      10
## 45295     30-35       7
## 45296     30-35       7
## 45297     30-35       7
## 45298     18-30      10
## 45299     40-50       5
## 45300     18-30      10
## 45301     40-50       5
## 45302     40-50       5
## 45303       65+       4
## 45304     30-35       7
## 45305     18-30      10
## 45306     18-30      10
## 45307     18-30      10
## 45308     18-30      10
## 45309     18-30      10
## 45310     40-50       5
## 45311     50-60       5
## 45312     18-30      10
## 45313       65+       4
## 45314     30-35       7
## 45315     18-30      10
## 45316     40-50       5
## 45317     40-50       5
## 45318     18-30      10
## 45319     18-30      10
## 45320     18-30      10
## 45321     18-30      10
## 45322     40-50       5
## 45323     50-60       5
## 45324     18-30      10
## 45325     18-30      10
## 45326     30-35       7
## 45327     18-30      10
## 45328     18-30      10
## 45329     35-40       6
## 45330     35-40       6
## 45331     18-30      10
## 45332     18-30      10
## 45333     30-35       7
## 45334     18-30      10
## 45335     18-30      10
## 45336     18-30      10
## 45337     18-30      10
## 45338     18-30      10
## 45339     18-30      10
## 45340     30-35       7
## 45341     18-30      10
## 45342     30-35       7
## 45343     30-35       7
## 45344     30-35       7
## 45345     18-30      10
## 45346     30-35       7
## 45347     40-50       5
## 45348     18-30      10
## 45349     18-30      10
## 45350     35-40       6
## 45351     40-50       5
## 45352     18-30      10
## 45353     18-30      10
## 45354     18-30      10
## 45355     35-40       6
## 45356     18-30      10
## 45357     18-30      10
## 45358     18-30      10
## 45359     18-30      10
## 45360     18-30      10
## 45361     18-30      10
## 45362     30-35       7
## 45363     40-50       5
## 45364     35-40       6
## 45365     18-30      10
## 45366     18-30      10
## 45367     18-30      10
## 45368     35-40       6
## 45369     50-60       5
## 45370     18-30      10
## 45371     40-50       5
## 45372     18-30      10
## 45373     18-30      10
## 45374     18-30      10
## 45375     18-30      10
## 45376     50-60       5
## 45377     18-30      10
## 45378     18-30      10
## 45379     18-30      10
## 45380     18-30      10
## 45381     18-30      10
## 45382     18-30      10
## 45383     18-30      10
## 45384     30-35       7
## 45385     18-30      10
## 45386     18-30      10
## 45387     30-35       7
## 45388     35-40       6
## 45389     35-40       6
## 45390     30-35       7
## 45391     30-35       7
## 45392     30-35       7
## 45393     18-30      10
## 45394     18-30      10
## 45395     18-30      10
## 45396     30-35       7
## 45397     18-30      10
## 45398     30-35       7
## 45399     40-50       5
## 45400       65+       4
## 45401     30-35       7
## 45402     35-40       6
## 45403     50-60       5
## 45404     18-30      10
## 45405     18-30      10
## 45406     35-40       6
## 45407     18-30      10
## 45408     50-60       5
## 45409     18-30      10
## 45410     30-35       7
## 45411     35-40       6
## 45412     18-30      10
## 45413     18-30      10
## 45414     30-35       7
## 45415     30-35       7
## 45416     18-30      10
## 45417     30-35       7
## 45418     30-35       7
## 45419     30-35       7
## 45420     30-35       7
## 45421     30-35       7
## 45422     50-60       5
## 45423     18-30      10
## 45424     40-50       5
## 45425     30-35       7
## 45426     50-60       5
## 45427     18-30      10
## 45428     18-30      10
## 45429     18-30      10
## 45430     18-30      10
## 45431     18-30      10
## 45432     18-30      10
## 45433     18-30      10
## 45434     35-40       6
## 45435     18-30      10
## 45436     18-30      10
## 45437     18-30      10
## 45438     18-30      10
## 45439     18-30      10
## 45440     18-30      10
## 45441     18-30      10
## 45442     40-50       5
## 45443     30-35       7
## 45444     18-30      10
## 45445     30-35       7
## 45446     30-35       7
## 45447     35-40       6
## 45448     40-50       5
## 45449     18-30      10
## 45450     18-30      10
## 45451     30-35       7
## 45452     18-30      10
## 45453     50-60       5
## 45454     18-30      10
## 45455     18-30      10
## 45456     18-30      10
## 45457       65+       4
## 45458     35-40       6
## 45459     30-35       7
## 45460     40-50       5
## 45461     18-30      10
## 45462     18-30      10
## 45463     35-40       6
## 45464     18-30      10
## 45465     18-30      10
## 45466     18-30      10
## 45467     18-30      10
## 45468     18-30      10
## 45469     18-30      10
## 45470     18-30      10
## 45471     18-30      10
## 45472     30-35       7
## 45473     35-40       6
## 45474     40-50       5
## 45475     50-60       5
## 45476     18-30      10
## 45477     18-30      10
## 45478     18-30      10
## 45479     50-60       5
## 45480     40-50       5
## 45481     18-30      10
## 45482     35-40       6
## 45483     18-30      10
## 45484     30-35       7
## 45485     50-60       5
## 45486     35-40       6
## 45487     18-30      10
## 45488     50-60       5
## 45489     18-30      10
## 45490     18-30      10
## 45491     30-35       7
## 45492     30-35       7
## 45493     18-30      10
## 45494     35-40       6
## 45495     30-35       7
## 45496     35-40       6
## 45497     35-40       6
## 45498       65+       4
## 45499     40-50       5
## 45500     18-30      10
## 45501     50-60       5
## 45502     35-40       6
## 45503     18-30      10
## 45504     35-40       6
## 45505     18-30      10
## 45506     18-30      10
## 45507     35-40       6
## 45508     18-30      10
## 45509     18-30      10
## 45510     50-60       5
## 45511     50-60       5
## 45512     18-30      10
## 45513     18-30      10
## 45514     35-40       6
## 45515     40-50       5
## 45516     30-35       7
## 45517     18-30      10
## 45518     18-30      10
## 45519     18-30      10
## 45520     18-30      10
## 45521     18-30      10
## 45522     18-30      10
## 45523     18-30      10
## 45524     18-30      10
## 45525     50-60       5
## 45526     30-35       7
## 45527     40-50       5
## 45528     18-30      10
## 45529     50-60       5
## 45530     18-30      10
## 45531     18-30      10
## 45532     18-30      10
## 45533     18-30      10
## 45534     18-30      10
## 45535     18-30      10
## 45536     18-30      10
## 45537     18-30      10
## 45538     30-35       7
## 45539     50-60       5
## 45540     18-30      10
## 45541     30-35       7
## 45542     18-30      10
## 45543     18-30      10
## 45544     40-50       5
## 45545     18-30      10
## 45546     35-40       6
## 45547     18-30      10
## 45548     18-30      10
## 45549     18-30      10
## 45550     40-50       5
## 45551     40-50       5
## 45552     40-50       5
## 45553       65+       4
## 45554     30-35       7
## 45555     18-30      10
## 45556     18-30      10
## 45557     18-30      10
## 45558     18-30      10
## 45559     18-30      10
## 45560     18-30      10
## 45561     18-30      10
## 45562     50-60       5
## 45563     18-30      10
## 45564     35-40       6
## 45565     40-50       5
## 45566     18-30      10
## 45567     30-35       7
## 45568     30-35       7
## 45569     18-30      10
## 45570     18-30      10
## 45571     40-50       5
## 45572     18-30      10
## 45573     50-60       5
## 45574     18-30      10
## 45575     30-35       7
## 45576     18-30      10
## 45577     30-35       7
## 45578     18-30      10
## 45579     30-35       7
## 45580     35-40       6
## 45581     35-40       6
## 45582     35-40       6
## 45583     30-35       7
## 45584     18-30      10
## 45585     30-35       7
## 45586     40-50       5
## 45587     30-35       7
## 45588     30-35       7
## 45589     40-50       5
## 45590     18-30      10
## 45591     18-30      10
## 45592     18-30      10
## 45593     18-30      10
## 45594     30-35       7
## 45595     18-30      10
## 45596     40-50       5
## 45597     50-60       5
## 45598     50-60       5
## 45599     18-30      10
## 45600     40-50       5
## 45601     18-30      10
## 45602     30-35       7
## 45603     18-30      10
## 45604     18-30      10
## 45605     30-35       7
## 45606     18-30      10
## 45607     30-35       7
## 45608     30-35       7
## 45609     18-30      10
## 45610     18-30      10
## 45611     18-30      10
## 45612     18-30      10
## 45613     30-35       7
## 45614     30-35       7
## 45615     18-30      10
## 45616     18-30      10
## 45617     18-30      10
## 45618     18-30      10
## 45619     35-40       6
## 45620     30-35       7
## 45621     35-40       6
## 45622     18-30      10
## 45623     35-40       6
## 45624     18-30      10
## 45625     18-30      10
## 45626     18-30      10
## 45627     18-30      10
## 45628     30-35       7
## 45629     30-35       7
## 45630     18-30      10
## 45631     30-35       7
## 45632     18-30      10
## 45633     30-35       7
## 45634     18-30      10
## 45635     35-40       6
## 45636       65+       4
## 45637     40-50       5
## 45638     18-30      10
## 45639     30-35       7
## 45640     40-50       5
## 45641     18-30      10
## 45642     35-40       6
## 45643     30-35       7
## 45644       65+       4
## 45645     40-50       5
## 45646     35-40       6
## 45647     35-40       6
## 45648     18-30      10
## 45649     18-30      10
## 45650     50-60       5
## 45651     18-30      10
## 45652     18-30      10
## 45653     30-35       7
## 45654     35-40       6
## 45655     18-30      10
## 45656     18-30      10
## 45657     30-35       7
## 45658     18-30      10
## 45659     18-30      10
## 45660     18-30      10
## 45661     30-35       7
## 45662     18-30      10
## 45663     18-30      10
## 45664     18-30      10
## 45665     35-40       6
## 45666     30-35       7
## 45667     40-50       5
## 45668     18-30      10
## 45669     30-35       7
## 45670     30-35       7
## 45671     40-50       5
## 45672     30-35       7
## 45673     18-30      10
## 45674     18-30      10
## 45675     18-30      10
## 45676     35-40       6
## 45677     18-30      10
## 45678     30-35       7
## 45679     35-40       6
## 45680     30-35       7
## 45681     18-30      10
## 45682     18-30      10
## 45683     30-35       7
## 45684     30-35       7
## 45685       65+       4
## 45686     30-35       7
## 45687     40-50       5
## 45688     30-35       7
## 45689     30-35       7
## 45690     18-30      10
## 45691     40-50       5
## 45692     18-30      10
## 45693     30-35       7
## 45694     18-30      10
## 45695     18-30      10
## 45696     18-30      10
## 45697     50-60       5
## 45698     35-40       6
## 45699     18-30      10
## 45700     18-30      10
## 45701     30-35       7
## 45702     18-30      10
## 45703     18-30      10
## 45704     30-35       7
## 45705     35-40       6
## 45706     50-60       5
## 45707     40-50       5
## 45708     35-40       6
## 45709     18-30      10
## 45710     18-30      10
## 45711     35-40       6
## 45712     30-35       7
## 45713     50-60       5
## 45714     40-50       5
## 45715     30-35       7
## 45716     18-30      10
## 45717     40-50       5
## 45718     30-35       7
## 45719     18-30      10
## 45720     30-35       7
## 45721     18-30      10
## 45722     18-30      10
## 45723     18-30      10
## 45724     18-30      10
## 45725       65+       4
## 45726     35-40       6
## 45727     30-35       7
## 45728     18-30      10
## 45729     30-35       7
## 45730     18-30      10
## 45731     18-30      10
## 45732     30-35       7
## 45733     30-35       7
## 45734     18-30      10
## 45735     18-30      10
## 45736     35-40       6
## 45737     18-30      10
## 45738     30-35       7
## 45739     18-30      10
## 45740     18-30      10
## 45741     18-30      10
## 45742     30-35       7
## 45743     18-30      10
## 45744     18-30      10
## 45745     18-30      10
## 45746     50-60       5
## 45747     18-30      10
## 45748     40-50       5
## 45749     18-30      10
## 45750     18-30      10
## 45751     18-30      10
## 45752     18-30      10
## 45753     18-30      10
## 45754     18-30      10
## 45755     18-30      10
## 45756     35-40       6
## 45757     18-30      10
## 45758     18-30      10
## 45759     30-35       7
## 45760     30-35       7
## 45761     18-30      10
## 45762     35-40       6
## 45763       65+       4
## 45764     18-30      10
## 45765     18-30      10
## 45766       65+       4
## 45767     35-40       6
## 45768     18-30      10
## 45769     18-30      10
## 45770     40-50       5
## 45771     18-30      10
## 45772     18-30      10
## 45773     40-50       5
## 45774     18-30      10
## 45775     35-40       6
## 45776     40-50       5
## 45777     18-30      10
## 45778     18-30      10
## 45779     18-30      10
## 45780     35-40       6
## 45781     18-30      10
## 45782     30-35       7
## 45783     35-40       6
## 45784     18-30      10
## 45785     18-30      10
## 45786     30-35       7
## 45787     18-30      10
## 45788     18-30      10
## 45789     18-30      10
## 45790     50-60       5
## 45791     18-30      10
## 45792     40-50       5
## 45793     18-30      10
## 45794     18-30      10
## 45795     30-35       7
## 45796     35-40       6
## 45797     18-30      10
## 45798     30-35       7
## 45799     30-35       7
## 45800     18-30      10
## 45801     18-30      10
## 45802     18-30      10
## 45803     40-50       5
## 45804     18-30      10
## 45805     18-30      10
## 45806     18-30      10
## 45807     18-30      10
## 45808     18-30      10
## 45809     18-30      10
## 45810     18-30      10
## 45811     18-30      10
## 45812     30-35       7
## 45813     18-30      10
## 45814     18-30      10
## 45815     18-30      10
## 45816     35-40       6
## 45817     18-30      10
## 45818     30-35       7
## 45819     30-35       7
## 45820     18-30      10
## 45821     18-30      10
## 45822     35-40       6
## 45823     18-30      10
## 45824     18-30      10
## 45825     30-35       7
## 45826     40-50       5
## 45827     50-60       5
## 45828     30-35       7
## 45829     18-30      10
## 45830     18-30      10
## 45831     30-35       7
## 45832     30-35       7
## 45833     50-60       5
## 45834     30-35       7
## 45835     30-35       7
## 45836     35-40       6
## 45837     18-30      10
## 45838     18-30      10
## 45839     50-60       5
## 45840     30-35       7
## 45841     40-50       5
## 45842     30-35       7
## 45843     18-30      10
## 45844     18-30      10
## 45845     40-50       5
## 45846     18-30      10
## 45847     18-30      10
## 45848     18-30      10
## 45849     18-30      10
## 45850     18-30      10
## 45851     18-30      10
## 45852     18-30      10
## 45853     30-35       7
## 45854     35-40       6
## 45855       65+       4
## 45856     18-30      10
## 45857     18-30      10
## 45858     18-30      10
## 45859     18-30      10
## 45860     50-60       5
## 45861     18-30      10
## 45862     18-30      10
## 45863     30-35       7
## 45864     18-30      10
## 45865     18-30      10
## 45866     18-30      10
## 45867     30-35       7
## 45868     30-35       7
## 45869     18-30      10
## 45870     18-30      10
## 45871     35-40       6
## 45872     18-30      10
## 45873     18-30      10
## 45874     18-30      10
## 45875     30-35       7
## 45876     18-30      10
## 45877     18-30      10
## 45878     18-30      10
## 45879     18-30      10
## 45880     30-35       7
## 45881     18-30      10
## 45882     18-30      10
## 45883     35-40       6
## 45884     30-35       7
## 45885     30-35       7
## 45886     18-30      10
## 45887     35-40       6
## 45888     18-30      10
## 45889     18-30      10
## 45890       65+       4
## 45891     18-30      10
## 45892     18-30      10
## 45893     30-35       7
## 45894     30-35       7
## 45895     40-50       5
## 45896     18-30      10
## 45897     18-30      10
## 45898     18-30      10
## 45899     18-30      10
## 45900     30-35       7
## 45901     18-30      10
## 45902     18-30      10
## 45903     18-30      10
## 45904     35-40       6
## 45905     18-30      10
## 45906     18-30      10
## 45907     30-35       7
## 45908     50-60       5
## 45909     18-30      10
## 45910     30-35       7
## 45911     18-30      10
## 45912     18-30      10
## 45913     30-35       7
## 45914     40-50       5
## 45915     35-40       6
## 45916     30-35       7
## 45917     40-50       5
## 45918     35-40       6
## 45919     35-40       6
## 45920     18-30      10
## 45921     18-30      10
## 45922     18-30      10
## 45923     18-30      10
## 45924     50-60       5
## 45925     30-35       7
## 45926     18-30      10
## 45927     18-30      10
## 45928     35-40       6
## 45929     40-50       5
## 45930     40-50       5
## 45931     18-30      10
## 45932     50-60       5
## 45933     18-30      10
## 45934     35-40       6
## 45935     18-30      10
## 45936     18-30      10
## 45937     30-35       7
## 45938     35-40       6
## 45939     30-35       7
## 45940     18-30      10
## 45941     18-30      10
## 45942     30-35       7
## 45943     18-30      10
## 45944       65+       4
## 45945     30-35       7
## 45946     40-50       5
## 45947     18-30      10
## 45948     35-40       6
## 45949     18-30      10
## 45950     40-50       5
## 45951     18-30      10
## 45952     18-30      10
## 45953     18-30      10
## 45954     30-35       7
## 45955     18-30      10
## 45956     18-30      10
## 45957     18-30      10
## 45958     18-30      10
## 45959     18-30      10
## 45960     35-40       6
## 45961     18-30      10
## 45962     18-30      10
## 45963     30-35       7
## 45964     50-60       5
## 45965     18-30      10
## 45966     30-35       7
## 45967     18-30      10
## 45968     50-60       5
## 45969     18-30      10
## 45970     35-40       6
## 45971     18-30      10
## 45972     30-35       7
## 45973     40-50       5
## 45974     30-35       7
## 45975     40-50       5
## 45976     30-35       7
## 45977     35-40       6
## 45978     18-30      10
## 45979     18-30      10
## 45980     50-60       5
## 45981     35-40       6
## 45982     18-30      10
## 45983     30-35       7
## 45984     35-40       6
## 45985     18-30      10
## 45986     18-30      10
## 45987     18-30      10
## 45988     18-30      10
## 45989     18-30      10
## 45990     18-30      10
## 45991     40-50       5
## 45992     35-40       6
## 45993     18-30      10
## 45994     40-50       5
## 45995     18-30      10
## 45996     30-35       7
## 45997     35-40       6
## 45998     30-35       7
## 45999     18-30      10
## 46000     18-30      10
## 46001     50-60       5
## 46002     50-60       5
## 46003     40-50       5
## 46004       65+       4
## 46005     18-30      10
## 46006     30-35       7
## 46007     18-30      10
## 46008     35-40       6
## 46009     35-40       6
## 46010     18-30      10
## 46011     18-30      10
## 46012     35-40       6
## 46013     18-30      10
## 46014     40-50       5
## 46015     18-30      10
## 46016     18-30      10
## 46017     18-30      10
## 46018     30-35       7
## 46019     18-30      10
## 46020     18-30      10
## 46021     18-30      10
## 46022     18-30      10
## 46023     18-30      10
## 46024     30-35       7
## 46025     18-30      10
## 46026     35-40       6
## 46027     18-30      10
## 46028     18-30      10
## 46029     18-30      10
## 46030     35-40       6
## 46031     35-40       6
## 46032     35-40       6
## 46033     18-30      10
## 46034     35-40       6
## 46035     30-35       7
## 46036     30-35       7
## 46037     30-35       7
## 46038     18-30      10
## 46039     40-50       5
## 46040     18-30      10
## 46041     40-50       5
## 46042     18-30      10
## 46043     30-35       7
## 46044     18-30      10
## 46045     18-30      10
## 46046     18-30      10
## 46047     18-30      10
## 46048     18-30      10
## 46049     18-30      10
## 46050     30-35       7
## 46051     18-30      10
## 46052     18-30      10
## 46053     35-40       6
## 46054     18-30      10
## 46055     30-35       7
## 46056     18-30      10
## 46057     30-35       7
## 46058     18-30      10
## 46059     35-40       6
## 46060     18-30      10
## 46061     18-30      10
## 46062     18-30      10
## 46063     30-35       7
## 46064     18-30      10
## 46065     18-30      10
## 46066     18-30      10
## 46067     18-30      10
## 46068     30-35       7
## 46069     18-30      10
## 46070     40-50       5
## 46071     18-30      10
## 46072     18-30      10
## 46073     30-35       7
## 46074     18-30      10
## 46075     30-35       7
## 46076     18-30      10
## 46077     35-40       6
## 46078     18-30      10
## 46079     40-50       5
## 46080     40-50       5
## 46081     35-40       6
## 46082     18-30      10
## 46083     18-30      10
## 46084     50-60       5
## 46085     18-30      10
## 46086     18-30      10
## 46087     18-30      10
## 46088     18-30      10
## 46089     18-30      10
## 46090     18-30      10
## 46091     18-30      10
## 46092     18-30      10
## 46093     40-50       5
## 46094     18-30      10
## 46095     18-30      10
## 46096     18-30      10
## 46097     18-30      10
## 46098     40-50       5
## 46099     18-30      10
## 46100     18-30      10
## 46101     50-60       5
## 46102     40-50       5
## 46103     18-30      10
## 46104     18-30      10
## 46105     18-30      10
## 46106     18-30      10
## 46107     18-30      10
## 46108     50-60       5
## 46109     18-30      10
## 46110     18-30      10
## 46111       65+       4
## 46112     18-30      10
## 46113     18-30      10
## 46114     35-40       6
## 46115     30-35       7
## 46116     18-30      10
## 46117     18-30      10
## 46118     18-30      10
## 46119     18-30      10
## 46120     50-60       5
## 46121     30-35       7
## 46122     18-30      10
## 46123     40-50       5
## 46124     30-35       7
## 46125     18-30      10
## 46126     30-35       7
## 46127     18-30      10
## 46128     18-30      10
## 46129     18-30      10
## 46130     18-30      10
## 46131     50-60       5
## 46132     18-30      10
## 46133     18-30      10
## 46134     18-30      10
## 46135     40-50       5
## 46136     18-30      10
## 46137     18-30      10
## 46138     35-40       6
## 46139     35-40       6
## 46140     35-40       6
## 46141     35-40       6
## 46142     30-35       7
## 46143     40-50       5
## 46144     18-30      10
## 46145     18-30      10
## 46146     30-35       7
## 46147     18-30      10
## 46148     35-40       6
## 46149     18-30      10
## 46150     18-30      10
## 46151     18-30      10
## 46152     30-35       7
## 46153     18-30      10
## 46154     30-35       7
## 46155     35-40       6
## 46156       65+       4
## 46157     30-35       7
## 46158     30-35       7
## 46159     30-35       7
## 46160     35-40       6
## 46161     40-50       5
## 46162     30-35       7
## 46163     18-30      10
## 46164     18-30      10
## 46165     18-30      10
## 46166     18-30      10
## 46167     18-30      10
## 46168     18-30      10
## 46169     30-35       7
## 46170     18-30      10
## 46171     18-30      10
## 46172     18-30      10
## 46173     40-50       5
## 46174     40-50       5
## 46175     35-40       6
## 46176     35-40       6
## 46177     30-35       7
## 46178     18-30      10
## 46179       65+       4
## 46180     35-40       6
## 46181     18-30      10
## 46182     35-40       6
## 46183     18-30      10
## 46184     30-35       7
## 46185     18-30      10
## 46186     18-30      10
## 46187     35-40       6
## 46188     30-35       7
## 46189     35-40       6
## 46190     18-30      10
## 46191     30-35       7
## 46192     18-30      10
## 46193     18-30      10
## 46194     18-30      10
## 46195     30-35       7
## 46196     18-30      10
## 46197     18-30      10
## 46198     18-30      10
## 46199     30-35       7
## 46200     30-35       7
## 46201     18-30      10
## 46202     30-35       7
## 46203     35-40       6
## 46204     18-30      10
## 46205     18-30      10
## 46206     35-40       6
## 46207     18-30      10
## 46208     30-35       7
## 46209     18-30      10
## 46210     18-30      10
## 46211     18-30      10
## 46212     18-30      10
## 46213     30-35       7
## 46214     18-30      10
## 46215     30-35       7
## 46216     18-30      10
## 46217     30-35       7
## 46218     18-30      10
## 46219     18-30      10
## 46220     40-50       5
## 46221     18-30      10
## 46222     30-35       7
## 46223     18-30      10
## 46224     18-30      10
## 46225     18-30      10
## 46226     35-40       6
## 46227     18-30      10
## 46228     18-30      10
## 46229     18-30      10
## 46230     30-35       7
## 46231     18-30      10
## 46232     30-35       7
## 46233     50-60       5
## 46234     18-30      10
## 46235     50-60       5
## 46236     50-60       5
## 46237     30-35       7
## 46238     40-50       5
## 46239     35-40       6
## 46240     18-30      10
## 46241     30-35       7
## 46242     35-40       6
## 46243     18-30      10
## 46244     35-40       6
## 46245     30-35       7
## 46246     35-40       6
## 46247     35-40       6
## 46248     18-30      10
## 46249     18-30      10
## 46250     30-35       7
## 46251     18-30      10
## 46252     18-30      10
## 46253     35-40       6
## 46254     18-30      10
## 46255       65+       4
## 46256     30-35       7
## 46257     18-30      10
## 46258     18-30      10
## 46259     18-30      10
## 46260     50-60       5
## 46261     18-30      10
## 46262     18-30      10
## 46263     30-35       7
## 46264     40-50       5
## 46265     30-35       7
## 46266     30-35       7
## 46267     18-30      10
## 46268     18-30      10
## 46269     18-30      10
## 46270     18-30      10
## 46271     30-35       7
## 46272     18-30      10
## 46273     18-30      10
## 46274     18-30      10
## 46275     18-30      10
## 46276       65+       4
## 46277     18-30      10
## 46278     30-35       7
## 46279     18-30      10
## 46280     40-50       5
## 46281     18-30      10
## 46282     18-30      10
## 46283     18-30      10
## 46284     18-30      10
## 46285     30-35       7
## 46286     40-50       5
## 46287     18-30      10
## 46288     18-30      10
## 46289     18-30      10
## 46290     18-30      10
## 46291     18-30      10
## 46292     35-40       6
## 46293     18-30      10
## 46294     18-30      10
## 46295     18-30      10
## 46296     18-30      10
## 46297     18-30      10
## 46298     18-30      10
## 46299     35-40       6
## 46300     18-30      10
## 46301     18-30      10
## 46302     18-30      10
## 46303     18-30      10
## 46304     18-30      10
## 46305     18-30      10
## 46306     18-30      10
## 46307     18-30      10
## 46308     30-35       7
## 46309     18-30      10
## 46310     30-35       7
## 46311     18-30      10
## 46312     18-30      10
## 46313     18-30      10
## 46314     35-40       6
## 46315     30-35       7
## 46316     30-35       7
## 46317       65+       4
## 46318     18-30      10
## 46319     18-30      10
## 46320     40-50       5
## 46321     50-60       5
## 46322       65+       4
## 46323     18-30      10
## 46324     18-30      10
## 46325     18-30      10
## 46326     18-30      10
## 46327     30-35       7
## 46328     18-30      10
## 46329     30-35       7
## 46330     18-30      10
## 46331     30-35       7
## 46332     18-30      10
## 46333     50-60       5
## 46334     40-50       5
## 46335       65+       4
## 46336     40-50       5
## 46337     18-30      10
## 46338     30-35       7
## 46339     18-30      10
## 46340     30-35       7
## 46341     18-30      10
## 46342     30-35       7
## 46343     18-30      10
## 46344     30-35       7
## 46345     30-35       7
## 46346     30-35       7
## 46347     18-30      10
## 46348     35-40       6
## 46349     18-30      10
## 46350     18-30      10
## 46351     18-30      10
## 46352     40-50       5
## 46353     30-35       7
## 46354     30-35       7
## 46355     35-40       6
## 46356     35-40       6
## 46357     30-35       7
## 46358     40-50       5
## 46359     40-50       5
## 46360     18-30      10
## 46361     18-30      10
## 46362     18-30      10
## 46363     18-30      10
## 46364     18-30      10
## 46365     18-30      10
## 46366     18-30      10
## 46367       65+       4
## 46368     18-30      10
## 46369     35-40       6
## 46370     18-30      10
## 46371     30-35       7
## 46372     18-30      10
## 46373     18-30      10
## 46374     18-30      10
## 46375     40-50       5
## 46376     18-30      10
## 46377     40-50       5
## 46378     18-30      10
## 46379     30-35       7
## 46380     50-60       5
## 46381     35-40       6
## 46382     18-30      10
## 46383     18-30      10
## 46384     35-40       6
## 46385     30-35       7
## 46386     18-30      10
## 46387     18-30      10
## 46388     50-60       5
## 46389     50-60       5
## 46390     30-35       7
## 46391     18-30      10
## 46392     40-50       5
## 46393     30-35       7
## 46394     18-30      10
## 46395     30-35       7
## 46396     30-35       7
## 46397     35-40       6
## 46398     18-30      10
## 46399     18-30      10
## 46400     35-40       6
## 46401     35-40       6
## 46402     30-35       7
## 46403     18-30      10
## 46404     35-40       6
## 46405     18-30      10
## 46406     30-35       7
## 46407     35-40       6
## 46408     30-35       7
## 46409     18-30      10
## 46410     18-30      10
## 46411     18-30      10
## 46412     35-40       6
## 46413     18-30      10
## 46414     18-30      10
## 46415     18-30      10
## 46416     30-35       7
## 46417     40-50       5
## 46418     18-30      10
## 46419     30-35       7
## 46420     30-35       7
## 46421     40-50       5
## 46422     18-30      10
## 46423     18-30      10
## 46424     18-30      10
## 46425     18-30      10
## 46426     18-30      10
## 46427     18-30      10
## 46428     18-30      10
## 46429     35-40       6
## 46430     35-40       6
## 46431     18-30      10
## 46432     30-35       7
## 46433     30-35       7
## 46434     18-30      10
## 46435     40-50       5
## 46436     40-50       5
## 46437     18-30      10
## 46438     18-30      10
## 46439     18-30      10
## 46440     18-30      10
## 46441     18-30      10
## 46442     18-30      10
## 46443     18-30      10
## 46444     30-35       7
## 46445     40-50       5
## 46446     18-30      10
## 46447     40-50       5
## 46448     30-35       7
## 46449     18-30      10
## 46450     18-30      10
## 46451     18-30      10
## 46452     18-30      10
## 46453     18-30      10
## 46454     18-30      10
## 46455     18-30      10
## 46456     18-30      10
## 46457     18-30      10
## 46458     18-30      10
## 46459     18-30      10
## 46460     18-30      10
## 46461     40-50       5
## 46462     50-60       5
## 46463     18-30      10
## 46464     30-35       7
## 46465     40-50       5
## 46466     35-40       6
## 46467     18-30      10
## 46468     50-60       5
## 46469     30-35       7
## 46470     18-30      10
## 46471     30-35       7
## 46472     18-30      10
## 46473     18-30      10
## 46474     18-30      10
## 46475     30-35       7
## 46476     30-35       7
## 46477     18-30      10
## 46478     35-40       6
## 46479     18-30      10
## 46480     18-30      10
## 46481     30-35       7
## 46482     40-50       5
## 46483     40-50       5
## 46484     18-30      10
## 46485     18-30      10
## 46486     18-30      10
## 46487     18-30      10
## 46488     30-35       7
## 46489     18-30      10
## 46490     18-30      10
## 46491     30-35       7
## 46492     18-30      10
## 46493     30-35       7
## 46494     40-50       5
## 46495     18-30      10
## 46496     18-30      10
## 46497     18-30      10
## 46498     40-50       5
## 46499     18-30      10
## 46500     18-30      10
## 46501     30-35       7
## 46502     30-35       7
## 46503     18-30      10
## 46504     40-50       5
## 46505     18-30      10
## 46506     40-50       5
## 46507     18-30      10
## 46508     40-50       5
## 46509     35-40       6
## 46510     18-30      10
## 46511     30-35       7
## 46512     18-30      10
## 46513     18-30      10
## 46514     18-30      10
## 46515     18-30      10
## 46516     35-40       6
## 46517     18-30      10
## 46518     35-40       6
## 46519     18-30      10
## 46520     50-60       5
## 46521     18-30      10
## 46522     18-30      10
## 46523     50-60       5
## 46524     18-30      10
## 46525     18-30      10
## 46526     18-30      10
## 46527     18-30      10
## 46528     40-50       5
## 46529     18-30      10
## 46530     35-40       6
## 46531     18-30      10
## 46532     18-30      10
## 46533     30-35       7
## 46534     18-30      10
## 46535     40-50       5
## 46536     35-40       6
## 46537     18-30      10
## 46538     18-30      10
## 46539     18-30      10
## 46540     18-30      10
## 46541     18-30      10
## 46542     35-40       6
## 46543     50-60       5
## 46544     18-30      10
## 46545     18-30      10
## 46546     30-35       7
## 46547     30-35       7
## 46548     18-30      10
## 46549     18-30      10
## 46550     40-50       5
## 46551     30-35       7
## 46552     18-30      10
## 46553     18-30      10
## 46554     35-40       6
## 46555     18-30      10
## 46556     18-30      10
## 46557     18-30      10
## 46558     18-30      10
## 46559     18-30      10
## 46560       65+       4
## 46561     18-30      10
## 46562     18-30      10
## 46563     30-35       7
## 46564     18-30      10
## 46565     50-60       5
## 46566     18-30      10
## 46567     50-60       5
## 46568     18-30      10
## 46569     18-30      10
## 46570     18-30      10
## 46571     18-30      10
## 46572     18-30      10
## 46573     50-60       5
## 46574     18-30      10
## 46575     30-35       7
## 46576     40-50       5
## 46577     30-35       7
## 46578     18-30      10
## 46579     18-30      10
## 46580     18-30      10
## 46581     18-30      10
## 46582     18-30      10
## 46583     18-30      10
## 46584     18-30      10
## 46585     40-50       5
## 46586     30-35       7
## 46587     40-50       5
## 46588     40-50       5
## 46589     18-30      10
## 46590     18-30      10
## 46591     35-40       6
## 46592     30-35       7
## 46593     18-30      10
## 46594     18-30      10
## 46595     30-35       7
## 46596     18-30      10
## 46597     18-30      10
## 46598     18-30      10
## 46599     18-30      10
## 46600     18-30      10
## 46601     35-40       6
## 46602     18-30      10
## 46603     18-30      10
## 46604     18-30      10
## 46605     50-60       5
## 46606     30-35       7
## 46607     50-60       5
## 46608     35-40       6
## 46609     18-30      10
## 46610     18-30      10
## 46611     35-40       6
## 46612     35-40       6
## 46613     50-60       5
## 46614     35-40       6
## 46615     18-30      10
## 46616     18-30      10
## 46617     18-30      10
## 46618     40-50       5
## 46619     18-30      10
## 46620     18-30      10
## 46621     18-30      10
## 46622     18-30      10
## 46623     18-30      10
## 46624     18-30      10
## 46625     18-30      10
## 46626     40-50       5
## 46627     18-30      10
## 46628     18-30      10
## 46629     18-30      10
## 46630     30-35       7
## 46631     18-30      10
## 46632     18-30      10
## 46633     35-40       6
## 46634     18-30      10
## 46635     35-40       6
## 46636     30-35       7
## 46637     18-30      10
## 46638     18-30      10
## 46639     30-35       7
## 46640     35-40       6
## 46641     40-50       5
## 46642     30-35       7
## 46643     18-30      10
## 46644     30-35       7
## 46645     40-50       5
## 46646     18-30      10
## 46647     30-35       7
## 46648     18-30      10
## 46649     30-35       7
## 46650     50-60       5
## 46651     50-60       5
## 46652     50-60       5
## 46653     30-35       7
## 46654     30-35       7
## 46655     18-30      10
## 46656     30-35       7
## 46657     18-30      10
## 46658     18-30      10
## 46659     35-40       6
## 46660     30-35       7
## 46661     18-30      10
## 46662     35-40       6
## 46663     40-50       5
## 46664     35-40       6
## 46665     18-30      10
## 46666     50-60       5
## 46667     35-40       6
## 46668     18-30      10
## 46669     40-50       5
## 46670     18-30      10
## 46671     18-30      10
## 46672     18-30      10
## 46673     18-30      10
## 46674     18-30      10
## 46675     18-30      10
## 46676     30-35       7
## 46677     40-50       5
## 46678     30-35       7
## 46679     35-40       6
## 46680     50-60       5
## 46681     18-30      10
## 46682     50-60       5
## 46683       65+       4
## 46684     30-35       7
## 46685     50-60       5
## 46686     18-30      10
## 46687     40-50       5
## 46688     18-30      10
## 46689     18-30      10
## 46690     18-30      10
## 46691     30-35       7
## 46692     30-35       7
## 46693     30-35       7
## 46694     18-30      10
## 46695     18-30      10
## 46696     30-35       7
## 46697     18-30      10
## 46698     18-30      10
## 46699     18-30      10
## 46700     18-30      10
## 46701     18-30      10
## 46702     18-30      10
## 46703     18-30      10
## 46704     18-30      10
## 46705     18-30      10
## 46706     40-50       5
## 46707     18-30      10
## 46708     18-30      10
## 46709     30-35       7
## 46710     18-30      10
## 46711     40-50       5
## 46712     18-30      10
## 46713     30-35       7
## 46714     18-30      10
## 46715     18-30      10
## 46716     18-30      10
## 46717     35-40       6
## 46718     18-30      10
## 46719     35-40       6
## 46720     18-30      10
## 46721     18-30      10
## 46722     18-30      10
## 46723     40-50       5
## 46724     40-50       5
## 46725     18-30      10
## 46726     18-30      10
## 46727     18-30      10
## 46728     18-30      10
## 46729     30-35       7
## 46730     30-35       7
## 46731     30-35       7
## 46732     50-60       5
## 46733     30-35       7
## 46734     50-60       5
## 46735     35-40       6
## 46736     30-35       7
## 46737     30-35       7
## 46738       65+       4
## 46739     18-30      10
## 46740     30-35       7
## 46741     18-30      10
## 46742     18-30      10
## 46743     50-60       5
## 46744     40-50       5
## 46745     18-30      10
## 46746     18-30      10
## 46747       65+       4
## 46748     18-30      10
## 46749     18-30      10
## 46750     18-30      10
## 46751     40-50       5
## 46752     18-30      10
## 46753     18-30      10
## 46754     40-50       5
## 46755     18-30      10
## 46756     18-30      10
## 46757     35-40       6
## 46758     18-30      10
## 46759     18-30      10
## 46760     35-40       6
## 46761     35-40       6
## 46762     30-35       7
## 46763     35-40       6
## 46764     30-35       7
## 46765     40-50       5
## 46766     40-50       5
## 46767     40-50       5
## 46768     18-30      10
## 46769     18-30      10
## 46770     18-30      10
## 46771     18-30      10
## 46772     18-30      10
## 46773     30-35       7
## 46774     18-30      10
## 46775     18-30      10
## 46776     18-30      10
## 46777     18-30      10
## 46778     18-30      10
## 46779     30-35       7
## 46780     18-30      10
## 46781     40-50       5
## 46782     35-40       6
## 46783     30-35       7
## 46784     18-30      10
## 46785     18-30      10
## 46786     18-30      10
## 46787     35-40       6
## 46788     30-35       7
## 46789     18-30      10
## 46790     18-30      10
## 46791     18-30      10
## 46792     18-30      10
## 46793     35-40       6
## 46794       65+       4
## 46795     18-30      10
## 46796     35-40       6
## 46797     40-50       5
## 46798     18-30      10
## 46799     40-50       5
## 46800     18-30      10
## 46801     35-40       6
## 46802     50-60       5
## 46803     18-30      10
## 46804     30-35       7
## 46805     40-50       5
## 46806     18-30      10
## 46807     18-30      10
## 46808     40-50       5
## 46809     40-50       5
## 46810     40-50       5
## 46811     50-60       5
## 46812     18-30      10
## 46813     40-50       5
## 46814     18-30      10
## 46815     18-30      10
## 46816     30-35       7
## 46817     40-50       5
## 46818     40-50       5
## 46819     30-35       7
## 46820     35-40       6
## 46821     30-35       7
## 46822     40-50       5
## 46823     18-30      10
## 46824     30-35       7
## 46825     18-30      10
## 46826     50-60       5
## 46827     30-35       7
## 46828     30-35       7
## 46829     18-30      10
## 46830     40-50       5
## 46831     30-35       7
## 46832     30-35       7
## 46833     30-35       7
## 46834     18-30      10
## 46835     18-30      10
## 46836     30-35       7
## 46837     18-30      10
## 46838     18-30      10
## 46839     18-30      10
## 46840     18-30      10
## 46841     18-30      10
## 46842     18-30      10
## 46843     18-30      10
## 46844     30-35       7
## 46845     50-60       5
## 46846     40-50       5
## 46847     30-35       7
## 46848     18-30      10
## 46849     18-30      10
## 46850     40-50       5
## 46851     30-35       7
## 46852     18-30      10
## 46853     18-30      10
## 46854     18-30      10
## 46855     35-40       6
## 46856     18-30      10
## 46857     18-30      10
## 46858     18-30      10
## 46859     35-40       6
## 46860     30-35       7
## 46861     40-50       5
## 46862     18-30      10
## 46863     18-30      10
## 46864     30-35       7
## 46865     30-35       7
## 46866     18-30      10
## 46867     18-30      10
## 46868     18-30      10
## 46869     18-30      10
## 46870     18-30      10
## 46871     18-30      10
## 46872     18-30      10
## 46873     18-30      10
## 46874     35-40       6
## 46875     18-30      10
## 46876     18-30      10
## 46877     18-30      10
## 46878     18-30      10
## 46879     18-30      10
## 46880     18-30      10
## 46881     35-40       6
## 46882     40-50       5
## 46883     18-30      10
## 46884     40-50       5
## 46885     35-40       6
## 46886     18-30      10
## 46887     50-60       5
## 46888     18-30      10
## 46889     18-30      10
## 46890     30-35       7
## 46891     18-30      10
## 46892     18-30      10
## 46893     50-60       5
## 46894     18-30      10
## 46895     30-35       7
## 46896     18-30      10
## 46897     18-30      10
## 46898     18-30      10
## 46899     18-30      10
## 46900     18-30      10
## 46901     18-30      10
## 46902     18-30      10
## 46903     18-30      10
## 46904     30-35       7
## 46905     18-30      10
## 46906     18-30      10
## 46907     18-30      10
## 46908     30-35       7
## 46909     30-35       7
## 46910     18-30      10
## 46911     30-35       7
## 46912     30-35       7
## 46913     30-35       7
## 46914     18-30      10
## 46915     18-30      10
## 46916     18-30      10
## 46917     18-30      10
## 46918     18-30      10
## 46919     30-35       7
## 46920     18-30      10
## 46921     18-30      10
## 46922     18-30      10
## 46923     30-35       7
## 46924     40-50       5
## 46925     30-35       7
## 46926     18-30      10
## 46927     18-30      10
## 46928     18-30      10
## 46929     30-35       7
## 46930     40-50       5
## 46931     18-30      10
## 46932     30-35       7
## 46933     30-35       7
## 46934     18-30      10
## 46935     18-30      10
## 46936     18-30      10
## 46937     30-35       7
## 46938     30-35       7
## 46939     18-30      10
## 46940     30-35       7
## 46941     30-35       7
## 46942     30-35       7
## 46943     30-35       7
## 46944     18-30      10
## 46945     30-35       7
## 46946     18-30      10
## 46947     30-35       7
## 46948     40-50       5
## 46949     35-40       6
## 46950     40-50       5
## 46951     18-30      10
## 46952       65+       4
## 46953     18-30      10
## 46954     35-40       6
## 46955     18-30      10
## 46956     18-30      10
## 46957     30-35       7
## 46958     35-40       6
## 46959     18-30      10
## 46960     30-35       7
## 46961     30-35       7
## 46962     18-30      10
## 46963     30-35       7
## 46964     30-35       7
## 46965     18-30      10
## 46966     30-35       7
## 46967     40-50       5
## 46968     18-30      10
## 46969     35-40       6
## 46970     18-30      10
## 46971     50-60       5
## 46972     18-30      10
## 46973     40-50       5
## 46974     18-30      10
## 46975     30-35       7
## 46976     30-35       7
## 46977     30-35       7
## 46978     18-30      10
## 46979     30-35       7
## 46980     30-35       7
## 46981     35-40       6
## 46982     18-30      10
## 46983     18-30      10
## 46984     18-30      10
## 46985     18-30      10
## 46986     18-30      10
## 46987     18-30      10
## 46988     40-50       5
## 46989     18-30      10
## 46990     40-50       5
## 46991     30-35       7
## 46992     18-30      10
## 46993     18-30      10
## 46994     30-35       7
## 46995     40-50       5
## 46996     18-30      10
## 46997     40-50       5
## 46998     18-30      10
## 46999     18-30      10
## 47000     18-30      10
## 47001     30-35       7
## 47002     50-60       5
## 47003     40-50       5
## 47004     18-30      10
## 47005     18-30      10
## 47006     30-35       7
## 47007     40-50       5
## 47008     30-35       7
## 47009     35-40       6
## 47010     30-35       7
## 47011     30-35       7
## 47012     18-30      10
## 47013     30-35       7
## 47014     50-60       5
## 47015       65+       4
## 47016     35-40       6
## 47017     18-30      10
## 47018     18-30      10
## 47019     18-30      10
## 47020     18-30      10
## 47021     18-30      10
## 47022     18-30      10
## 47023     18-30      10
## 47024     40-50       5
## 47025     18-30      10
## 47026     18-30      10
## 47027     40-50       5
## 47028     18-30      10
## 47029     30-35       7
## 47030     30-35       7
## 47031     35-40       6
## 47032     18-30      10
## 47033     40-50       5
## 47034     40-50       5
## 47035     30-35       7
## 47036     18-30      10
## 47037     18-30      10
## 47038     18-30      10
## 47039     18-30      10
## 47040     18-30      10
## 47041     18-30      10
## 47042     18-30      10
## 47043     18-30      10
## 47044     18-30      10
## 47045     18-30      10
## 47046     18-30      10
## 47047     30-35       7
## 47048     18-30      10
## 47049     30-35       7
## 47050     18-30      10
## 47051     18-30      10
## 47052     18-30      10
## 47053     18-30      10
## 47054     30-35       7
## 47055     18-30      10
## 47056     18-30      10
## 47057     18-30      10
## 47058     18-30      10
## 47059     18-30      10
## 47060     30-35       7
## 47061     18-30      10
## 47062     18-30      10
## 47063     18-30      10
## 47064     18-30      10
## 47065     30-35       7
## 47066     18-30      10
## 47067     35-40       6
## 47068     40-50       5
## 47069     18-30      10
## 47070     35-40       6
## 47071     30-35       7
## 47072     35-40       6
## 47073     18-30      10
## 47074     18-30      10
## 47075     18-30      10
## 47076     18-30      10
## 47077     18-30      10
## 47078     30-35       7
## 47079     40-50       5
## 47080     30-35       7
## 47081     30-35       7
## 47082     40-50       5
## 47083     18-30      10
## 47084     30-35       7
## 47085     30-35       7
## 47086     18-30      10
## 47087     18-30      10
## 47088     18-30      10
## 47089     18-30      10
## 47090     18-30      10
## 47091     30-35       7
## 47092     18-30      10
## 47093     18-30      10
## 47094     18-30      10
## 47095     18-30      10
## 47096     18-30      10
## 47097     50-60       5
## 47098     18-30      10
## 47099     40-50       5
## 47100     18-30      10
## 47101     18-30      10
## 47102     18-30      10
## 47103     18-30      10
## 47104     35-40       6
## 47105     40-50       5
## 47106     35-40       6
## 47107     18-30      10
## 47108     18-30      10
## 47109     35-40       6
## 47110     40-50       5
## 47111     18-30      10
## 47112     18-30      10
## 47113     18-30      10
## 47114     18-30      10
## 47115     30-35       7
## 47116     18-30      10
## 47117     40-50       5
## 47118     35-40       6
## 47119     18-30      10
## 47120     18-30      10
## 47121     40-50       5
## 47122     18-30      10
## 47123     18-30      10
## 47124     35-40       6
## 47125     18-30      10
## 47126     18-30      10
## 47127     30-35       7
## 47128     18-30      10
## 47129     35-40       6
## 47130     35-40       6
## 47131     18-30      10
## 47132     18-30      10
## 47133     18-30      10
## 47134     18-30      10
## 47135     35-40       6
## 47136     18-30      10
## 47137     40-50       5
## 47138     18-30      10
## 47139     40-50       5
## 47140     50-60       5
## 47141     18-30      10
## 47142     18-30      10
## 47143     18-30      10
## 47144     18-30      10
## 47145     18-30      10
## 47146     18-30      10
## 47147     18-30      10
## 47148     18-30      10
## 47149     18-30      10
## 47150     18-30      10
## 47151     18-30      10
## 47152     18-30      10
## 47153     40-50       5
## 47154     18-30      10
## 47155     18-30      10
## 47156     18-30      10
## 47157     18-30      10
## 47158     18-30      10
## 47159     40-50       5
## 47160     18-30      10
## 47161     40-50       5
## 47162     40-50       5
## 47163     35-40       6
## 47164     30-35       7
## 47165     18-30      10
## 47166     18-30      10
## 47167     18-30      10
## 47168     40-50       5
## 47169     18-30      10
## 47170     18-30      10
## 47171     18-30      10
## 47172     30-35       7
## 47173     30-35       7
## 47174     18-30      10
## 47175     40-50       5
## 47176     50-60       5
## 47177     30-35       7
## 47178     18-30      10
## 47179     18-30      10
## 47180     35-40       6
## 47181     30-35       7
## 47182     30-35       7
## 47183     18-30      10
## 47184     18-30      10
## 47185     18-30      10
## 47186     50-60       5
## 47187     18-30      10
## 47188     30-35       7
## 47189       65+       4
## 47190       65+       4
## 47191     40-50       5
## 47192     18-30      10
## 47193     30-35       7
## 47194     18-30      10
## 47195     18-30      10
## 47196     18-30      10
## 47197     18-30      10
## 47198     18-30      10
## 47199     30-35       7
## 47200     18-30      10
## 47201     30-35       7
## 47202     18-30      10
## 47203     40-50       5
## 47204       65+       4
## 47205     18-30      10
## 47206     30-35       7
## 47207     40-50       5
## 47208     40-50       5
## 47209     50-60       5
## 47210     18-30      10
## 47211     40-50       5
## 47212     30-35       7
## 47213     30-35       7
## 47214     18-30      10
## 47215     18-30      10
## 47216     18-30      10
## 47217     30-35       7
## 47218     18-30      10
## 47219     18-30      10
## 47220     18-30      10
## 47221     50-60       5
## 47222     18-30      10
## 47223     18-30      10
## 47224     40-50       5
## 47225     18-30      10
## 47226     40-50       5
## 47227     18-30      10
## 47228     18-30      10
## 47229       65+       4
## 47230     18-30      10
## 47231     18-30      10
## 47232     50-60       5
## 47233     18-30      10
## 47234     30-35       7
## 47235     18-30      10
## 47236     18-30      10
## 47237     30-35       7
## 47238     35-40       6
## 47239     30-35       7
## 47240     30-35       7
## 47241     30-35       7
## 47242     18-30      10
## 47243     35-40       6
## 47244     50-60       5
## 47245     18-30      10
## 47246     35-40       6
## 47247     40-50       5
## 47248     40-50       5
## 47249     40-50       5
## 47250     40-50       5
## 47251     18-30      10
## 47252     30-35       7
## 47253     18-30      10
## 47254     18-30      10
## 47255     18-30      10
## 47256     18-30      10
## 47257     30-35       7
## 47258     18-30      10
## 47259     40-50       5
## 47260     18-30      10
## 47261     30-35       7
## 47262     50-60       5
## 47263     18-30      10
## 47264     18-30      10
## 47265     18-30      10
## 47266     30-35       7
## 47267     18-30      10
## 47268     35-40       6
## 47269     35-40       6
## 47270     18-30      10
## 47271     18-30      10
## 47272     18-30      10
## 47273     18-30      10
## 47274     18-30      10
## 47275     18-30      10
## 47276     18-30      10
## 47277     35-40       6
## 47278     18-30      10
## 47279     40-50       5
## 47280     18-30      10
## 47281     18-30      10
## 47282     18-30      10
## 47283     18-30      10
## 47284     18-30      10
## 47285     40-50       5
## 47286     35-40       6
## 47287     18-30      10
## 47288     50-60       5
## 47289     50-60       5
## 47290     18-30      10
## 47291     18-30      10
## 47292     35-40       6
## 47293     18-30      10
## 47294     18-30      10
## 47295     18-30      10
## 47296     18-30      10
## 47297     18-30      10
## 47298     18-30      10
## 47299     30-35       7
## 47300     30-35       7
## 47301     18-30      10
## 47302     18-30      10
## 47303     30-35       7
## 47304     18-30      10
## 47305     18-30      10
## 47306     30-35       7
## 47307     40-50       5
## 47308     35-40       6
## 47309     18-30      10
## 47310     18-30      10
## 47311     40-50       5
## 47312     18-30      10
## 47313     18-30      10
## 47314     18-30      10
## 47315     18-30      10
## 47316     18-30      10
## 47317     18-30      10
## 47318     18-30      10
## 47319     18-30      10
## 47320     18-30      10
## 47321     18-30      10
## 47322     35-40       6
## 47323     18-30      10
## 47324     30-35       7
## 47325     18-30      10
## 47326     40-50       5
## 47327     30-35       7
## 47328     50-60       5
## 47329     35-40       6
## 47330     30-35       7
## 47331     18-30      10
## 47332     18-30      10
## 47333     18-30      10
## 47334     18-30      10
## 47335     30-35       7
## 47336     18-30      10
## 47337     30-35       7
## 47338     18-30      10
## 47339     18-30      10
## 47340     18-30      10
## 47341     18-30      10
## 47342     18-30      10
## 47343     30-35       7
## 47344     18-30      10
## 47345     35-40       6
## 47346     18-30      10
## 47347     18-30      10
## 47348     18-30      10
## 47349     18-30      10
## 47350     18-30      10
## 47351     18-30      10
## 47352     18-30      10
## 47353     18-30      10
## 47354     18-30      10
## 47355     18-30      10
## 47356     18-30      10
## 47357     18-30      10
## 47358     18-30      10
## 47359     18-30      10
## 47360     18-30      10
## 47361     18-30      10
## 47362     18-30      10
## 47363     40-50       5
## 47364     18-30      10
## 47365     18-30      10
## 47366     18-30      10
## 47367     35-40       6
## 47368     18-30      10
## 47369     30-35       7
## 47370     30-35       7
## 47371     35-40       6
## 47372     30-35       7
## 47373     18-30      10
## 47374     30-35       7
## 47375     40-50       5
## 47376     18-30      10
## 47377     18-30      10
## 47378     30-35       7
## 47379     18-30      10
## 47380     18-30      10
## 47381     18-30      10
## 47382     30-35       7
## 47383     18-30      10
## 47384     18-30      10
## 47385     50-60       5
## 47386     18-30      10
## 47387     18-30      10
## 47388     18-30      10
## 47389     18-30      10
## 47390     50-60       5
## 47391     35-40       6
## 47392     30-35       7
## 47393     18-30      10
## 47394     30-35       7
## 47395     40-50       5
## 47396     18-30      10
## 47397     18-30      10
## 47398     30-35       7
## 47399     18-30      10
## 47400     18-30      10
## 47401     30-35       7
## 47402     18-30      10
## 47403     18-30      10
## 47404     40-50       5
## 47405     18-30      10
## 47406     30-35       7
## 47407     18-30      10
## 47408     35-40       6
## 47409     18-30      10
## 47410     30-35       7
## 47411     18-30      10
## 47412     18-30      10
## 47413     40-50       5
## 47414     30-35       7
## 47415     50-60       5
## 47416     18-30      10
## 47417     40-50       5
## 47418       65+       4
## 47419     18-30      10
## 47420     40-50       5
## 47421     40-50       5
## 47422     30-35       7
## 47423     18-30      10
## 47424     30-35       7
## 47425     35-40       6
## 47426     40-50       5
## 47427     18-30      10
## 47428     18-30      10
## 47429     30-35       7
## 47430     18-30      10
## 47431     35-40       6
## 47432     18-30      10
## 47433     50-60       5
## 47434     18-30      10
## 47435     40-50       5
## 47436     18-30      10
## 47437     35-40       6
## 47438     40-50       5
## 47439     18-30      10
## 47440     35-40       6
## 47441     18-30      10
## 47442     30-35       7
## 47443     18-30      10
## 47444     18-30      10
## 47445     30-35       7
## 47446     18-30      10
## 47447     50-60       5
## 47448     35-40       6
## 47449     18-30      10
## 47450     40-50       5
## 47451     35-40       6
## 47452     18-30      10
## 47453     18-30      10
## 47454     18-30      10
## 47455     18-30      10
## 47456       65+       4
## 47457     18-30      10
## 47458     30-35       7
## 47459     18-30      10
## 47460     18-30      10
## 47461     18-30      10
## 47462     35-40       6
## 47463     18-30      10
## 47464     30-35       7
## 47465     18-30      10
## 47466     18-30      10
## 47467     18-30      10
## 47468     35-40       6
## 47469     18-30      10
## 47470     18-30      10
## 47471     30-35       7
## 47472     30-35       7
## 47473     18-30      10
## 47474     18-30      10
## 47475     18-30      10
## 47476     30-35       7
## 47477     40-50       5
## 47478     18-30      10
## 47479     35-40       6
## 47480       65+       4
## 47481     30-35       7
## 47482     18-30      10
## 47483     40-50       5
## 47484     35-40       6
## 47485     30-35       7
## 47486     30-35       7
## 47487     35-40       6
## 47488     18-30      10
## 47489     18-30      10
## 47490     35-40       6
## 47491     18-30      10
## 47492     40-50       5
## 47493     18-30      10
## 47494     35-40       6
## 47495     35-40       6
## 47496     18-30      10
## 47497     18-30      10
## 47498     50-60       5
## 47499     18-30      10
## 47500     18-30      10
## 47501     18-30      10
## 47502     18-30      10
## 47503     18-30      10
## 47504     18-30      10
## 47505     18-30      10
## 47506     30-35       7
## 47507       65+       4
## 47508     35-40       6
## 47509     40-50       5
## 47510     18-30      10
## 47511     50-60       5
## 47512     18-30      10
## 47513     18-30      10
## 47514     30-35       7
## 47515     18-30      10
## 47516     35-40       6
## 47517     30-35       7
## 47518     18-30      10
## 47519     18-30      10
## 47520     18-30      10
## 47521     18-30      10
## 47522     50-60       5
## 47523     18-30      10
## 47524     18-30      10
## 47525     18-30      10
## 47526     18-30      10
## 47527     18-30      10
## 47528     30-35       7
## 47529     30-35       7
## 47530     18-30      10
## 47531     18-30      10
## 47532     18-30      10
## 47533     50-60       5
## 47534     18-30      10
## 47535     30-35       7
## 47536     35-40       6
## 47537     18-30      10
## 47538     18-30      10
## 47539     18-30      10
## 47540     18-30      10
## 47541     18-30      10
## 47542     18-30      10
## 47543     30-35       7
## 47544     30-35       7
## 47545     18-30      10
## 47546     18-30      10
## 47547     35-40       6
## 47548     30-35       7
## 47549     30-35       7
## 47550     18-30      10
## 47551     18-30      10
## 47552     18-30      10
## 47553     30-35       7
## 47554     18-30      10
## 47555     18-30      10
## 47556     35-40       6
## 47557     35-40       6
## 47558     40-50       5
## 47559     40-50       5
## 47560     30-35       7
## 47561     18-30      10
## 47562     35-40       6
## 47563     30-35       7
## 47564     18-30      10
## 47565     18-30      10
## 47566     35-40       6
## 47567     30-35       7
## 47568     35-40       6
## 47569     30-35       7
## 47570     18-30      10
## 47571     18-30      10
## 47572     30-35       7
## 47573     18-30      10
## 47574     18-30      10
## 47575     18-30      10
## 47576     18-30      10
## 47577     35-40       6
## 47578     30-35       7
## 47579     18-30      10
## 47580     18-30      10
## 47581     18-30      10
## 47582     18-30      10
## 47583     40-50       5
## 47584     18-30      10
## 47585     18-30      10
## 47586     18-30      10
## 47587     18-30      10
## 47588     18-30      10
## 47589     30-35       7
## 47590     30-35       7
## 47591     18-30      10
## 47592     35-40       6
## 47593     35-40       6
## 47594     18-30      10
## 47595     18-30      10
## 47596     18-30      10
## 47597     30-35       7
## 47598     18-30      10
## 47599     40-50       5
## 47600     18-30      10
## 47601     35-40       6
## 47602     18-30      10
## 47603     30-35       7
## 47604     40-50       5
## 47605     18-30      10
## 47606     30-35       7
## 47607     40-50       5
## 47608     30-35       7
## 47609     35-40       6
## 47610     18-30      10
## 47611     35-40       6
## 47612     18-30      10
## 47613     35-40       6
## 47614     18-30      10
## 47615     30-35       7
## 47616     30-35       7
## 47617     30-35       7
## 47618     18-30      10
## 47619     18-30      10
## 47620     18-30      10
## 47621     18-30      10
## 47622     18-30      10
## 47623     18-30      10
## 47624       65+       4
## 47625     18-30      10
## 47626     50-60       5
## 47627     18-30      10
## 47628     30-35       7
## 47629     18-30      10
## 47630     18-30      10
## 47631     18-30      10
## 47632     18-30      10
## 47633     18-30      10
## 47634     30-35       7
## 47635     18-30      10
## 47636     35-40       6
## 47637     40-50       5
## 47638     18-30      10
## 47639     30-35       7
## 47640     35-40       6
## 47641     18-30      10
## 47642     30-35       7
## 47643     18-30      10
## 47644     18-30      10
## 47645     18-30      10
## 47646     18-30      10
## 47647     40-50       5
## 47648     18-30      10
## 47649     18-30      10
## 47650     18-30      10
## 47651     18-30      10
## 47652     30-35       7
## 47653     18-30      10
## 47654     40-50       5
## 47655     50-60       5
## 47656     30-35       7
## 47657     30-35       7
## 47658     18-30      10
## 47659     18-30      10
## 47660     18-30      10
## 47661     18-30      10
## 47662     18-30      10
## 47663     40-50       5
## 47664     30-35       7
## 47665     35-40       6
## 47666     18-30      10
## 47667     18-30      10
## 47668     35-40       6
## 47669       65+       4
## 47670     30-35       7
## 47671     18-30      10
## 47672     18-30      10
## 47673       65+       4
## 47674     18-30      10
## 47675     30-35       7
## 47676     18-30      10
## 47677     18-30      10
## 47678     35-40       6
## 47679     35-40       6
## 47680     18-30      10
## 47681     30-35       7
## 47682     30-35       7
## 47683     40-50       5
## 47684     18-30      10
## 47685     18-30      10
## 47686     18-30      10
## 47687     18-30      10
## 47688     18-30      10
## 47689     35-40       6
## 47690     30-35       7
## 47691     18-30      10
## 47692     18-30      10
## 47693     35-40       6
## 47694     30-35       7
## 47695     18-30      10
## 47696     30-35       7
## 47697     18-30      10
## 47698     35-40       6
## 47699     18-30      10
## 47700     18-30      10
## 47701     18-30      10
## 47702     18-30      10
## 47703     30-35       7
## 47704     18-30      10
## 47705     18-30      10
## 47706       65+       4
## 47707     18-30      10
## 47708     18-30      10
## 47709     40-50       5
## 47710     18-30      10
## 47711     18-30      10
## 47712     18-30      10
## 47713     18-30      10
## 47714     30-35       7
## 47715       65+       4
## 47716     18-30      10
## 47717     30-35       7
## 47718     35-40       6
## 47719     18-30      10
## 47720     50-60       5
## 47721     18-30      10
## 47722     30-35       7
## 47723     18-30      10
## 47724     30-35       7
## 47725     18-30      10
## 47726     18-30      10
## 47727     18-30      10
## 47728     18-30      10
## 47729     40-50       5
## 47730     40-50       5
## 47731     18-30      10
## 47732     18-30      10
## 47733     50-60       5
## 47734     40-50       5
## 47735     18-30      10
## 47736     40-50       5
## 47737     35-40       6
## 47738     50-60       5
## 47739     35-40       6
## 47740     40-50       5
## 47741     30-35       7
## 47742     40-50       5
## 47743     18-30      10
## 47744     18-30      10
## 47745     40-50       5
## 47746     35-40       6
## 47747     35-40       6
## 47748     18-30      10
## 47749     18-30      10
## 47750     30-35       7
## 47751     18-30      10
## 47752     40-50       5
## 47753     40-50       5
## 47754     35-40       6
## 47755     30-35       7
## 47756     18-30      10
## 47757     18-30      10
## 47758     50-60       5
## 47759     18-30      10
## 47760     30-35       7
## 47761     18-30      10
## 47762     18-30      10
## 47763     30-35       7
## 47764     18-30      10
## 47765     18-30      10
## 47766     18-30      10
## 47767     30-35       7
## 47768     18-30      10
## 47769     30-35       7
## 47770     35-40       6
## 47771     18-30      10
## 47772     30-35       7
## 47773     40-50       5
## 47774     18-30      10
## 47775     50-60       5
## 47776     18-30      10
## 47777     40-50       5
## 47778     40-50       5
## 47779     30-35       7
## 47780     40-50       5
## 47781     18-30      10
## 47782     30-35       7
## 47783     18-30      10
## 47784     30-35       7
## 47785     30-35       7
## 47786       65+       4
## 47787     18-30      10
## 47788     18-30      10
## 47789     18-30      10
## 47790     18-30      10
## 47791     18-30      10
## 47792     18-30      10
## 47793     30-35       7
## 47794     18-30      10
## 47795     50-60       5
## 47796       65+       4
## 47797     40-50       5
## 47798     35-40       6
## 47799     30-35       7
## 47800     18-30      10
## 47801     40-50       5
## 47802     18-30      10
## 47803     18-30      10
## 47804     18-30      10
## 47805     18-30      10
## 47806     18-30      10
## 47807     18-30      10
## 47808     18-30      10
## 47809     18-30      10
## 47810     18-30      10
## 47811     35-40       6
## 47812     30-35       7
## 47813     18-30      10
## 47814     30-35       7
## 47815     18-30      10
## 47816     35-40       6
## 47817     40-50       5
## 47818     18-30      10
## 47819     18-30      10
## 47820     18-30      10
## 47821     35-40       6
## 47822     18-30      10
## 47823     18-30      10
## 47824     18-30      10
## 47825     35-40       6
## 47826     30-35       7
## 47827     50-60       5
## 47828     50-60       5
## 47829     18-30      10
## 47830     18-30      10
## 47831     40-50       5
## 47832     18-30      10
## 47833     30-35       7
## 47834     35-40       6
## 47835     30-35       7
## 47836     18-30      10
## 47837     50-60       5
## 47838     30-35       7
## 47839     40-50       5
## 47840     18-30      10
## 47841       65+       4
## 47842     30-35       7
## 47843     30-35       7
## 47844     50-60       5
## 47845     18-30      10
## 47846     18-30      10
## 47847       65+       4
## 47848     18-30      10
## 47849     50-60       5
## 47850     30-35       7
## 47851     18-30      10
## 47852     18-30      10
## 47853     18-30      10
## 47854     18-30      10
## 47855     18-30      10
## 47856     30-35       7
## 47857     50-60       5
## 47858     18-30      10
## 47859     35-40       6
## 47860     30-35       7
## 47861     18-30      10
## 47862     40-50       5
## 47863     18-30      10
## 47864     18-30      10
## 47865     35-40       6
## 47866     18-30      10
## 47867     30-35       7
## 47868     18-30      10
## 47869     30-35       7
## 47870     18-30      10
## 47871     18-30      10
## 47872     18-30      10
## 47873     18-30      10
## 47874     18-30      10
## 47875     40-50       5
## 47876     40-50       5
## 47877     30-35       7
## 47878     30-35       7
## 47879     40-50       5
## 47880     30-35       7
## 47881     50-60       5
## 47882     40-50       5
## 47883     18-30      10
## 47884     35-40       6
## 47885     18-30      10
## 47886     30-35       7
## 47887     40-50       5
## 47888     30-35       7
## 47889     40-50       5
## 47890     30-35       7
## 47891     18-30      10
## 47892     18-30      10
## 47893     30-35       7
## 47894     18-30      10
## 47895     35-40       6
## 47896     18-30      10
## 47897     18-30      10
## 47898     18-30      10
## 47899     35-40       6
## 47900     35-40       6
## 47901     40-50       5
## 47902     35-40       6
## 47903     18-30      10
## 47904     18-30      10
## 47905     18-30      10
## 47906     18-30      10
## 47907     18-30      10
## 47908     18-30      10
## 47909     18-30      10
## 47910     30-35       7
## 47911     30-35       7
## 47912     18-30      10
## 47913     40-50       5
## 47914     18-30      10
## 47915     18-30      10
## 47916     18-30      10
## 47917     18-30      10
## 47918     40-50       5
## 47919     35-40       6
## 47920     18-30      10
## 47921     18-30      10
## 47922     50-60       5
## 47923     18-30      10
## 47924     18-30      10
## 47925     50-60       5
## 47926     18-30      10
## 47927     35-40       6
## 47928     30-35       7
## 47929     18-30      10
## 47930     18-30      10
## 47931     18-30      10
## 47932     18-30      10
## 47933     18-30      10
## 47934     30-35       7
## 47935     30-35       7
## 47936     30-35       7
## 47937     30-35       7
## 47938     18-30      10
## 47939     18-30      10
## 47940     18-30      10
## 47941     18-30      10
## 47942     18-30      10
## 47943     18-30      10
## 47944     35-40       6
## 47945     18-30      10
## 47946     30-35       7
## 47947     30-35       7
## 47948     18-30      10
## 47949     18-30      10
## 47950     18-30      10
## 47951     30-35       7
## 47952     40-50       5
## 47953     35-40       6
## 47954     30-35       7
## 47955     18-30      10
## 47956     18-30      10
## 47957     18-30      10
## 47958     18-30      10
## 47959     30-35       7
## 47960     35-40       6
## 47961     30-35       7
## 47962     40-50       5
## 47963     30-35       7
## 47964     35-40       6
## 47965     50-60       5
## 47966     40-50       5
## 47967     30-35       7
## 47968     30-35       7
## 47969     35-40       6
## 47970     40-50       5
## 47971     40-50       5
## 47972     40-50       5
## 47973     18-30      10
## 47974     30-35       7
## 47975     30-35       7
## 47976     18-30      10
## 47977     30-35       7
## 47978     18-30      10
## 47979     18-30      10
## 47980     18-30      10
## 47981     18-30      10
## 47982     35-40       6
## 47983     18-30      10
## 47984     18-30      10
## 47985     18-30      10
## 47986     30-35       7
## 47987     35-40       6
## 47988     30-35       7
## 47989     18-30      10
## 47990     18-30      10
## 47991     18-30      10
## 47992     18-30      10
## 47993     35-40       6
## 47994     30-35       7
## 47995     18-30      10
## 47996     18-30      10
## 47997     18-30      10
## 47998     18-30      10
## 47999     35-40       6
## 48000     18-30      10
## 48001     30-35       7
## 48002     18-30      10
## 48003     18-30      10
## 48004     35-40       6
## 48005     18-30      10
## 48006     50-60       5
## 48007     18-30      10
## 48008     40-50       5
## 48009     30-35       7
## 48010     50-60       5
## 48011     35-40       6
## 48012     18-30      10
## 48013     30-35       7
## 48014     18-30      10
## 48015     30-35       7
## 48016     40-50       5
## 48017     30-35       7
## 48018     35-40       6
## 48019     35-40       6
## 48020     18-30      10
## 48021     50-60       5
## 48022     30-35       7
## 48023     18-30      10
## 48024     30-35       7
## 48025     30-35       7
## 48026     30-35       7
## 48027     30-35       7
## 48028     18-30      10
## 48029     18-30      10
## 48030     35-40       6
## 48031     18-30      10
## 48032     30-35       7
## 48033     30-35       7
## 48034     18-30      10
## 48035     30-35       7
## 48036     30-35       7
## 48037     40-50       5
## 48038     30-35       7
## 48039     30-35       7
## 48040     18-30      10
## 48041     35-40       6
## 48042     18-30      10
## 48043     18-30      10
## 48044     18-30      10
## 48045     35-40       6
## 48046     30-35       7
## 48047     40-50       5
## 48048     18-30      10
## 48049     40-50       5
## 48050     18-30      10
## 48051     18-30      10
## 48052     35-40       6
## 48053     30-35       7
## 48054     18-30      10
## 48055     30-35       7
## 48056     30-35       7
## 48057     18-30      10
## 48058     18-30      10
## 48059     18-30      10
## 48060     30-35       7
## 48061     30-35       7
## 48062     35-40       6
## 48063     35-40       6
## 48064     40-50       5
## 48065     18-30      10
## 48066     18-30      10
## 48067     30-35       7
## 48068     18-30      10
## 48069     40-50       5
## 48070     18-30      10
## 48071     30-35       7
## 48072     30-35       7
## 48073     18-30      10
## 48074     30-35       7
## 48075     18-30      10
## 48076     35-40       6
## 48077     18-30      10
## 48078     18-30      10
## 48079     18-30      10
## 48080     18-30      10
## 48081     35-40       6
## 48082     18-30      10
## 48083     35-40       6
## 48084     30-35       7
## 48085     35-40       6
## 48086     18-30      10
## 48087     50-60       5
## 48088     18-30      10
## 48089     18-30      10
## 48090     18-30      10
## 48091     18-30      10
## 48092     18-30      10
## 48093     18-30      10
## 48094     40-50       5
## 48095     18-30      10
## 48096     18-30      10
## 48097     18-30      10
## 48098     18-30      10
## 48099     18-30      10
## 48100     40-50       5
## 48101     18-30      10
## 48102     18-30      10
## 48103     30-35       7
## 48104     18-30      10
## 48105     18-30      10
## 48106     18-30      10
## 48107     18-30      10
## 48108     18-30      10
## 48109     40-50       5
## 48110     40-50       5
## 48111     18-30      10
## 48112     30-35       7
## 48113     18-30      10
## 48114     18-30      10
## 48115     18-30      10
## 48116     40-50       5
## 48117     40-50       5
## 48118     18-30      10
## 48119     18-30      10
## 48120     18-30      10
## 48121     18-30      10
## 48122     18-30      10
## 48123     35-40       6
## 48124     35-40       6
## 48125     50-60       5
## 48126     40-50       5
## 48127     30-35       7
## 48128     18-30      10
## 48129     35-40       6
## 48130     40-50       5
## 48131     40-50       5
## 48132     50-60       5
## 48133     18-30      10
## 48134     18-30      10
## 48135     40-50       5
## 48136     18-30      10
## 48137     18-30      10
## 48138     18-30      10
## 48139     35-40       6
## 48140     30-35       7
## 48141     18-30      10
## 48142     40-50       5
## 48143     18-30      10
## 48144     40-50       5
## 48145     50-60       5
## 48146     50-60       5
## 48147     30-35       7
## 48148     35-40       6
## 48149     18-30      10
## 48150     18-30      10
## 48151     30-35       7
## 48152     18-30      10
## 48153     18-30      10
## 48154     18-30      10
## 48155     35-40       6
## 48156     18-30      10
## 48157     35-40       6
## 48158     18-30      10
## 48159     18-30      10
## 48160     18-30      10
## 48161     35-40       6
## 48162     18-30      10
## 48163     50-60       5
## 48164     35-40       6
## 48165     18-30      10
## 48166     18-30      10
## 48167     30-35       7
## 48168     18-30      10
## 48169     18-30      10
## 48170     18-30      10
## 48171     18-30      10
## 48172     18-30      10
## 48173     18-30      10
## 48174     18-30      10
## 48175     18-30      10
## 48176     35-40       6
## 48177     18-30      10
## 48178     18-30      10
## 48179     18-30      10
## 48180     40-50       5
## 48181     18-30      10
## 48182     30-35       7
## 48183     18-30      10
## 48184     18-30      10
## 48185     40-50       5
## 48186     18-30      10
## 48187     18-30      10
## 48188     18-30      10
## 48189     18-30      10
## 48190     18-30      10
## 48191     35-40       6
## 48192     30-35       7
## 48193     30-35       7
## 48194     18-30      10
## 48195     35-40       6
## 48196     18-30      10
## 48197     18-30      10
## 48198     18-30      10
## 48199     35-40       6
## 48200     40-50       5
## 48201     30-35       7
## 48202     40-50       5
## 48203     18-30      10
## 48204     30-35       7
## 48205     30-35       7
## 48206     40-50       5
## 48207     18-30      10
## 48208     35-40       6
## 48209     30-35       7
## 48210     18-30      10
## 48211     18-30      10
## 48212     30-35       7
## 48213     30-35       7
## 48214     18-30      10
## 48215     18-30      10
## 48216     30-35       7
## 48217     35-40       6
## 48218     18-30      10
## 48219     30-35       7
## 48220     35-40       6
## 48221     18-30      10
## 48222     30-35       7
## 48223     18-30      10
## 48224     18-30      10
## 48225     30-35       7
## 48226     40-50       5
## 48227     30-35       7
## 48228     35-40       6
## 48229       65+       4
## 48230     30-35       7
## 48231     18-30      10
## 48232     40-50       5
## 48233     18-30      10
## 48234     40-50       5
## 48235     18-30      10
## 48236     30-35       7
## 48237     30-35       7
## 48238     18-30      10
## 48239     18-30      10
## 48240     18-30      10
## 48241     18-30      10
## 48242     30-35       7
## 48243     18-30      10
## 48244     30-35       7
## 48245     18-30      10
## 48246     30-35       7
## 48247     40-50       5
## 48248     35-40       6
## 48249     30-35       7
## 48250     18-30      10
## 48251     50-60       5
## 48252     18-30      10
## 48253     18-30      10
## 48254     18-30      10
## 48255     40-50       5
## 48256     18-30      10
## 48257     18-30      10
## 48258     50-60       5
## 48259     18-30      10
## 48260     30-35       7
## 48261     40-50       5
## 48262     50-60       5
## 48263     18-30      10
## 48264     35-40       6
## 48265     30-35       7
## 48266     35-40       6
## 48267     18-30      10
## 48268     18-30      10
## 48269       65+       4
## 48270     40-50       5
## 48271     50-60       5
## 48272     18-30      10
## 48273     18-30      10
## 48274     18-30      10
## 48275     30-35       7
## 48276     30-35       7
## 48277     18-30      10
## 48278     18-30      10
## 48279     18-30      10
## 48280     18-30      10
## 48281     18-30      10
## 48282     18-30      10
## 48283     18-30      10
## 48284     18-30      10
## 48285     18-30      10
## 48286     30-35       7
## 48287     18-30      10
## 48288     18-30      10
## 48289     18-30      10
## 48290     35-40       6
## 48291     18-30      10
## 48292     30-35       7
## 48293     18-30      10
## 48294     18-30      10
## 48295     18-30      10
## 48296     30-35       7
## 48297     18-30      10
## 48298     35-40       6
## 48299     18-30      10
## 48300     30-35       7
## 48301     18-30      10
## 48302     18-30      10
## 48303     30-35       7
## 48304     18-30      10
## 48305     18-30      10
## 48306     40-50       5
## 48307     30-35       7
## 48308     30-35       7
## 48309     30-35       7
## 48310     18-30      10
## 48311     30-35       7
## 48312     18-30      10
## 48313     30-35       7
## 48314     18-30      10
## 48315     35-40       6
## 48316     18-30      10
## 48317     18-30      10
## 48318     18-30      10
## 48319     18-30      10
## 48320     18-30      10
## 48321     18-30      10
## 48322     30-35       7
## 48323     18-30      10
## 48324     40-50       5
## 48325     50-60       5
## 48326     30-35       7
## 48327     50-60       5
## 48328     40-50       5
## 48329     18-30      10
## 48330     30-35       7
## 48331     30-35       7
## 48332     18-30      10
## 48333     50-60       5
## 48334     18-30      10
## 48335     18-30      10
## 48336     18-30      10
## 48337     18-30      10
## 48338     18-30      10
## 48339     35-40       6
## 48340     50-60       5
## 48341     18-30      10
## 48342     18-30      10
## 48343     18-30      10
## 48344     18-30      10
## 48345     35-40       6
## 48346     18-30      10
## 48347     18-30      10
## 48348     35-40       6
## 48349     40-50       5
## 48350     18-30      10
## 48351     35-40       6
## 48352     18-30      10
## 48353     18-30      10
## 48354     18-30      10
## 48355     35-40       6
## 48356     35-40       6
## 48357     40-50       5
## 48358     18-30      10
## 48359     18-30      10
## 48360     30-35       7
## 48361     18-30      10
## 48362     18-30      10
## 48363       65+       4
## 48364     18-30      10
## 48365     35-40       6
## 48366     40-50       5
## 48367     40-50       5
## 48368     40-50       5
## 48369     50-60       5
## 48370     35-40       6
## 48371     40-50       5
## 48372     35-40       6
## 48373     18-30      10
## 48374     40-50       5
## 48375     35-40       6
## 48376     18-30      10
## 48377     40-50       5
## 48378     18-30      10
## 48379     18-30      10
## 48380     35-40       6
## 48381     18-30      10
## 48382     18-30      10
## 48383     18-30      10
## 48384     18-30      10
## 48385     40-50       5
## 48386     35-40       6
## 48387     35-40       6
## 48388     50-60       5
## 48389     18-30      10
## 48390     40-50       5
## 48391     30-35       7
## 48392     18-30      10
## 48393     18-30      10
## 48394     30-35       7
## 48395     18-30      10
## 48396     30-35       7
## 48397     18-30      10
## 48398     18-30      10
## 48399     18-30      10
## 48400     50-60       5
## 48401     18-30      10
## 48402     35-40       6
## 48403     18-30      10
## 48404     50-60       5
## 48405     18-30      10
## 48406     18-30      10
## 48407     40-50       5
## 48408     18-30      10
## 48409     18-30      10
## 48410     18-30      10
## 48411     18-30      10
## 48412     18-30      10
## 48413     40-50       5
## 48414     35-40       6
## 48415     18-30      10
## 48416     18-30      10
## 48417     18-30      10
## 48418     18-30      10
## 48419     18-30      10
## 48420     35-40       6
## 48421     40-50       5
## 48422     40-50       5
## 48423     35-40       6
## 48424       65+       4
## 48425     18-30      10
## 48426     18-30      10
## 48427     18-30      10
## 48428     18-30      10
## 48429     18-30      10
## 48430     18-30      10
## 48431     50-60       5
## 48432     40-50       5
## 48433     18-30      10
## 48434     18-30      10
## 48435     30-35       7
## 48436     18-30      10
## 48437     30-35       7
## 48438     30-35       7
## 48439     18-30      10
## 48440     18-30      10
## 48441     18-30      10
## 48442     18-30      10
## 48443     30-35       7
## 48444     40-50       5
## 48445     18-30      10
## 48446     40-50       5
## 48447     40-50       5
## 48448     50-60       5
## 48449     18-30      10
## 48450     18-30      10
## 48451     35-40       6
## 48452     40-50       5
## 48453     35-40       6
## 48454     18-30      10
## 48455     18-30      10
## 48456     30-35       7
## 48457     18-30      10
## 48458     18-30      10
## 48459     35-40       6
## 48460     18-30      10
## 48461     35-40       6
## 48462     35-40       6
## 48463     40-50       5
## 48464     40-50       5
## 48465     30-35       7
## 48466     18-30      10
## 48467     35-40       6
## 48468     50-60       5
## 48469     50-60       5
## 48470     18-30      10
## 48471     40-50       5
## 48472     30-35       7
## 48473     40-50       5
## 48474     18-30      10
## 48475     50-60       5
## 48476     18-30      10
## 48477     30-35       7
## 48478     50-60       5
## 48479     30-35       7
## 48480     50-60       5
## 48481     40-50       5
## 48482     40-50       5
## 48483     18-30      10
## 48484     50-60       5
## 48485     30-35       7
## 48486     18-30      10
## 48487     18-30      10
## 48488     50-60       5
## 48489     18-30      10
## 48490     18-30      10
## 48491     18-30      10
## 48492     40-50       5
## 48493     18-30      10
## 48494     18-30      10
## 48495     30-35       7
## 48496     40-50       5
## 48497     18-30      10
## 48498     18-30      10
## 48499     30-35       7
## 48500     18-30      10
## 48501     30-35       7
## 48502     35-40       6
## 48503     30-35       7
## 48504     40-50       5
## 48505     18-30      10
## 48506     18-30      10
## 48507     18-30      10
## 48508     30-35       7
## 48509     30-35       7
## 48510     18-30      10
## 48511     30-35       7
## 48512     18-30      10
## 48513     18-30      10
## 48514     18-30      10
## 48515     35-40       6
## 48516     18-30      10
## 48517     18-30      10
## 48518     30-35       7
## 48519     18-30      10
## 48520     30-35       7
## 48521     18-30      10
## 48522     35-40       6
## 48523     18-30      10
## 48524     18-30      10
## 48525     30-35       7
## 48526     35-40       6
## 48527     50-60       5
## 48528     18-30      10
## 48529     30-35       7
## 48530     30-35       7
## 48531     30-35       7
## 48532     18-30      10
## 48533     18-30      10
## 48534     18-30      10
## 48535     30-35       7
## 48536     30-35       7
## 48537     30-35       7
## 48538     18-30      10
## 48539     30-35       7
## 48540     18-30      10
## 48541     30-35       7
## 48542     18-30      10
## 48543     18-30      10
## 48544     18-30      10
## 48545     30-35       7
## 48546     18-30      10
## 48547     18-30      10
## 48548     18-30      10
## 48549     18-30      10
## 48550     18-30      10
## 48551     18-30      10
## 48552     18-30      10
## 48553     30-35       7
## 48554     18-30      10
## 48555     18-30      10
## 48556     30-35       7
## 48557     35-40       6
## 48558     50-60       5
## 48559     40-50       5
## 48560     30-35       7
## 48561     30-35       7
## 48562     18-30      10
## 48563     18-30      10
## 48564     18-30      10
## 48565     18-30      10
## 48566     18-30      10
## 48567     18-30      10
## 48568     18-30      10
## 48569     18-30      10
## 48570     18-30      10
## 48571     30-35       7
## 48572     30-35       7
## 48573     18-30      10
## 48574     50-60       5
## 48575     30-35       7
## 48576     18-30      10
## 48577     18-30      10
## 48578     30-35       7
## 48579     30-35       7
## 48580     50-60       5
## 48581     18-30      10
## 48582     40-50       5
## 48583     18-30      10
## 48584     30-35       7
## 48585     18-30      10
## 48586     30-35       7
## 48587     18-30      10
## 48588     18-30      10
## 48589     35-40       6
## 48590     18-30      10
## 48591     35-40       6
## 48592     18-30      10
## 48593     18-30      10
## 48594     35-40       6
## 48595     50-60       5
## 48596     18-30      10
## 48597     18-30      10
## 48598     30-35       7
## 48599     18-30      10
## 48600     18-30      10
## 48601     30-35       7
## 48602     18-30      10
## 48603     18-30      10
## 48604     18-30      10
## 48605     18-30      10
## 48606     18-30      10
## 48607     18-30      10
## 48608     18-30      10
## 48609     18-30      10
## 48610     30-35       7
## 48611     30-35       7
## 48612     18-30      10
## 48613     40-50       5
## 48614     18-30      10
## 48615     18-30      10
## 48616     35-40       6
## 48617     18-30      10
## 48618     30-35       7
## 48619     30-35       7
## 48620     18-30      10
## 48621     18-30      10
## 48622     18-30      10
## 48623     18-30      10
## 48624     18-30      10
## 48625     18-30      10
## 48626     30-35       7
## 48627     18-30      10
## 48628     30-35       7
## 48629     18-30      10
## 48630     18-30      10
## 48631     18-30      10
## 48632     18-30      10
## 48633     18-30      10
## 48634     18-30      10
## 48635     35-40       6
## 48636     40-50       5
## 48637     18-30      10
## 48638     30-35       7
## 48639     18-30      10
## 48640     18-30      10
## 48641     30-35       7
## 48642     40-50       5
## 48643     18-30      10
## 48644     18-30      10
## 48645     18-30      10
## 48646     40-50       5
## 48647     30-35       7
## 48648     18-30      10
## 48649     18-30      10
## 48650     18-30      10
## 48651     30-35       7
## 48652     18-30      10
## 48653     18-30      10
## 48654     18-30      10
## 48655     30-35       7
## 48656     30-35       7
## 48657     50-60       5
## 48658     30-35       7
## 48659     40-50       5
## 48660     30-35       7
## 48661     18-30      10
## 48662     18-30      10
## 48663     18-30      10
## 48664     40-50       5
## 48665     18-30      10
## 48666     18-30      10
## 48667     30-35       7
## 48668     30-35       7
## 48669     30-35       7
## 48670     50-60       5
## 48671     30-35       7
## 48672     35-40       6
## 48673     18-30      10
## 48674     50-60       5
## 48675     18-30      10
## 48676     50-60       5
## 48677     18-30      10
## 48678     40-50       5
## 48679       65+       4
## 48680     30-35       7
## 48681     50-60       5
## 48682     18-30      10
## 48683     40-50       5
## 48684     40-50       5
## 48685     18-30      10
## 48686     30-35       7
## 48687     30-35       7
## 48688     18-30      10
## 48689     18-30      10
## 48690     30-35       7
## 48691     30-35       7
## 48692     30-35       7
## 48693     35-40       6
## 48694     18-30      10
## 48695     18-30      10
## 48696     18-30      10
## 48697     18-30      10
## 48698     35-40       6
## 48699     35-40       6
## 48700     18-30      10
## 48701     18-30      10
## 48702     18-30      10
## 48703     50-60       5
## 48704     18-30      10
## 48705     40-50       5
## 48706     18-30      10
## 48707     35-40       6
## 48708     18-30      10
## 48709     18-30      10
## 48710     18-30      10
## 48711     18-30      10
## 48712     18-30      10
## 48713     18-30      10
## 48714     40-50       5
## 48715     18-30      10
## 48716     18-30      10
## 48717     18-30      10
## 48718     18-30      10
## 48719     30-35       7
## 48720     30-35       7
## 48721     18-30      10
## 48722     18-30      10
## 48723     18-30      10
## 48724     18-30      10
## 48725     18-30      10
## 48726     18-30      10
## 48727     18-30      10
## 48728     40-50       5
## 48729     18-30      10
## 48730     35-40       6
## 48731     35-40       6
## 48732     18-30      10
## 48733     50-60       5
## 48734     18-30      10
## 48735     18-30      10
## 48736     30-35       7
## 48737     18-30      10
## 48738     18-30      10
## 48739     35-40       6
## 48740     18-30      10
## 48741     40-50       5
## 48742     50-60       5
## 48743     30-35       7
## 48744     35-40       6
## 48745     18-30      10
## 48746     18-30      10
## 48747     35-40       6
## 48748     35-40       6
## 48749     18-30      10
## 48750     30-35       7
## 48751     50-60       5
## 48752     18-30      10
## 48753     18-30      10
## 48754     18-30      10
## 48755     40-50       5
## 48756     30-35       7
## 48757     35-40       6
## 48758     35-40       6
## 48759     40-50       5
## 48760     18-30      10
## 48761     18-30      10
## 48762     18-30      10
## 48763     18-30      10
## 48764     18-30      10
## 48765     18-30      10
## 48766     18-30      10
## 48767     30-35       7
## 48768     30-35       7
## 48769     18-30      10
## 48770     30-35       7
## 48771     18-30      10
## 48772     18-30      10
## 48773     35-40       6
## 48774     35-40       6
## 48775     18-30      10
## 48776     40-50       5
## 48777     40-50       5
## 48778     30-35       7
## 48779     35-40       6
## 48780     18-30      10
## 48781     30-35       7
## 48782     18-30      10
## 48783     18-30      10
## 48784     18-30      10
## 48785     18-30      10
## 48786     18-30      10
## 48787     40-50       5
## 48788     18-30      10
## 48789     30-35       7
## 48790     40-50       5
## 48791     35-40       6
## 48792     18-30      10
## 48793     40-50       5
## 48794     18-30      10
## 48795     30-35       7
## 48796     30-35       7
## 48797     18-30      10
## 48798     18-30      10
## 48799     30-35       7
## 48800     35-40       6
## 48801     50-60       5
## 48802     30-35       7
## 48803     18-30      10
## 48804     35-40       6
## 48805     35-40       6
## 48806     18-30      10
## 48807     18-30      10
## 48808     50-60       5
## 48809     30-35       7
## 48810     18-30      10
## 48811     18-30      10
## 48812     40-50       5
## 48813     30-35       7
## 48814     30-35       7
## 48815     30-35       7
## 48816     18-30      10
## 48817     35-40       6
## 48818     30-35       7
## 48819     30-35       7
## 48820     18-30      10
## 48821     18-30      10
## 48822     18-30      10
## 48823     18-30      10
## 48824     35-40       6
## 48825     18-30      10
## 48826     30-35       7
## 48827     35-40       6
## 48828     18-30      10
## 48829     18-30      10
## 48830     18-30      10
## 48831     40-50       5
## 48832     18-30      10
## 48833     30-35       7
## 48834     30-35       7
## 48835     18-30      10
## 48836     18-30      10
## 48837     50-60       5
## 48838     30-35       7
## 48839     18-30      10
## 48840     18-30      10
## 48841     18-30      10
## 48842     35-40       6
## 48843     18-30      10
## 48844     40-50       5
## 48845     30-35       7
## 48846     35-40       6
## 48847     40-50       5
## 48848     18-30      10
## 48849     18-30      10
## 48850     18-30      10
## 48851     30-35       7
## 48852     18-30      10
## 48853     50-60       5
## 48854     30-35       7
## 48855     18-30      10
## 48856     18-30      10
## 48857     18-30      10
## 48858     18-30      10
## 48859     40-50       5
## 48860     30-35       7
## 48861     18-30      10
## 48862     30-35       7
## 48863     35-40       6
## 48864     35-40       6
## 48865     40-50       5
## 48866     18-30      10
## 48867     18-30      10
## 48868     35-40       6
## 48869     50-60       5
## 48870       65+       4
## 48871     18-30      10
## 48872     30-35       7
## 48873     35-40       6
## 48874     30-35       7
## 48875     30-35       7
## 48876     30-35       7
## 48877     40-50       5
## 48878     40-50       5
## 48879     18-30      10
## 48880     18-30      10
## 48881     18-30      10
## 48882     18-30      10
## 48883     18-30      10
## 48884     40-50       5
## 48885     18-30      10
## 48886     40-50       5
## 48887     18-30      10
## 48888     30-35       7
## 48889     18-30      10
## 48890     40-50       5
## 48891     40-50       5
## 48892     30-35       7
## 48893     40-50       5
## 48894     30-35       7
## 48895     35-40       6
## 48896     35-40       6
## 48897     40-50       5
## 48898     40-50       5
## 48899     30-35       7
## 48900     35-40       6
## 48901     18-30      10
## 48902     18-30      10
## 48903     50-60       5
## 48904     18-30      10
## 48905     18-30      10
## 48906     18-30      10
## 48907     18-30      10
## 48908     18-30      10
## 48909     18-30      10
## 48910     30-35       7
## 48911     18-30      10
## 48912     40-50       5
## 48913     30-35       7
## 48914     30-35       7
## 48915     40-50       5
## 48916     30-35       7
## 48917     50-60       5
## 48918     18-30      10
## 48919     30-35       7
## 48920     18-30      10
## 48921     30-35       7
## 48922     30-35       7
## 48923     18-30      10
## 48924     35-40       6
## 48925     18-30      10
## 48926     30-35       7
## 48927     35-40       6
## 48928     18-30      10
## 48929     40-50       5
## 48930     30-35       7
## 48931     18-30      10
## 48932     18-30      10
## 48933     30-35       7
## 48934     18-30      10
## 48935     35-40       6
## 48936     35-40       6
## 48937     30-35       7
## 48938     18-30      10
## 48939     50-60       5
## 48940     18-30      10
## 48941     30-35       7
## 48942     18-30      10
## 48943     18-30      10
## 48944     30-35       7
## 48945     18-30      10
## 48946     35-40       6
## 48947     35-40       6
## 48948     18-30      10
## 48949     18-30      10
## 48950     30-35       7
## 48951     18-30      10
## 48952     30-35       7
## 48953     30-35       7
## 48954     18-30      10
## 48955     40-50       5
## 48956     18-30      10
## 48957     18-30      10
## 48958     18-30      10
## 48959     18-30      10
## 48960     18-30      10
## 48961     30-35       7
## 48962     18-30      10
## 48963     18-30      10
## 48964     18-30      10
## 48965     18-30      10
## 48966     18-30      10
## 48967     35-40       6
## 48968     18-30      10
## 48969     50-60       5
## 48970     18-30      10
## 48971     18-30      10
## 48972     30-35       7
## 48973     30-35       7
## 48974     18-30      10
## 48975     18-30      10
## 48976     18-30      10
## 48977     18-30      10
## 48978     18-30      10
## 48979     18-30      10
## 48980     18-30      10
## 48981     18-30      10
## 48982     30-35       7
## 48983     40-50       5
## 48984     18-30      10
## 48985     18-30      10
## 48986     18-30      10
## 48987     18-30      10
## 48988     35-40       6
## 48989     18-30      10
## 48990     18-30      10
## 48991     18-30      10
## 48992     30-35       7
## 48993     18-30      10
## 48994     18-30      10
## 48995     40-50       5
## 48996     18-30      10
## 48997     18-30      10
## 48998     50-60       5
## 48999     18-30      10
## 49000     18-30      10
## 49001     30-35       7
## 49002     35-40       6
## 49003     18-30      10
## 49004     18-30      10
## 49005     18-30      10
## 49006     18-30      10
## 49007     18-30      10
## 49008     18-30      10
## 49009     18-30      10
## 49010     18-30      10
## 49011     30-35       7
## 49012       65+       4
## 49013     18-30      10
## 49014     18-30      10
## 49015     30-35       7
## 49016     18-30      10
## 49017       65+       4
## 49018     18-30      10
## 49019     35-40       6
## 49020     18-30      10
## 49021     40-50       5
## 49022     35-40       6
## 49023     35-40       6
## 49024     18-30      10
## 49025     30-35       7
## 49026     30-35       7
## 49027     30-35       7
## 49028     18-30      10
## 49029     18-30      10
## 49030     30-35       7
## 49031     18-30      10
## 49032     18-30      10
## 49033     40-50       5
## 49034     30-35       7
## 49035     30-35       7
## 49036     18-30      10
## 49037     18-30      10
## 49038     35-40       6
## 49039     50-60       5
## 49040     40-50       5
## 49041     35-40       6
## 49042     40-50       5
## 49043     30-35       7
## 49044     50-60       5
## 49045     18-30      10
## 49046     18-30      10
## 49047     18-30      10
## 49048     40-50       5
## 49049     18-30      10
## 49050     18-30      10
## 49051     18-30      10
## 49052     18-30      10
## 49053     35-40       6
## 49054     35-40       6
## 49055     18-30      10
## 49056     18-30      10
## 49057     30-35       7
## 49058     30-35       7
## 49059     30-35       7
## 49060     18-30      10
## 49061     18-30      10
## 49062     35-40       6
## 49063     40-50       5
## 49064     50-60       5
## 49065     30-35       7
## 49066     18-30      10
## 49067     18-30      10
## 49068     50-60       5
## 49069     35-40       6
## 49070     18-30      10
## 49071     40-50       5
## 49072     30-35       7
## 49073     18-30      10
## 49074     18-30      10
## 49075     50-60       5
## 49076     18-30      10
## 49077     18-30      10
## 49078     30-35       7
## 49079     18-30      10
## 49080     18-30      10
## 49081     18-30      10
## 49082     18-30      10
## 49083     35-40       6
## 49084     30-35       7
## 49085     40-50       5
## 49086     18-30      10
## 49087     40-50       5
## 49088     18-30      10
## 49089     30-35       7
## 49090     30-35       7
## 49091     50-60       5
## 49092     18-30      10
## 49093     30-35       7
## 49094     18-30      10
## 49095     18-30      10
## 49096     18-30      10
## 49097     30-35       7
## 49098     35-40       6
## 49099     18-30      10
## 49100     18-30      10
## 49101     35-40       6
## 49102     18-30      10
## 49103     18-30      10
## 49104     18-30      10
## 49105     18-30      10
## 49106     30-35       7
## 49107     18-30      10
## 49108     18-30      10
## 49109     18-30      10
## 49110     30-35       7
## 49111     18-30      10
## 49112     18-30      10
## 49113     18-30      10
## 49114     18-30      10
## 49115     18-30      10
## 49116     18-30      10
## 49117     18-30      10
## 49118     18-30      10
## 49119     30-35       7
## 49120     40-50       5
## 49121     18-30      10
## 49122     18-30      10
## 49123     18-30      10
## 49124     18-30      10
## 49125     35-40       6
## 49126     18-30      10
## 49127       65+       4
## 49128     18-30      10
## 49129     40-50       5
## 49130     18-30      10
## 49131     40-50       5
## 49132     30-35       7
## 49133     18-30      10
## 49134     30-35       7
## 49135     30-35       7
## 49136     18-30      10
## 49137     18-30      10
## 49138     30-35       7
## 49139     18-30      10
## 49140     18-30      10
## 49141     18-30      10
## 49142     35-40       6
## 49143     50-60       5
## 49144     40-50       5
## 49145     18-30      10
## 49146     18-30      10
## 49147     18-30      10
## 49148     18-30      10
## 49149     18-30      10
## 49150     30-35       7
## 49151     18-30      10
## 49152     18-30      10
## 49153     18-30      10
## 49154     18-30      10
## 49155     35-40       6
## 49156     35-40       6
## 49157     18-30      10
## 49158     50-60       5
## 49159     18-30      10
## 49160     18-30      10
## 49161     30-35       7
## 49162     35-40       6
## 49163     18-30      10
## 49164     18-30      10
## 49165     30-35       7
## 49166     35-40       6
## 49167     35-40       6
## 49168     40-50       5
## 49169     18-30      10
## 49170     30-35       7
## 49171     18-30      10
## 49172     30-35       7
## 49173     18-30      10
## 49174     18-30      10
## 49175     30-35       7
## 49176     18-30      10
## 49177     18-30      10
## 49178     18-30      10
## 49179     18-30      10
## 49180     40-50       5
## 49181     18-30      10
## 49182     18-30      10
## 49183     35-40       6
## 49184     30-35       7
## 49185     30-35       7
## 49186     18-30      10
## 49187     18-30      10
## 49188     30-35       7
## 49189     18-30      10
## 49190     30-35       7
## 49191     18-30      10
## 49192     18-30      10
## 49193     18-30      10
## 49194     18-30      10
## 49195     18-30      10
## 49196     18-30      10
## 49197     18-30      10
## 49198     18-30      10
## 49199     30-35       7
## 49200     18-30      10
## 49201     18-30      10
## 49202     30-35       7
## 49203     18-30      10
## 49204     40-50       5
## 49205     18-30      10
## 49206     40-50       5
## 49207     30-35       7
## 49208     18-30      10
## 49209     18-30      10
## 49210     18-30      10
## 49211     18-30      10
## 49212     30-35       7
## 49213     18-30      10
## 49214     40-50       5
## 49215     18-30      10
## 49216     30-35       7
## 49217     18-30      10
## 49218     18-30      10
## 49219     18-30      10
## 49220     18-30      10
## 49221     18-30      10
## 49222     18-30      10
## 49223     18-30      10
## 49224     35-40       6
## 49225     18-30      10
## 49226     30-35       7
## 49227     18-30      10
## 49228     18-30      10
## 49229     30-35       7
## 49230     30-35       7
## 49231     35-40       6
## 49232     18-30      10
## 49233     18-30      10
## 49234     18-30      10
## 49235     18-30      10
## 49236     18-30      10
## 49237     18-30      10
## 49238     18-30      10
## 49239     18-30      10
## 49240     30-35       7
## 49241     18-30      10
## 49242     18-30      10
## 49243     30-35       7
## 49244     35-40       6
## 49245     18-30      10
## 49246     35-40       6
## 49247     18-30      10
## 49248     30-35       7
## 49249     30-35       7
## 49250     30-35       7
## 49251     18-30      10
## 49252     40-50       5
## 49253     18-30      10
## 49254     18-30      10
## 49255     30-35       7
## 49256     30-35       7
## 49257     18-30      10
## 49258     18-30      10
## 49259     18-30      10
## 49260     18-30      10
## 49261     18-30      10
## 49262     18-30      10
## 49263     18-30      10
## 49264     18-30      10
## 49265     35-40       6
## 49266     50-60       5
## 49267     18-30      10
## 49268     18-30      10
## 49269     30-35       7
## 49270     30-35       7
## 49271     30-35       7
## 49272     18-30      10
## 49273     18-30      10
## 49274     40-50       5
## 49275     18-30      10
## 49276     18-30      10
## 49277     30-35       7
## 49278     18-30      10
## 49279     18-30      10
## 49280     30-35       7
## 49281     18-30      10
## 49282     40-50       5
## 49283     30-35       7
## 49284     18-30      10
## 49285       65+       4
## 49286     18-30      10
## 49287     18-30      10
## 49288     40-50       5
## 49289     18-30      10
## 49290     18-30      10
## 49291     30-35       7
## 49292     18-30      10
## 49293     18-30      10
## 49294       65+       4
## 49295     50-60       5
## 49296     18-30      10
## 49297     18-30      10
## 49298     18-30      10
## 49299     30-35       7
## 49300     18-30      10
## 49301     40-50       5
## 49302     30-35       7
## 49303     18-30      10
## 49304     18-30      10
## 49305     18-30      10
## 49306       65+       4
## 49307     35-40       6
## 49308     18-30      10
## 49309     18-30      10
## 49310     30-35       7
## 49311     18-30      10
## 49312     40-50       5
## 49313     40-50       5
## 49314     18-30      10
## 49315     18-30      10
## 49316     18-30      10
## 49317     18-30      10
## 49318     18-30      10
## 49319     30-35       7
## 49320       65+       4
## 49321     18-30      10
## 49322     18-30      10
## 49323     30-35       7
## 49324     18-30      10
## 49325     18-30      10
## 49326     30-35       7
## 49327     18-30      10
## 49328     18-30      10
## 49329     18-30      10
## 49330     30-35       7
## 49331     18-30      10
## 49332     35-40       6
## 49333     18-30      10
## 49334     30-35       7
## 49335     18-30      10
## 49336     50-60       5
## 49337     30-35       7
## 49338       65+       4
## 49339     50-60       5
## 49340     18-30      10
## 49341     40-50       5
## 49342     18-30      10
## 49343     30-35       7
## 49344     18-30      10
## 49345     18-30      10
## 49346     18-30      10
## 49347     18-30      10
## 49348     18-30      10
## 49349     18-30      10
## 49350     18-30      10
## 49351     18-30      10
## 49352     18-30      10
## 49353     18-30      10
## 49354     50-60       5
## 49355     18-30      10
## 49356     18-30      10
## 49357     18-30      10
## 49358     18-30      10
## 49359     18-30      10
## 49360     40-50       5
## 49361     18-30      10
## 49362     35-40       6
## 49363     30-35       7
## 49364     18-30      10
## 49365     30-35       7
## 49366     30-35       7
## 49367     18-30      10
## 49368     30-35       7
## 49369     30-35       7
## 49370     18-30      10
## 49371     18-30      10
## 49372     18-30      10
## 49373     35-40       6
## 49374     18-30      10
## 49375     30-35       7
## 49376     18-30      10
## 49377     18-30      10
## 49378     30-35       7
## 49379     40-50       5
## 49380     18-30      10
## 49381     40-50       5
## 49382     18-30      10
## 49383     18-30      10
## 49384     18-30      10
## 49385     18-30      10
## 49386     35-40       6
## 49387     18-30      10
## 49388     18-30      10
## 49389     18-30      10
## 49390     18-30      10
## 49391     40-50       5
## 49392     18-30      10
## 49393       65+       4
## 49394     18-30      10
## 49395     30-35       7
## 49396     18-30      10
## 49397     18-30      10
## 49398     18-30      10
## 49399       65+       4
## 49400     35-40       6
## 49401     18-30      10
## 49402     18-30      10
## 49403     35-40       6
## 49404     18-30      10
## 49405     18-30      10
## 49406     18-30      10
## 49407     35-40       6
## 49408     18-30      10
## 49409     40-50       5
## 49410     18-30      10
## 49411     40-50       5
## 49412     30-35       7
## 49413     35-40       6
## 49414     35-40       6
## 49415     30-35       7
## 49416     18-30      10
## 49417     18-30      10
## 49418     30-35       7
## 49419     18-30      10
## 49420     18-30      10
## 49421     18-30      10
## 49422     50-60       5
## 49423     40-50       5
## 49424     18-30      10
## 49425     18-30      10
## 49426     35-40       6
## 49427     18-30      10
## 49428     18-30      10
## 49429     40-50       5
## 49430     30-35       7
## 49431     30-35       7
## 49432     18-30      10
## 49433     35-40       6
## 49434     35-40       6
## 49435     30-35       7
## 49436     35-40       6
## 49437       65+       4
## 49438     30-35       7
## 49439     30-35       7
## 49440     18-30      10
## 49441     30-35       7
## 49442     18-30      10
## 49443     18-30      10
## 49444     40-50       5
## 49445     18-30      10
## 49446     40-50       5
## 49447     18-30      10
## 49448       65+       4
## 49449     18-30      10
## 49450     30-35       7
## 49451     30-35       7
## 49452     18-30      10
## 49453     30-35       7
## 49454     18-30      10
## 49455     18-30      10
## 49456     50-60       5
## 49457     18-30      10
## 49458     18-30      10
## 49459     35-40       6
## 49460     40-50       5
## 49461     30-35       7
## 49462     40-50       5
## 49463     50-60       5
## 49464     40-50       5
## 49465     35-40       6
## 49466     30-35       7
## 49467     30-35       7
## 49468     35-40       6
## 49469     35-40       6
## 49470     40-50       5
## 49471     40-50       5
## 49472     35-40       6
## 49473     18-30      10
## 49474     18-30      10
## 49475     30-35       7
## 49476     18-30      10
## 49477     18-30      10
## 49478     18-30      10
## 49479     18-30      10
## 49480     18-30      10
## 49481     18-30      10
## 49482     18-30      10
## 49483     40-50       5
## 49484     30-35       7
## 49485     18-30      10
## 49486     40-50       5
## 49487     18-30      10
## 49488     18-30      10
## 49489     40-50       5
## 49490     18-30      10
## 49491     30-35       7
## 49492     18-30      10
## 49493     40-50       5
## 49494     50-60       5
## 49495     30-35       7
## 49496     18-30      10
## 49497     40-50       5
## 49498     35-40       6
## 49499     30-35       7
## 49500     18-30      10
## 49501     18-30      10
## 49502     18-30      10
## 49503     18-30      10
## 49504     18-30      10
## 49505     30-35       7
## 49506     18-30      10
## 49507     18-30      10
## 49508     40-50       5
## 49509     18-30      10
## 49510     18-30      10
## 49511     18-30      10
## 49512     30-35       7
## 49513     35-40       6
## 49514     18-30      10
## 49515     30-35       7
## 49516     30-35       7
## 49517     30-35       7
## 49518     18-30      10
## 49519     30-35       7
## 49520     18-30      10
## 49521     18-30      10
## 49522     40-50       5
## 49523     18-30      10
## 49524     18-30      10
## 49525     18-30      10
## 49526     18-30      10
## 49527     18-30      10
## 49528     30-35       7
## 49529     30-35       7
## 49530     18-30      10
## 49531     35-40       6
## 49532     18-30      10
## 49533     18-30      10
## 49534     40-50       5
## 49535     40-50       5
## 49536     18-30      10
## 49537     40-50       5
## 49538     18-30      10
## 49539     18-30      10
## 49540     18-30      10
## 49541     18-30      10
## 49542     18-30      10
## 49543     18-30      10
## 49544     35-40       6
## 49545     40-50       5
## 49546     40-50       5
## 49547     18-30      10
## 49548     30-35       7
## 49549     18-30      10
## 49550     18-30      10
## 49551     18-30      10
## 49552     18-30      10
## 49553     30-35       7
## 49554     18-30      10
## 49555     18-30      10
## 49556     40-50       5
## 49557     40-50       5
## 49558     18-30      10
## 49559     50-60       5
## 49560     18-30      10
## 49561     35-40       6
## 49562     18-30      10
## 49563     30-35       7
## 49564     18-30      10
## 49565     35-40       6
## 49566     40-50       5
## 49567     18-30      10
## 49568     50-60       5
## 49569     40-50       5
## 49570     18-30      10
## 49571     18-30      10
## 49572     18-30      10
## 49573     30-35       7
## 49574     50-60       5
## 49575     50-60       5
## 49576     18-30      10
## 49577     18-30      10
## 49578     18-30      10
## 49579     35-40       6
## 49580     18-30      10
## 49581     18-30      10
## 49582     30-35       7
## 49583     30-35       7
## 49584     18-30      10
## 49585     18-30      10
## 49586     18-30      10
## 49587     30-35       7
## 49588     18-30      10
## 49589     18-30      10
## 49590     30-35       7
## 49591     50-60       5
## 49592     35-40       6
## 49593     18-30      10
## 49594     18-30      10
## 49595     18-30      10
## 49596     18-30      10
## 49597     18-30      10
## 49598     18-30      10
## 49599     18-30      10
## 49600     18-30      10
## 49601     40-50       5
## 49602     40-50       5
## 49603     30-35       7
## 49604     18-30      10
## 49605     18-30      10
## 49606     40-50       5
## 49607     35-40       6
## 49608     30-35       7
## 49609     40-50       5
## 49610     35-40       6
## 49611     50-60       5
## 49612     35-40       6
## 49613     18-30      10
## 49614     40-50       5
## 49615     18-30      10
## 49616     40-50       5
## 49617     18-30      10
## 49618     30-35       7
## 49619     30-35       7
## 49620     30-35       7
## 49621     18-30      10
## 49622     40-50       5
## 49623     30-35       7
## 49624     35-40       6
## 49625     18-30      10
## 49626     18-30      10
## 49627     40-50       5
## 49628     18-30      10
## 49629     30-35       7
## 49630     40-50       5
## 49631     18-30      10
## 49632     40-50       5
## 49633     30-35       7
## 49634     18-30      10
## 49635     18-30      10
## 49636     18-30      10
## 49637     18-30      10
## 49638     18-30      10
## 49639     18-30      10
## 49640     18-30      10
## 49641     18-30      10
## 49642     18-30      10
## 49643     18-30      10
## 49644     18-30      10
## 49645     18-30      10
## 49646     30-35       7
## 49647     18-30      10
## 49648     35-40       6
## 49649     30-35       7
## 49650     18-30      10
## 49651     30-35       7
## 49652     18-30      10
## 49653     30-35       7
## 49654     40-50       5
## 49655     18-30      10
## 49656     18-30      10
## 49657     18-30      10
## 49658       65+       4
## 49659     18-30      10
## 49660     30-35       7
## 49661     18-30      10
## 49662     18-30      10
## 49663     18-30      10
## 49664     18-30      10
## 49665     18-30      10
## 49666     18-30      10
## 49667     18-30      10
## 49668     50-60       5
## 49669     30-35       7
## 49670     40-50       5
## 49671     18-30      10
## 49672     35-40       6
## 49673     50-60       5
## 49674     18-30      10
## 49675     18-30      10
## 49676     30-35       7
## 49677     18-30      10
## 49678     18-30      10
## 49679     35-40       6
## 49680     18-30      10
## 49681     18-30      10
## 49682     18-30      10
## 49683       65+       4
## 49684     18-30      10
## 49685     30-35       7
## 49686     30-35       7
## 49687     18-30      10
## 49688     18-30      10
## 49689     40-50       5
## 49690     35-40       6
## 49691     18-30      10
## 49692     40-50       5
## 49693     18-30      10
## 49694     18-30      10
## 49695     18-30      10
## 49696     30-35       7
## 49697     18-30      10
## 49698     18-30      10
## 49699     18-30      10
## 49700     18-30      10
## 49701     18-30      10
## 49702     18-30      10
## 49703     40-50       5
## 49704     18-30      10
## 49705     35-40       6
## 49706     35-40       6
## 49707     35-40       6
## 49708     18-30      10
## 49709     40-50       5
## 49710     50-60       5
## 49711     18-30      10
## 49712     40-50       5
## 49713     35-40       6
## 49714     18-30      10
## 49715     18-30      10
## 49716     18-30      10
## 49717     40-50       5
## 49718     18-30      10
## 49719     40-50       5
## 49720     18-30      10
## 49721     30-35       7
## 49722     18-30      10
## 49723     18-30      10
## 49724     18-30      10
## 49725     40-50       5
## 49726     30-35       7
## 49727     30-35       7
## 49728     40-50       5
## 49729     30-35       7
## 49730     35-40       6
## 49731     18-30      10
## 49732     30-35       7
## 49733     18-30      10
## 49734     30-35       7
## 49735     30-35       7
## 49736     18-30      10
## 49737     18-30      10
## 49738     18-30      10
## 49739     35-40       6
## 49740     40-50       5
## 49741     18-30      10
## 49742     18-30      10
## 49743     18-30      10
## 49744     40-50       5
## 49745     18-30      10
## 49746     30-35       7
## 49747     18-30      10
## 49748     40-50       5
## 49749     40-50       5
## 49750     30-35       7
## 49751     35-40       6
## 49752     35-40       6
## 49753     18-30      10
## 49754     18-30      10
## 49755     30-35       7
## 49756     18-30      10
## 49757     18-30      10
## 49758     18-30      10
## 49759     30-35       7
## 49760     18-30      10
## 49761     30-35       7
## 49762     18-30      10
## 49763     18-30      10
## 49764     18-30      10
## 49765     18-30      10
## 49766     40-50       5
## 49767     35-40       6
## 49768     30-35       7
## 49769     30-35       7
## 49770     18-30      10
## 49771     30-35       7
## 49772     18-30      10
## 49773     30-35       7
## 49774     40-50       5
## 49775     40-50       5
## 49776     18-30      10
## 49777     18-30      10
## 49778     30-35       7
## 49779     30-35       7
## 49780     30-35       7
## 49781     18-30      10
## 49782     18-30      10
## 49783     35-40       6
## 49784     40-50       5
## 49785     18-30      10
## 49786     30-35       7
## 49787     30-35       7
## 49788     18-30      10
## 49789     30-35       7
## 49790     40-50       5
## 49791     18-30      10
## 49792     18-30      10
## 49793     18-30      10
## 49794     18-30      10
## 49795     30-35       7
## 49796     18-30      10
## 49797     18-30      10
## 49798     18-30      10
## 49799     18-30      10
## 49800     18-30      10
## 49801     18-30      10
## 49802     18-30      10
## 49803     18-30      10
## 49804     30-35       7
## 49805     18-30      10
## 49806     30-35       7
## 49807     18-30      10
## 49808     30-35       7
## 49809     35-40       6
## 49810     35-40       6
## 49811     18-30      10
## 49812     50-60       5
## 49813     35-40       6
## 49814     35-40       6
## 49815     18-30      10
## 49816     18-30      10
## 49817     30-35       7
## 49818     30-35       7
## 49819     18-30      10
## 49820     30-35       7
## 49821       65+       4
## 49822     18-30      10
## 49823     35-40       6
## 49824     18-30      10
## 49825     40-50       5
## 49826       65+       4
## 49827     18-30      10
## 49828     35-40       6
## 49829     18-30      10
## 49830     30-35       7
## 49831     30-35       7
## 49832     50-60       5
## 49833     18-30      10
## 49834     18-30      10
## 49835     18-30      10
## 49836     18-30      10
## 49837     30-35       7
## 49838     40-50       5
## 49839     18-30      10
## 49840     40-50       5
## 49841     18-30      10
## 49842     30-35       7
## 49843     30-35       7
## 49844     30-35       7
## 49845     18-30      10
## 49846     18-30      10
## 49847     30-35       7
## 49848     40-50       5
## 49849     30-35       7
## 49850     18-30      10
## 49851     50-60       5
## 49852     30-35       7
## 49853     50-60       5
## 49854     18-30      10
## 49855     18-30      10
## 49856     40-50       5
## 49857     35-40       6
## 49858     18-30      10
## 49859     18-30      10
## 49860     18-30      10
## 49861     18-30      10
## 49862     18-30      10
## 49863     18-30      10
## 49864     35-40       6
## 49865     18-30      10
## 49866       65+       4
## 49867     18-30      10
## 49868     40-50       5
## 49869     30-35       7
## 49870     50-60       5
## 49871     18-30      10
## 49872     35-40       6
## 49873     30-35       7
## 49874     18-30      10
## 49875     18-30      10
## 49876     18-30      10
## 49877     18-30      10
## 49878     18-30      10
## 49879     18-30      10
## 49880     18-30      10
## 49881     18-30      10
## 49882     30-35       7
## 49883     30-35       7
## 49884     30-35       7
## 49885     35-40       6
## 49886     18-30      10
## 49887     35-40       6
## 49888     30-35       7
## 49889     18-30      10
## 49890     18-30      10
## 49891     50-60       5
## 49892     30-35       7
## 49893     18-30      10
## 49894     18-30      10
## 49895     30-35       7
## 49896     30-35       7
## 49897     18-30      10
## 49898     35-40       6
## 49899     40-50       5
## 49900     18-30      10
## 49901     35-40       6
## 49902     18-30      10
## 49903     30-35       7
## 49904     18-30      10
## 49905     35-40       6
## 49906     40-50       5
## 49907     30-35       7
## 49908     30-35       7
## 49909     30-35       7
## 49910     40-50       5
## 49911     30-35       7
## 49912     30-35       7
## 49913     18-30      10
## 49914     18-30      10
## 49915     18-30      10
## 49916     18-30      10
## 49917     18-30      10
## 49918     35-40       6
## 49919     18-30      10
## 49920     18-30      10
## 49921     18-30      10
## 49922     50-60       5
## 49923     50-60       5
## 49924     18-30      10
## 49925     18-30      10
## 49926     30-35       7
## 49927       65+       4
## 49928     50-60       5
## 49929     30-35       7
## 49930     30-35       7
## 49931     18-30      10
## 49932     18-30      10
## 49933     18-30      10
## 49934     18-30      10
## 49935     30-35       7
## 49936     40-50       5
## 49937     18-30      10
## 49938     35-40       6
## 49939       65+       4
## 49940     18-30      10
## 49941     40-50       5
## 49942     18-30      10
## 49943     18-30      10
## 49944     35-40       6
## 49945     30-35       7
## 49946     18-30      10
## 49947     18-30      10
## 49948     35-40       6
## 49949     40-50       5
## 49950     18-30      10
## 49951     50-60       5
## 49952     30-35       7
## 49953     18-30      10
## 49954     18-30      10
## 49955     18-30      10
## 49956     40-50       5
## 49957     18-30      10
## 49958     18-30      10
## 49959     35-40       6
## 49960     18-30      10
## 49961     18-30      10
## 49962     30-35       7
## 49963     18-30      10
## 49964     30-35       7
## 49965     18-30      10
## 49966     18-30      10
## 49967     30-35       7
## 49968     18-30      10
## 49969     18-30      10
## 49970     18-30      10
## 49971     30-35       7
## 49972     18-30      10
## 49973     30-35       7
## 49974     30-35       7
## 49975     18-30      10
## 49976     18-30      10
## 49977     18-30      10
## 49978     18-30      10
## 49979     40-50       5
## 49980     30-35       7
## 49981     50-60       5
## 49982     35-40       6
## 49983     18-30      10
## 49984     40-50       5
## 49985     30-35       7
## 49986     35-40       6
## 49987     50-60       5
## 49988     35-40       6
## 49989     30-35       7
## 49990     50-60       5
## 49991       65+       4
## 49992     18-30      10
## 49993     18-30      10
## 49994     18-30      10
## 49995     18-30      10
## 49996     18-30      10
## 49997     18-30      10
## 49998     30-35       7
## 49999     18-30      10
##  [ reached 'max' / getOption("max.print") -- omitted 9947 rows ]
age_range <- matches_age %>%
  group_by(age_group) %>%
  summarise(count = n()) %>%
  arrange(desc(count)) %>%
  slice(1) %>% 
  select(age_group)

age_range
## # A tibble: 1 × 1
##   age_group
##   <fct>    
## 1 18-30
##Box 2: Average matches per user by age
average_matches_age <- matches_age %>%
  mutate(average_matches =round(mean(matches))) %>% 
  distinct(average_matches)
average_matches_age
##   average_matches
## 1               8
##Box 2: Maximum matches per user by age
max_matches_age <- matches_age %>%
  mutate(max_matches =round(max(matches))) %>%
  distinct(max_matches)
max_matches_age
##   max_matches
## 1          10
##Box 2: Minimum matches per user by age
min_matches_age <- matches_age %>%
  mutate(min_matches =round(min(matches))) %>% 
  distinct(min_matches)
min_matches_age
##   min_matches
## 1           4
##Graph for count matches per age_group
matches_age_count <-matches_age %>% 
    group_by(age_group) %>%
  summarise(total_matches = sum(matches))
matches_age_count 
## # A tibble: 6 × 2
##   age_group total_matches
##   <fct>             <dbl>
## 1 18-30            318900
## 2 30-35             78295
## 3 35-40             39252
## 4 40-50             33725
## 5 50-60             13090
## 6 65+                3864
# Create the bar graph
ggplot(matches_age_count, aes(x = age_group, y = total_matches)) +
  geom_bar(stat = "identity", fill = "pink") +
  labs(x = "Age Group", y = "Total Matches", title = "Total Matches per Age Group")

#Matches by diet per user
matches_diet <- cupid %>%
  group_by(diet) %>%
  mutate(matches_diet = case_when(
    diet == "anything" ~ 12,
    diet == "halal" ~ 9,
    diet == "kosher" ~ 8,
    diet == "mostly anything" ~ 4,
    diet == "mostly halal" ~ 6,
    diet == "mostly kosher" ~ 5,
    diet == "mostly other" ~ 4,
    diet == "mostly vegan" ~ 3,
    diet == "mostly vegetarian" ~ 2,
    TRUE ~ 1   # This line will assign a 1 to all other diets not listed above
  ))%>% 
  select(diet, matches_diet)
matches_diet
## # A tibble: 59,946 × 2
## # Groups:   diet [19]
##    diet              matches_diet
##    <chr>                    <dbl>
##  1 strictly anything            1
##  2 mostly other                 4
##  3 anything                    12
##  4 vegetarian                   1
##  5 <NA>                         1
##  6 mostly anything              4
##  7 strictly anything            1
##  8 mostly anything              4
##  9 strictly anything            1
## 10 mostly anything              4
## # … with 59,936 more rows
cupid %>% 
  group_by(diet) %>% 
  count(diet)
## # A tibble: 19 × 2
## # Groups:   diet [19]
##    diet                    n
##    <chr>               <int>
##  1 anything             6183
##  2 halal                  11
##  3 kosher                 11
##  4 mostly anything     16585
##  5 mostly halal           48
##  6 mostly kosher          86
##  7 mostly other         1007
##  8 mostly vegan          338
##  9 mostly vegetarian    3444
## 10 other                 331
## 11 strictly anything    5113
## 12 strictly halal         18
## 13 strictly kosher        18
## 14 strictly other        452
## 15 strictly vegan        228
## 16 strictly vegetarian   875
## 17 vegan                 136
## 18 vegetarian            667
## 19 <NA>                24395